Fri, Mar 19 2010 - 08:27:26 (UTC)

rssHome » Non e-Book » Linux

Remote Desktop from Windows to Linux

To connect to remote linux from windows desktop:

  1. Enable Remote Desktop on Linux
  2. Connectting from Windows by VNC Viewer

Read more at: http://webhostingneeds.com/Connecting_to_linux_desktop_from_windows

Movie Editor for Linux

Here are some of free open source video editors for Linux:

  • http://www.openmovieeditor.org
  • http://www.kdenlive.org
  • http://www.pitivi.org
  • http://avidemux.berlios.de

Check, Repair and Optimize ALL Databases with 1 command!

Check, Repair and Optimize ALL Databases with 1 command!Most webmasters can have the problem that some tables aren’t optimized or have overhead. This will cauze your server/VPS to work slower than usual since it can’t use all it’s resources. If you do this command once a week then you should be fine and your databases would stay optimized all the time. Follow the steps below:


1. Login into shell via SSH.
2. Do this command (you can change the username if it isn’t ‘root’):

mysqlcheck -u root -p –auto-repair –check –optimize –all-databases

3. Enter the password.
4. Sit back and enjoy with getting your databases fixed with a single command.

Linux Command

Linux CommandThis is a linux command line reference for common operations.
Examples marked with • are valid/safe to paste without modification into a terminal, so
you may want to keep a terminal window open while reading this so you can cut & paste.
All these commands have been tested both on Fedora and Ubuntu.


Continue Reading »

How to Setup Virtual Host in Apache (Linux)

After install Apache you go to directory /etc/httpd/conf and open file httpd.conf. Go to the very bottom of your httpd.conf file in your text editor. You should see an example of a virtual host there. Each line of that example will begin with an octothorpe (#). The octothorpe character marks the line as a comment, so the example is not executed. Add the following lines below that example:

NameVirtualHost *:80

<VirtualHost *:80>
    ServerAdmin info@boykma.com
    DocumentRoot /var/www/html/secure.vn
    ServerName secure.vn
    ErrorLog /var/www/html/secure.vn/log
    CustomLog /var/www/html/secure.vn/log common
</VirtualHost>

<VirtualHost *:80>
    ServerAdmin info@boykma.com
    DocumentRoot /var/www/html/boykma.com
    ServerName boykma.com
    ErrorLog /var/www/html/boykma.com/log
    CustomLog /var/www/html/boykma.com/log common
</VirtualHost>

Config underline. Save and close text editor. Restart Apache service by cmd #service httpd restart. You are finish :)