Dell PowerEdge R320에 CentOS 7을 설치했습니다. 최소한의 설치를 수행하고 명령줄에서 시작했습니다. 재설치나 인터넷 연결 없이 일반 GUI로 전환하는 방법이 있습니까? 파일을 USB 스틱에 로드하고 거기에서 시작할 수 있습니까? 아니면 완전히 다시 설치하는 것이 더 빠를까요?
답변1
가지고 있는 최소 ISO에서 최소 CentOS 설치를 설치한 것 같습니다. 즉, 시스템을 실행하는 데 필요한 최소값이 이미 확보되어 있습니다. Linux 전문가에게는 이를 운영 체제라고 합니다. 즉, 세 가지 옵션이 있습니다.
- 옵션 1:
DVD
ISO를 구하고GUI
. - 옵션 2: 설치하려면 패키지 목록에서 데스크탑 환경을 선택
netinstall
하고 선택하는 것을 잊지 마세요 .Gnome
GUI
- 옵션 3: 시스템에 인터넷을 연결하고 간단한
yum
.
option 3
가장 쉽고 아마도 달리기만큼 간단하기 때문에 그것을 사용하는 것이 좋습니다.
dhcpcd ens0p0
다음 사항을 확인하는 것이 좋습니다.협회네트워크가 다음과 같이 구성된 경우 DHCP
.
답변2
DVD에서 SSD까지 전체 재설치는 1시간 이내에 완료할 수 있습니다. 처음 5~10분은 DVD를 부팅하고 설치 GUI를 거쳐 마지막으로 확인을 클릭한 후 약 20~30분 정도 설치합니다. 디스크에 저장한 다음 재부팅하고 계정 및 네트워크 설정과 작은 작업을 수행합니다. 설치를 위해 "최소 설치" 대신 server with gui
또는를 선택할 수 있습니다 .gnome desktop
최소 설치에서는 런레벨 3 또는 현재 다중 사용자 대상이라고 불리는 레벨에 있다고 가정합니다. 런레벨 5 전체 그래픽을 얻으려면 init 5
또는 를 실행할 수 있습니다 systemctl isolate graphical.target
. 하지만 이런 것들이 설치되어 있지 않으면 실제로 무슨 일이 일어날지 모르겠습니다.
# this will return the current setting the OS runlevel is set to boot
# automatically. I suspect a minimal install will put you to runlevel 3 having
# full network capability but no graphics which is systemd multi-user.target
systemctl get-default
# to set the runlevel to boot to full graphics full networking.
systemctl set-default graphical.target
# https://www.thegeekdiary.com/centos-rhel-7-how-to-install-gui/
# for an already installed system, have the centos7 install dvd (or usb)
present as a repository so that you can basically carry on where the minimal
install stopped. You don't require networking to do this:
yum grouplist
yum groupinstall "Server with GUI"
# for a minimal install system this should work, but with the stuff you
# take for granted like networking, centos and EPEL repositories being
# available, not having to worry about dependencies and setting up repo's
# then a complete reinstall from dvd may be fast enough and less headache/risk.