Posts filed under 'Support of the day'
SSH taking too long to respond?
Disable Group Support System (GSS) login, to do this follow this:
Log in to the remote server as usual
Open the SSH configuration (nano /etc/ssh/sshd_config)
Once inside look for GSS authentication (Ctrl+W, gss, enter)
Look for the line that says GSS authentication and add a “#” in front of it
Save and close (ctrl+X, Y, enter)
Restart the ssh service (service sshd restart or service ssh restart or /etc/init.d/sshd restart or /etc/init.d/ssh restart)
Explanation: SSH can use several different login schemes, password and ... More
|
Posted
November 18th, 2011 @
05:35pm More Posts in:
Support of the day
I found this well matured article about Ubuntu possibilities. Good stuff, check it out:
10 Things You Didn’t Know You Could Do In Ubuntu
1. Create website links that automatically install software
Did you know that you can create a link that will automatically launch Ubuntu’s package manager and install the software? This is very useful if you are helping someone install certain programs in Ubuntu. To create ’software install hyperlink” just create a hyperlink but instead of pointing to the usual http:// address, ... More
|
Posted
July 15th, 2011 @
04:20am More Posts in:
Support of the day
Here is a little helper if your Webmin does not respond.
Just run this command from the command line and it will bring the webmin service up again fresh.
# /etc/init.d/webmin restart
Following messages will appear after running that command.
# Stopping Webmin server in /usr/share/webmin
# Starting Webmin server in /usr/share/webmin
After a fresh restart the Webmin server should be running again.
Thanks to http://www.netdip.com/how-to-restart-webmin-a/
|
Posted
July 11th, 2011 @
05:22am More Posts in:
Support of the day
Ubuntu is a very customizable operating system and everyone has their own reasons and needs for any particular OS. Still these 10 configuration tips are worth a look and definitively can be considered to do immediately after a Ubuntu installation. Thanks to UbuntuLinuxHelp.
1) sudo aptitude install sbackup
Nothing is worse that losing all your important data (pictures, email messages, music, documents, etc.) The above command will install Simple Backup Suite (more details found on Sourceforge). For me at least it's a great desktop backup solution. I can ... More
|
Posted
June 27th, 2011 @
09:11am More Posts in:
Support of the day
How to access your server:
I order to get direct access to the server console it's done via SSH (Secure SHell) to do so you need a software named Putty if you are running windows just download it (download), run it, give it your IP that that way it would connect, when it asks you your user and password it's located on the welcome email you received from us that also contains the server IP.
If you are using any linux distribution ... More
|
Posted
June 22nd, 2011 @
11:37am More Posts in:
Support of the day
Webmin:
Webmin is disabled by default, you will have to enable it:
- Access the server via SSH
- Run
#/etc/init.d/webmin start
CPanel:
- Access server via SSH
- Download Cpanel in /home/cpins
- Run
# wget http://layer1.cpanel.net/latest
- Install the editor nano
# yum install nano
- Launch system-config-securitylevel-tui
# system-config-securitylevel-tui
|
Posted
June 7th, 2011 @
11:43am More Posts in:
Support of the day
# fsck
fsck is used to check and optionally repair one or more Linux file systems.
If no filesystems are specified on the command line, and the -A option is not specified, fsck will default to checking filesystems in /etc/fstab serial. This is equivalent to the -As options.
The exit code returned by fsck is the sum of the following conditions:
0 - No errors
1 - File system errors corrected
2 - System should be rebooted
4 - File system errors left uncorrected
8 - Operational error
16 - Usage or ... More
|
Posted
June 2nd, 2011 @
02:26pm More Posts in:
Support of the day
If you want to open or close a port for a Linux firewall you have to edit the rules in the iptables configuration. By default iptables firewall stores its configuration at /etc/sysconfig/iptables file. You need to edit this file and add rules to open port.
Here are the steps to open the port XY using the default visual editor vi:
Open port XY
Open flle /etc/sysconfig/iptables:
# vi /etc/sysconfig/iptables
Append rule as follows:
-A RH-Firewall-1-INPUT -m state --state ... More
|
Posted
May 30th, 2011 @
10:41am More Posts in:
Support of the day
Next Posts Previous Posts |