Category Archives: Operating Systems

Use HackIt and Revolution ROM to sexify your HTC Inspire

Got an HTC Inspire 4G? Tired of all the bloatware and running apps. Tired of have to kill those apps over and over? Root your phone (root is the superuser account in Linux, which Android runs on)! This voids all … Continue reading

Posted in Android, Electronics, Internet, Linux, Operating Systems, Security | Tagged , , | Leave a comment

Set static IP address in Ubuntu

You will need to edit your /etc/network/interfaces file sudo nano /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 gateway 192.168.1.1 network 192.168.1.0 broadcast 192.168.1.255 Restart networking via sudo /etc/init.d/networking restart Bookmark … Continue reading

Posted in Internet, Linux, Operating Systems | Tagged , , | Leave a comment

Installing Node.js and Socket.io on Ubuntu

Issue the following on the command line: cd ~ sudo apt-get install libv8-2.0.3 libv8-dev libv8-dbg libssl-dev curl wget http://nodejs.org/dist/node-v0.4.3.tar.gz tar zxvf node-v0.4.3.tar.gz cd node-v0.4.3 ./configure && make && make install sudo curl http://npmjs.org/install.sh | sudo sh sudo npm install socket.io … Continue reading

Posted in Commands, Google, Internet, JavaScript, Linux, Node.js / Socket.io, Operating Systems | Tagged , , , | Leave a comment