이 기사의 내용은 debian-7.11.0-amd64를 설치한 후 네트워크를 구성하는 방법에 대한 것입니다. 필요한 참고 자료가 있으면 도움이 될 것입니다.
1. 새로운 wheezy를 설치하세요. DHCP를 통해 네트워크를 구성한 경우에는 롤백하고 수동으로 설정해야 합니다. 물론 서버 IP를 수정해야 합니다. 기능적인 컴포넌트를 선택할 때 최소한 "데스크톱 환경"과 "개발 환경"을 선택해야 합니다. (설치 후 컴포넌트 추가를 위해 taskel을 사용하는데, 이번에는 설치 시 gnome을 어떻게 시작하는지 공부하지 않았습니다. 데스크톱 버전을 설치했습니다.) 파일 시스템을 관리하는 문자 인터페이스가 너무 지루하고 견디기 힘들고,collective.documentviewer에서 doc, docx, pdf를 미리 볼 때 LibreOffice가 필요합니다. 설치가 완료된 후 다시 시작
2. 네트워크 매개변수 구성
nano /etc/network/interfaces(ESXi의 e1000 네트워크 카드 또는 Hyper-V의 레거시 네트워크 어댑터)
#/etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 10.16.97.205 netmask 255.255.255.0 network 10.16.97.0 broadcast 10.16.97.255 gateway 10.16.97.254
cat /etc/NetworkManager/system-connections/ 유선 연결 1(Hyper-V의 동적 네트워크 카드)
[802-3-ethernet] duplex=full [connection] id=Wired connection 1 uuid=5370c0e8-8c4b-4c45-8ed9-d39e0ed25a5a type=802-3-ethernet timestamp=1532837205 [ipv6] method=auto ip6-privacy=2 [ipv4] method=manual dns=202.103.44.150; addresses1=10.16.97.205;24;10.16.97.254;
Hyper-V 동적 네트워크 카드 "유선 연결 1", "802-3-이더넷", eth0 및 UUID
nmcli con nmcli dev
Restart 간의 관계를 확인하는 두 가지 명령 NetworkManager
#service network-manager restart
nano /etc/resolv.conf
#/etc/resolv.conf nameserver 114.114.114.114
nano /etc/hostname
#/etc/hostname mydebian205
nano /etc/hosts
#/etc/hosts 127.0.0.1 localhost 10.16.97.205 mydebian205.mydomain.net mydebian205
3. 버전 보기
cat /etc/issue
Debian GNU/Linux 7 \n \l
cat /etc/debian_version
7.11
uname -a
Linux mydebian205 3.2.0-4-amd64 #1 SMP Debian 3.2.78-1 x86_64 GNU/Linux
4. APT 구성
nano /etc/apt/sources.list
#/etc/apt/sources.list deb http://mirrors.163.com/debian/ wheezy main non-free contrib deb http://mirrors.163.com/debian/ wheezy-updates main non-free contrib deb http://mirrors.163.com/debian/ wheezy-backports main non-free contrib deb-src http://mirrors.163.com/debian/ wheezy main non-free contrib deb-src http://mirrors.163.com/debian/ wheezy-updates main non-free contrib deb-src http://mirrors.163.com/debian/ wheezy-backports main non-free contrib deb http://mirrors.163.com/debian-security/ wheezy/updates main non-free contrib deb-src http://mirrors.163.com/debian-security/ wheezy/updates main non-free contrib
새 source.list로 업데이트
apt-get update
원격 데스크톱 서비스 및 사용자 정의 텍스트 편집기 설치 joe
apt-get install xrdp joe
로그아웃 일반 구성이 완료되었으며 원격으로 제어할 수 있습니다.
위 내용은 debian-7.11.0-amd64 설치 후 네트워크 구성 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!