Fedora Linux 설치 후 X window 에서 root 접속허가 명령어 Command allows root to access X windowon Fedora Linux 1. ~]$ su - username => 계정 변환 Change User 2. ~]# vi /etc/pam.d/gdm => 3행 'auth required pam_succeed.if.so user !=root quiet' '#' 추가해서 주석문으로 변경 On third line, add '#' at front to change as comment line. 3. ~]# vi /etc/pam.d/gdm-password => 'auth required pam_succeed_if.so user! = root quiet' #추가하여 주석..
How to Manage User by Using - useradd command - usermod command - userdell command - ssh service - putty software - wall command - groups command 1. useradd 옵션 [root@jaylee121 root]# useradd -d /home/kang kkk => kkk계정의 홈디렉토리를 /home/kang 하겠다. -d : 홈 디렉터리 변경 -g : 그룹에 포함시키는것 -G : 여러가지 그룹에 포함시키는것 2. 계정 정보를 변경 ( 유저모드 옵션이용 수정 추천. 안전성 ) => usermod 명령을 사용 : 옵션은 useradd 와 동일 [root@jaylee121 root]#usermod..
레드헷 리눅스 Red Hat Linux version 파일 또는 디렉토리 관리 필수 명령어 Managing file and directory by using essetial command 1. find => 파일, 디렉토리 검색 명령어 Command search file or directory 형식Format ) [root@jasonlee~]# find 검색디렉토리 -겸색옵션 검색조건 [root@jasonlee~]# find searchDir -serOpt serCondition ex) [root@jasonlee~]# find /etc -type f -name '*.conf' -print (-print 생략 가능 can be leave out) => /etc 디렉토리안에 -type f 파일형식에 -nam..
레드헷 리눅스 Red Hat Linux version 파일 또는 디렉토리 관리 기본 명령어 Managing file and directory by using basic command 1. ls (list에 약자, intial of list) -> 파일 목록 확인 ( check file list ) 형식Format ) [root@jasonlee~]# ls 옵션Option 디렉토리Directory ->디렉토리 안에 존재하는 목록 확인 Check the list exist in directory ex) [root@jasonlee~]# ls -l =>현재 디렉토리의 목록을 자세히 확인 Check list in directory detail. [root@jasonlee~]# ls -l /etc => /etc 디렉..