Archive for the 'Operation System' Category

Ubuntu 8.04 installed (with pictures)

ubuntu804 As its previous versions, the newer version of Ubuntu (version number 8.04 and code name ) is very easy for the installation. After downloading the ISO file from the Internet and pointing it with one of my virtual machine, the installation menu was there quickly. With its no-brain 7-step installation process, the overall time was less than an hour ( I got some issues with my virtual machine, but it was still cool compared with couple of hours with Windows OS installation).

Read on for more installation photo gallery… You can click the thumbnail to view the larger picture.

Continue reading ‘Ubuntu 8.04 installed (with pictures)’

Related posts

It is time for Ubuntu 7.10

UbuntuWell, first of all, I am not a Linux geek. But I like Ubuntu when I first touched it.

I heard from the website http://education.zdnet.com/?p=1250 that Ubuntu will release its newer version (called Gutsy Gibbon) in this month. According to Ubuntu’s own description, they will release a new version each half year and the latest one is 7.04 which was released on April, 2007. By the way, I think you already figured out how the Ubuntu version name convention works. Yes, that is right, the major version number comes from the Year (like 7 for 2007) and the minor version number is for the release month number.

What’s new with the new version: Continue reading ‘It is time for Ubuntu 7.10′

Related posts

How to copy directory in Linux with cp command

LinuxIt is very easy for me to forget this command option, and it always take me some time to get it right when I try to copy a directory from one of my website to another website.

And I found out it is always easier when I come into the destination directory and run the cp command.

So to be summarized, I put this command with option here to make me to REMEMBER: how to easily copy a directory from on folder to another folder in Apache/Linux server.

cp -R ~/source-directory-name .

Here ~/source-directory-name is whatever you want to copy from, and please do not forget the period . at the end which is your current directory (A.K.A, your copy-to destination directory).

Related posts