태터데스크 관리자

도움말
닫기
적용하기   첫페이지 만들기

태터데스크 메시지

저장하였습니다.

'I.T. Diary/Solaris'에 해당되는 글 8건

  1. 2008/04/03 솔라리스에서 RAID 5
  2. 2008/04/03 Solaris OS Run Levels
  3. 2008/02/16 이상한 문자 파일을 지우기
  4. 2008/02/16 솔라리스 패스워드 관련 명령어
  5. 2008/02/16 Cron
You cannot use a RAID-5 volume for root(/) directory, the /usr directory, swap space, or exiting file systems becasue the metadevice software is not loaded early enough in the solaris OS boot process.

'I.T. Diary > Solaris' 카테고리의 다른 글

솔라리스에서 RAID 5  (0) 2008/04/03
Solaris OS Run Levels  (0) 2008/04/03
이상한 문자 파일을 지우기  (0) 2008/02/16
솔라리스 패스워드 관련 명령어  (0) 2008/02/16
Cron  (0) 2008/02/16
lsof 기능을 하는 셀 스크립트  (0) 2008/02/16
Posted by aboutnz

인터뷰 하는중 갑자기 가장 기본적인 시스템 레벨이 생각이 않난적이 있다. 영어로는 Mental Block 이라하는데 정말 기본적인것이 생각이 안나니 황당할수 밖에 없다. 다아는것도 어떤상황에서는 까맣게 생각이 안나니.... 

가장 기본적은 System Run Levels

0 : System is running the PROM monitor.

s or S : Single-user : Solaris )S single-user mode with critical file systems mounted and accessible.

1 : The system is running in a single-user administrative state with access to all available file systems.

2 : multi-user : The system is supporting multiuser operations. Multiple users can access the system. All system daemons are running except fir the Network File System (NFS) serer and some other network resource server related daemons.

3 : multi-users-server : The system is supporting multiuser operations and has NFS resource sharing and other network resource servers available

4 : The level is currently not implemented.

5 : A transitional run level in which the solaris O/S is shut down and the system is powered off

6 : A transitional run level in which the Solaris O/S is shut down and the system reboots to the default run level.


이올린에 북마크하기(0) 이올린에 추천하기(0)

'I.T. Diary > Solaris' 카테고리의 다른 글

솔라리스에서 RAID 5  (0) 2008/04/03
Solaris OS Run Levels  (0) 2008/04/03
이상한 문자 파일을 지우기  (0) 2008/02/16
솔라리스 패스워드 관련 명령어  (0) 2008/02/16
Cron  (0) 2008/02/16
lsof 기능을 하는 셀 스크립트  (0) 2008/02/16
Posted by aboutnz
가끔 Directory 을 보면 이상한 특수문자의 파일이 생성되 있는때가 있다. 이런 파일을 지우는 방법

1) 첫번째 방법

rm ./이상한파일이름
예) rm ./-eee

2) i-node 을 찾아 지우는 방법

ls -i 을 하여 i-node 을 구한다음 find . -inum i-node 번호 -exec rm -i {}  \;

알아두면 편리한 팁.

ex) find . -inum 440989 -exec rm -i {}  \;
rm: remove ./highcon.$MONTH.log (yes/no)? y

이올린에 북마크하기(0) 이올린에 추천하기(0)

'I.T. Diary > Solaris' 카테고리의 다른 글

솔라리스에서 RAID 5  (0) 2008/04/03
Solaris OS Run Levels  (0) 2008/04/03
이상한 문자 파일을 지우기  (0) 2008/02/16
솔라리스 패스워드 관련 명령어  (0) 2008/02/16
Cron  (0) 2008/02/16
lsof 기능을 하는 셀 스크립트  (0) 2008/02/16
Posted by aboutnz
1. passwd -f ( 처음 로그인 할때 사용자가 패스워드를 선택할수 있게함)
2. passwd -x -l andrew ( 패스워드가 말료되지 않게함)
3. passwd -e /bin/bash ( 셀을 바꿀때 사용하는 명령어)
4. ps | grep $$ ( 현재 셀을 나타내주는 명령어)
5. 패스워드 가 많아지면서 관리프로그램이 필요하게되었다 유용하게쓰는 password safe 을 소개한다.
아래 싸이트에서 Download 할수있다.  http://sourceforge.net/projects/passwordsafe/
이올린에 북마크하기(0) 이올린에 추천하기(0)

'I.T. Diary > Solaris' 카테고리의 다른 글

Solaris OS Run Levels  (0) 2008/04/03
이상한 문자 파일을 지우기  (0) 2008/02/16
솔라리스 패스워드 관련 명령어  (0) 2008/02/16
Cron  (0) 2008/02/16
lsof 기능을 하는 셀 스크립트  (0) 2008/02/16
losf 명령어  (0) 2007/10/15
Posted by aboutnz

Cron

I.T. Diary/Solaris 2008/02/16 11:55

가끔 cron -e 을 해도 실행이 안 되는 경우가 있다. 그럴 땐 Editor 가 세팅이 안 되어 있을 때가 많다.
아래와 같이 해결하면 된다.

# EDITOR=vi; export EDITOR
# crontab -e

이올린에 북마크하기(0) 이올린에 추천하기(0)

'I.T. Diary > Solaris' 카테고리의 다른 글

이상한 문자 파일을 지우기  (0) 2008/02/16
솔라리스 패스워드 관련 명령어  (0) 2008/02/16
Cron  (0) 2008/02/16
lsof 기능을 하는 셀 스크립트  (0) 2008/02/16
losf 명령어  (0) 2007/10/15
I.T. 자격증에 대해  (3) 2007/10/03
Posted by aboutnz