ntfs 인식문제 ...
[root&localhost]# yum --enablerepo=extras install epel-release
[root&localhost]# yum install ntfs*
or
[root&localhost]# yum install ntfs-3g
끝.
ntfs 인식문제 ...
[root&localhost]# yum --enablerepo=extras install epel-release
[root&localhost]# yum install ntfs*
or
[root&localhost]# yum install ntfs-3g
끝.
아마 dhcp서버 구성한다 패키지를 깔고 지우다가 에러가 발생한 것 같습니다.
gnome tray에 기본적으로 실행되는 네트워크 매니저의 유선네트워크(wired)쪽이 활성화 되지 않고
- 물론 랜케이블이 연결되어 있지 않으면 매니저상에 인터페이스는 활성돠 되지 않습니다
- /etc/networks/interfaces 파일에 수동으로 네트워크를 구성해 주어도 유선네트워크가 작동하지 않습니다.
- 그와 동시에 네트워크매니저의 유선네트워크(wired)가 다음과 같이 표시 됩니다. "Device is unmanaged."
위와 같은 경우 다음을 점검합니다.
vi /etc/NetworkManager/NetWorkManager.conf
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=true
[WSL] Windows Subsystem for Linux - SSH 서버 세팅하기 (0) | 2019.07.30 |
---|---|
우분투 IP설정 (0) | 2017.05.17 |
리눅스 기본명령 및 퍼미션(권한) 수정 (0) | 2017.05.16 |
우분투 16 원격 데스크탑 설치 (0) | 2017.05.16 |
RHEL/Centos7 원격데스크톱 연결 XRDP 설치 (0) | 2017.04.25 |
1. ip설정
vi /etc/network/interfaces
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
# 자동으로 받을려면
# The primary network interface
auto eth0
iface eth0 inet dhcp
2. nameserver 설정
vi /etc/resolv.conf
[WSL] Windows Subsystem for Linux - SSH 서버 세팅하기 (0) | 2019.07.30 |
---|---|
우분투 - [Network] Device is unmanaged 메시지 관련 (0) | 2017.05.17 |
리눅스 기본명령 및 퍼미션(권한) 수정 (0) | 2017.05.16 |
우분투 16 원격 데스크탑 설치 (0) | 2017.05.16 |
RHEL/Centos7 원격데스크톱 연결 XRDP 설치 (0) | 2017.04.25 |