Beginner Linux, write a more messy disorder, to their own study record notes, if there are errors, please Daniel advice.
In order to facilitate my future study, the problems encountered, as well as the solution, to do a summary.
centos6.5 Installation
1. Installation mode
Desktop: A basic desk system, including common desktop software, such as document viewing tools.
Minimal Desktop: A basic desk system that contains less software.
Minimal: Basic system, does not contain any optional packages.
Basic Server: Platform support for the basic system installed, not including the desktop.
Database Server: Basic system platform, plus MySQL and PostgreSQL databases, no desktop.
Web Server: Basic system platform, plus Php,web Server, with MySQL and PostgreSQL database clients, no desktop.
Virtual Host: Basic system plus virtualized platform.
Software development Workstation: includes many packages, basic system, virtualization platform, desktop environment, development tools.
as a novice, my friend made me choose. Basic Server, actually install nothing special, next step next.
The system was soon installed, the familiar and unfamiliar system.
Next, start the installation-- Install the Graphical interface (GNOME)
Method One
Use Network installation (this method is simple if the network is faster)
Yum Groupinstall "Desktop"
Yum groupinstall "X window System"
Yum Groupinstall "Chinese support"
StartX
But I am very sad to find that this method is not suitable for me ... I think Linux seems to have no love for me ... At this time I think of that sentence, Linux abuse me times, I am waiting for linux like First love. So, continue to find a solution.
Method Two
CD installation
1, the first CD-ROM mount, note that the CD-ROM is not automatically set up the directory, so you need to set up a directory
Mkdir/mnt/cdrom
Mount/dev/cdrom/mnt/cdrom #dev目录为设备目录
2. Change the local source address
cd/etc/yum.repos.d/#可以看见CentOS-base.repo and Centos-media.repo files
Note:
Centos-base.repo records the address and path information of the Yum source on the network, etc.
Centos-media.repo records the media and paths that can be used locally as a Yum source
So, we can change Centos-media.repo.
here's how to view the contents of a file with vim
baseurl=file:///media/centos/
file:///media/cdrom/
file:///media/cdrecorder/
File:///mnt/cdrom #增加这句
3, we installed GNOME, but in Centos6, GNOME has been changed to desktop
Yum--disablerepo=*--enablerepo=c6-media groupinstall "Desktop"
# Of course you can see if there is groupinstall instead of grouplist
4, installed GNOME, also need to install X Window
Yum--disablerepo=*--enablerepo=c6-media groupinstall "X window System"
5. Then we install the Chinese language
Yum--disablerepo=*--enablerepo=c6-media Groupinstall "Chinese support"
6. The most critical step is to start gnome
StartX
then press the CTRL+ALT+F2.
OK, entered the desktop with the help of friends, successfully installed the graphical interface. Why should I install a graphical interface? Because it is convenient for me to study on Linux. It's bad to always bother others.
This article is from "Linux Rookie growth log" blog, please be sure to keep this source http://0575129.blog.51cto.com/1418401/1590090
centos6.5 Installation Notes