|  |  | @ -8,24 +8,24 @@ server. | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | I presume you already have git working. Otherwise, install it |  |  |  | I presume you already have git working. Otherwise, install it | 
			
		
	
		
		
			
				
					
					|  |  |  | (apt-get install git). Fist we need a working server with node.js. So |  |  |  | (apt-get install git). Fist we need a working server with node.js. So | 
			
		
	
		
		
			
				
					
					|  |  |  | let’s install all the software as root: |  |  |  | let's install all the software as root: | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |   apt-get install npm |  |  |  |   apt-get install npm | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | The problem is that Debian uses the ‘nodejs’ binary, but the whole rest |  |  |  | The problem is that Debian uses the 'nodejs'binary, but the whole rest | 
			
				
				
			
		
	
		
		
			
				
					
					|  |  |  | of the world called this file ‘node’. So we have to link it to the |  |  |  | of the world called this file 'node'. So we have to link it to the | 
			
				
				
			
		
	
		
		
	
		
		
	
		
		
			
				
					
					|  |  |  | right name before starting the installer. |  |  |  | right name before starting the installer. | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |   ln -s /usr/bin/nodejs /usr/bin/node |  |  |  |   ln -s /usr/bin/nodejs /usr/bin/node | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | After installing all the software, we could become the user with should |  |  |  | After installing all the software, we could become the user with should | 
			
		
	
		
		
			
				
					
					|  |  |  | run KiwiIRC. Probably you wouldn;t want to run this as root! So find a |  |  |  | run KiwiIRC. Probably you wouldn't want to run this as root! So find a | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | nice place to store the software (/home/kiwiirc if the user is called |  |  |  | nice place to store the software (/home/kiwiirc if the user is called | 
			
		
	
		
		
			
				
					
					|  |  |  | kiwiirc) and make a git clone of the software tree. |  |  |  | kiwiirc) and make a git clone of the software tree. | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  |   git clone https://github.com/prawnsalad/KiwiIRC.git && cd KiwiIRC |  |  |  |   git clone https://github.com/prawnsalad/KiwiIRC.git && cd KiwiIRC | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
		
		
			
				
					
					|  |  |  | I ran into a problem with ZNC. It wouldn’t connect to ZNC, but it |  |  |  | I ran into a problem with ZNC. It wouldn't connect to ZNC, but it | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					|  |  |  | should. After upgrading from stable to the development, it worked. If |  |  |  | should. After upgrading from stable to the development, it worked. If | 
			
		
	
		
		
			
				
					
					|  |  |  | you have no problems at all, stay with the stable branch. |  |  |  | you have no problems at all, stay with the stable branch. | 
			
		
	
		
		
			
				
					
					|  |  |  | 
 |  |  |  | 
 | 
			
		
	
	
		
		
			
				
					|  |  | 
 |