Tag Archives: ubuntu

List all installed packages in ubuntu

To list all installed packages in ubuntu, run dpkg –get-selections

Posted in ubuntu | Tagged , | Leave a comment

Things i don’t like in Ubuntu 10.04

Ubuntu have two horizontal tool bar, not just in 10.04, it used to be in all previous versions. It waste vertical space in monitor. Windows done it perfectly with one horizontal task bar having everything. Why Ubuntu waste screen space … Continue reading

Posted in Web | Tagged , , , , , | Leave a comment

git: ‘svn’ is not a git-command. See ‘git –help’.

On ubuntu , when i run git svn, i get following error root@hostonnet:/usr/local/zend/share# git svn clone http://framework.zend.com/svn/framework/standard/trunk git: ‘svn’ is not a git-command. See ‘git –help’. root@hostonnet:/usr/local/zend/share# This is fixed by installing git-svn sudo apt-get install git-svn

Posted in Git, ubuntu | Tagged , | Leave a comment

Google Chrome Now Available for Linux

Today i installed Google Chrome on Ubuntu. It works great, now i have Opera, Firefox and Google Chrome on Ubuntu desktop. Great work Google for supporting Linux.

Posted in ubuntu | Tagged , , , | Leave a comment

XPGnome – Make Ubuntu look like Windows XP

XPGnome theme can make ubuntu look like Microsoft Windows XP.

Posted in ubuntu | Tagged , | Leave a comment

Changing computer name in ubuntu

To change computer name in ubuntu, run sudo echo “computer-new-name” > /etc/hostname Now you need to reboot to get the computer name changed.

Posted in ubuntu | Tagged , , , | Leave a comment

How to extract RAR files in Ubuntu

To extract rar file, you need to install unrar with sudo apt-get install unrar To extract a rar file, go to command line, run unrar x fileName.rar For other command line options of unrar, run man unrar

Posted in ubuntu | Tagged , , , | Leave a comment

Enable Apache Mode Rewrite in ubuntu

You need to run “a2enmod rewrite” to enable apache mod_rewrite. hon@hon-desktop:~/web$ sudo a2enmod rewrite Module rewrite already enabled hon@hon-desktop:~/web$ In my case it was already enabled, still .htaccess was not working. It was the default site, so i need to … Continue reading

Posted in Apache | Tagged , , , , | Leave a comment

Install festival tts in ubuntu

festival is a tts (text-to-speech) software in ubuntu that offers several different voices. To install festival, run sudo apt-get install festival Now to use festival, in command line type echo “Host On Net Provides Web Hosting” | festival –tts Or … Continue reading

Posted in ubuntu | Tagged , , , , , , | Leave a comment

Debian: How to find a package is installed from .deb or source

When installing ffmpeg-php in a debian server, i got error # phpize -bash: phpize: command not found # This is because php-devel package is not installed on the server. Before installing, you need to find out whether php is installed … Continue reading

Posted in Linux | Tagged , , , , | Leave a comment