Check what the current timezone is:
date
For example, the result is:
Mon May 7 17:42:57 EEST 2012
To change the timezone first look at what timezones are available by running the following command on the command line interface:
ls /usr/share/zoneinfo/
As a result you’ll see:
[root@host1 ~]# ls /usr/share/zoneinfo
Africa Australia Cuba Etc GMT0 Iceland Japan MST Poland right Universal Zulu
America Brazil EET Europe GMT-0 Indian Kwajalein MST7MDT Portugal ROC US
Antarctica Canada Egypt Factory GMT+0 Iran Libya Navajo posix ROK UTC
Arctic CET Eire GB Greenwich iso3166.tab MET NZ posixrules Singapore WET
Asia Chile EST GB-Eire Hongkong Israel Mexico NZ-CHAT PRC Turkey W-SU
Atlantic CST6CDT EST5EDT GMT HST Jamaica Mideast Pacific PST8PDT UCT zone.tab
Simply import new timezone:
cat /usr/share/zoneinfo/Europe/Kiev > /etc/localtime
or
rm /etc/localtime
ln –s /usr/share/zoneinfo/Europe/Kiev /etc/localtime
To install ProFTP, its so easy on Centos:
y| yum install proftpd
Start ProFTP:
/etc/init.d/proftpd start
To add ProFTP to autorun:
chkconfig proftpd on
Add FTP account:
useradd USERNAME -g nobody -d /home/PATH -s /sbin/nologin
setting password
passwd USERNAME
Delete FTP account:
userdel USERNAME
Good luck =)
What is NFS and why do you need it?
Network File System (NFS) is a network file system protocol originally developed by Sun Microsystems in 1984, allowing a user on a client computer to access files over a network in a manner similar to how local storage is accessed.
For example if you have 2 servers, you can setup 1 server for work and another one setup as a backup server, or just use its disk space, there are a lot of combinations.
More »