반응형
Linux Kernel 정보 보기
uname -a
Linux 설치 Version 보기
cat /etc/issue
Linux User 생성
# useradd -g users -G wheel -s /bin/bash -m username
option 설명
-g users : Group 설정
-G wheel : wheel Group 등록 -G는 여러 Group을 지정하는 명령어인데 wheel Group에 속해야 su 명령을 사용할 수 있다.
-s /bin/bash : bash sheel을 이용.
-m : Home Directory를 생성함.
uname -a
Linux 설치 Version 보기
cat /etc/issue
Linux User 생성
# useradd -g users -G wheel -s /bin/bash -m username
option 설명
-g users : Group 설정
-G wheel : wheel Group 등록 -G는 여러 Group을 지정하는 명령어인데 wheel Group에 속해야 su 명령을 사용할 수 있다.
-s /bin/bash : bash sheel을 이용.
-m : Home Directory를 생성함.
파일 삭제
rm -rf 디렉토리명
-r : recursive 하게 삭제 하라
-f : force 삭제 여부 및 권한 묻지말고 삭제 하라.
파일 복사
cp -r /sitescm/BMS /sitescm/Backup/BMS
-r : recursive 하게 복사.
파일 사용량
df -k
du -sh * |sort -nr
파일 찾기
find / -name '*ab*'
/ : root 부터 찾는다.
사용자 프로세스 찾기
ps -ef | grep scmadm
리눅스 종료
[root]# shutdown ?r now
[root]# shutdown ?h now
[root]# shutdown ?h +5 5분 후에 시스템이 종료됩니다
[root]# shutdown ?h 12:00 12:00 점심 시간 입니다
[root]# halt
[root]# shutdown ?h now
[root]# shutdown ?h +5 5분 후에 시스템이 종료됩니다
[root]# shutdown ?h 12:00 12:00 점심 시간 입니다
[root]# halt
반응형
'Linux' 카테고리의 다른 글
Ubuntu 영문환경에서 SCIM 띄우기 (0) | 2008.07.08 |
---|---|
no screens found (0) | 2008.07.03 |
Linux에 Java 설치하기 (0) | 2008.05.30 |
[펌] Linux VMWare Network 설정 (0) | 2008.05.30 |
Ubuntu 멀티 부팅 순서 조정 (0) | 2008.05.28 |