Linux 472

rpm 설치 파일이 32bit 인지 64bit인지 확인 방법

일반적으로 아래와 같이 출력이 된다. # rpm -qa | grep sshopenssh-clients-4.3p2-41.el5 openssh-askpass-4.3p2-41.el5 openssh-server-4.3p2-41.el5 openssh-4.3p2-41.el5 # rpm -qa --queryformat "%{NAME}-%{VERSION}-%{RELEASE} (%{ARCH})\n" | grep sshopenssh-clients-4.3p2-41.el5 (x86_64)openssh-askpass-4.3p2-41.el5 (x86_64)openssh-server-4.3p2-41.el5 (x86_64)openssh-4.3p2-41.el5 (x86_64) 파란 항목을 추가해주면 맨뒤에서 확인 가능하다.

Linux 2013.11.21

리눅스 usb 차단 (2)

http://algo79.tistory.com/entry/Linux-usb-%EC%82%AC%EC%9A%A9-%EC%B0%A8%EB%8B%A8이어 두번째 방법이다. usb 자체 사용 안하게 하는 방법이다.(USB마우스,키보드 사용불가능하다) (centos 기준)# vi /etc/boot/grub/grub.conf# grub.conf generated by anaconda## Note that you do not have to rerun grub after making changes to this file# NOTICE: You have a /boot partition. This means that# all kernel and initrd paths are relative to /boot/, eg.# ro..

Linux 2013.10.29

리눅스 터미널 색상 변경하기

리눅스 터미널 색상 변경하기일반적으로 putty 사용시 배경이 검은색이기때문에파란색이 잘 안보일수가 있다. 위 이미지를 보면 파란색이 잘 안보인다. # vi ~/.profileexport LS_COLORS="di=0;36" 항목을 추가 하고# source ~/.profile적용하면 위와 같이 잘 보이게 된다. 더 세부 적으로 셋팅을 하고 싶다면 파일 종류di = directory fi = file ln = linker file no = text ex = exe so = soket pi = name pipe bd = block device cd = charicter device 속성00 delete_method 01 bold 05 blink 07 reverse 색상 ("파일종류=속성;색상" ) export..

Linux 2013.10.25

revision file lacks trailing newline

subversionException: 160004 - revision file lacks trailing newline라고 에러가 뜰때가 있다 참난감하다. 이럴때는예를 들어 test 라는 rep 가 있다.test/db/reprops ,test/db/revs 폴더 아래지금 에러가 난 파일 957 파일이 있을거다. 혹시 모르니 두 폴더에 있는 957 파일을 백업을 하고각 해당폴더에 있는 956 파일들을 해당 폴더에 957 파일로 복사를 하면 된다. test/db/reprops/956 -> 957test/db/revs/956 -> 957이렇게 하면 정상 작동 될것이다.

Linux 2013.09.18

가상화(vmware,virtualbox)에 centos 설치시 해상도 설정

가상화에 centos 띄우면 해상도가 한정해상도만 지원한다. # vi /etc/X11/xorg.conf Section "Device"Identifier "Videocard0"Driver "vesa"EndSection Section "Monitor"Identifier "Monitor0"HorizSync 1.0 - 10000.0VertRefresh 1.0 - 10000.0EndSection Section "Screen"Identifier "Screen0"Device "Videocard0"Monitor "Monitor0"DefaultDepth 24SubSection "Display"Viewport 0 0Depth 24Modes "1600x1200""1280x1024" "1024x768"EndSubSection..

Linux 2013.09.03

리눅스 파일 및 폴더 삭제 못하게 하기(chattr, lsattr)

리눅스 환경에서 특정 파일 삭제 못하게 하는 방법이다.# ls -al-rw-r--r-- 1 root root 0 8ì›” 28 13:53 aa.txtaa 라는 파일을 삭제를 못하게 하겠다. # chattr +a aa.txt# lsattr aa.txt-----a------- aa.txt a라는 속성이 생겼는데 삭제가 불가능 하다.# rm aa.txtrm: remove yrm: cannot remove `aa.txt'삭제를 해보려 하니 삭제가 안된다.삭제를 할수 있도록 원상태로 돌려보겠다.# chattr -a aa.txt# lsattr aa.txt------------- aa.txt # rm aa.txtrm: remove y 정상적으로 삭제가 된다. 특정 폴더나 파일 전체도 가능하다. 폴더#find ./ -..

Linux 2013.08.28
728x90
320x100