Remote Desktop from Windows to Linux
To connect to remote linux from windows desktop:
- Enable Remote Desktop on Linux
- Connectting from Windows by VNC Viewer
Read more at: http://webhostingneeds.com/Connecting_to_linux_desktop_from_windows
Home » Non e-Book » LinuxTo connect to remote linux from windows desktop:
Read more at: http://webhostingneeds.com/Connecting_to_linux_desktop_from_windows
Here are some of free open source video editors for Linux:
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.
This 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.
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