[사용자, 그룹 관리와 관련된 파일들] /etc/passwd : 사용자 계정 정보 파일. /etc/shadow : 암호화된 사용자 비밀번호 저장파일. /etc/group : 사용자 그룹 정보 저장파일. /etc/skel : 사용자 등록시 홈디렉토리에 복사되는 원본파일이 저장된 디렉토리 (사용자 추가시 홈 디렉토리에 복사됨). /etc/default/useradd : 새 사용자 등록시 기본 설정정보 파일(홈 디렉토리 기본 위치, 기본 쉘 종류, 기본 그룹 등). /etc/login/defs : 기타 사용자 생성 옵션들이 정의된 파일. /etc/passwd 의 파일 저장 형식 – 사용자계정:암호:UID:GID:사용자이름:홈디렉토리위치:사용쉘 # cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin /etc/shadow 의 파일 저장 형식 – 사용자계정:암호:암호 파일 최종 수정일:암호 변경 최소일:암호 변경 최대일:암호 만료 경고기간:암호 파기기간:계정만료기간:예약필드 # cat /etc/shadow root:$1$qsotdQm.$uic0TlSBIBqC6VX9WUCl9.:14651:0:99999:7::: bin:*:14581:0:99999:7::: [사용자 계정 관리 명령어] ■ 사용자 정보 조회 ▷ 명령어 : id ▷ 사용형식 : id [옵션] 사용자계정 -g : 기본 그룹의 GID 출력 -G : 모든 그룹의 GID 출력 -u : 사용자의 uid 출력 -n : 위 옵션과 함께 사용, 숫자대신 이름 출력() ▷ 사용예 # id -Gn user1 ■ 현재 로긴하고 있는 사용자 목록 조회 : users # users root ■ 사용자 계정 추가 ▷ 명령어 : useradd ▷ 사용형식 : useradd [옵션] 로그인 계정 -c commen
1. rpm 설치와 패키지 설치하기 - rpm.rte - gcc-4.2.0-3.aix6.1.ppc.rpm Perform the following steps to install the rpm.rte fileset: Download the rpm.rte fileset from the following location: ftp://public.dhe.ibm.com/aix/freeSoftware/aixtoolbox/INSTALLP/ppc/rpm.rte Check if the fileset has been installed on the system: # lslpp -l fileset-name For example: # lslpp -l rpm.rte If you see the returned message, Fileset fileset-name not installed issue the following command to install the fileset: # installp -d fileset-path -acgXY rpm.rte For example: # installp -d /var/tmp/rpm.rte -acgXY rpm.rte Perform the following steps to install the gcc-4.2.0-3.aix6.1.ppc.rpm file: Download gcc-4.2.0-3.aix6.1.ppc.rpm from http://www-03.ibm.com/systems/power/software/aix/linux/toolbox/alpha.html Install the rpm file. For example: # rpm -ihv gcc-4.2.0-3.aix6.1.ppc.rpm 2. rpm으로 패키지 삭제하기 gcc 이 이미 설치되어 있는지 확인하기 $ rpm -qa | grep gcc-cpp 조회가 되면 다음 명령으로 삭제를 합니다. $ rpm -e gcc-cpp-
Bash 는 리눅스와 macOS 기반의 운영체제에서 이용되는 셀입니다. Bash 를 이용하여서 포트란 설치와 컴파일 과정에 대해서 알아봅시다. 1. "apt-get" 업데이트 해주기 $ sudo apt-get update 2. gfortran 설치하기 $ sudo apt-get install gfortran 3. "Hello World!" 코드 작성하기 $ vim helloworld.f program hello print *,"Hello World!" end program hello 4. 코드 컴파일하기 $ gfortran -ffree-form helloworld.f 5. 생성된 파일 실행하기 $ ./a.out Hello World!
댓글
댓글 쓰기