Troubleshooting, upgrading, or just curious? Find out what’s in your system without opening the case. Using these Linux command line tools, you can get details about your hardware and distribution. I’ve tested these commands in Ubuntu 7.10, but they should all work in other Linux distributions. Unless noted otherwise, all of this software is included [...]
Posts tagged «bash»
Install Nodoka (Fedora theme) on Ubuntu
1. Install build-essential and libgtk2.0-dev packages: sudo apt-get install build-essential libgtk2.0-dev 2. Download Nodoka GTK+ engine 0.6 from here. 3. Extract tarball package: tar zxvf gtk-nodoka-engine-0.6.90.2.tar.gz 4. Now go to gtk-nodoka-engine-0.6 directory: cd gtk-nodoka-engine-0.6.90.2 5. Configure: ./configure –prefix=/usr –enable-animation 6. Make: make 7. Install: sudo make install Install theme 1. Get Nodoka theme 0.3.2 from [...]
Adding a startup script to be run at bootup
So you have a script of your own that you want to run at bootup, each time you boot up. This will tell you how to do that. Write a script. put it in the /etc/init.d/ directory. Lets say you called it FOO. You then run sudo update-rc.d FOO defaults You also have to make [...]