Oct
27
Upgrade Ubuntu Server
Filed Under Configuration, Installation | Leave a Comment
Upgrading the Ubuntu Server, e.g. from version 8.04 to 8.10:
Step 1. Make sure your current distribution is up-to-date.
- # sudo aptitude update
- # sudo aptitude upgrade
- # sudo aptitude dist-upgrade
Step 2. Perform the upgrade!
- sudo aptitude install update-manager-core
- sudo do-release-upgrade
Oct
27
Display Ubuntu Version
Filed Under Configuration | Leave a Comment
To display the current Ubuntu version, issue this command from the terminal:
#lsb_release -a
Jun
28
Change IP Address
Filed Under Configuration | Leave a Comment
To change IP address, you’ll need to edit /etc/network/interfaces
#sudo vi /etc/network/interfaces
Jun
28
Setup Admin Password
Filed Under Configuration | Leave a Comment
#sudo passwd root
#su
Jun
28
Secure MySQL
Filed Under Configuration | Leave a Comment
The default configuration has “root” with no password. The following shows you how to lock down MySQL by assigning a password to root and creating a super user with all privileges for administration use.
#sudo mysql -u root -p
Jun
27
Update Upgrade Software Distribution
Filed Under Configuration | Leave a Comment
#sudo apt-get update
#sudo apt-get upgrade