For every Ubuntu server I build, I always take time to configure it should have a good base. A good base for any type of server is having its Time Zone, Locales, and Character sets set correctly. Another software which is usually required is the Ubuntu PPA software repository system.
Here are the commands I usually execute for every Ubuntu server I create:
apt-get -y dist-upgrade
Here are the commands I usually execute for every Ubuntu server I create:
UPDATE AND UPGRADE
apt-get updateapt-get -y dist-upgrade
SETTING TIME ZONE
dpkg-reconfigure tzdata
SETTING LOCALES
locale-gen en_US en_US.UTF-8
INSTALL PPA REPOSITORY SUPPORT
apt-get install software-properties-common python-software-properties
UNINSTALL POSTFIX (if you don't need to send email)
service stop postfix
apt-get remove postfix
apt-get purge
apt-get autoclean
No comments:
Post a Comment