Random Snippets
Posted in Uncategorized on Sep 30th, 2009
uninstalling video drivers in ubuntu 9.04 from command line
Bash | copy code |? 1sudo dpkg-reconfigure -phigh xserver-xorg
Posted in Uncategorized on Sep 30th, 2009
uninstalling video drivers in ubuntu 9.04 from command line
Bash | copy code |? 1sudo dpkg-reconfigure -phigh xserver-xorg
Posted in Uncategorized on Sep 28th, 2009
Apache configuration | copy code |? 01Listen 81 02NameVirtualHost *:81 03 04<VirtualHost *:81> 05 ServerAdmin webmaster@localhost 06 DocumentRoot /home/vinod/webapps/djangoapp07 08 <Directory /> 09 Options FollowSymLinks +ExecCGI10 AllowOverride None 11 [...]