Displaying posts categorized under

Linux

Linux News, Development, Questions, Answers

Easy Way to Create USplash Themes

Credit goes to the following site: MakeTechEasier.com This is just a reader’s digest edition with some steps removed and added. 1.  sudo apt-get install usplashy usplashy-themes 2.  sudo apt-get install libglade2-dev libsplashy1-dev build-essential 3.  D/L gsplashy 4.  Extract, ./configure make sudo make install kdesu gsplashy 5. Make sure you run: sudo update-initramfs -u

Auto Complete Bash not Responding with Sudo

sudo nano /etc/bash.bashrc and look for the following: # enable bash completion in interactive shells lost its color if [ -f /etc/bash_completion ]; then . /etc/bash_completion fi Take out the # and restart bash. If this doesn’t solve your issue, the replace this your own bashrc file with this one: BASHRC. Or if you don’t [...]