리눅스 환경변수의 설명

1. bash에서의 쉘변수와 환경변수(1) 쉘변수 1) 개요: 말 그대로 특정한 쉘 즉 bash에서만 적용되는 변수를 말한다. 2) 특징 ㄱ. 지정하는 방법은 ‘변수명=값’ 형태로 지정하면 된다. 예) [posein@www posein]$ COLOR=red ㄴ. 변수값을 출력할 때는 변수명 앞에 $을 붙여 echo명령을 사용하면 된다. 예) [posein@www posein]$ echo $COLOR red (2) 환경변수: 모든 쉘에 영향을 미치는 변수라는 것을 제외하고는 […]

Linux에서 파일 타입 알아내기

http://mark0.net/soft-trid-e.html 파일 다운로드후 trid zip 파일을 압축을 푼다. 실행가능하도록 설정 chmod u+x trid   TrID 파일 아래의 defs 파일도 같이 다운받는다. TrIDDefs.TRD package, 891KB ZIP (6673 file types, 13/03/16) 파이썬 업데이트 파일도 다운받고 업데이트 시킨다. user1@ubuntu-desktop:~/Downloads$ unzip tridupdate.zip Archive: tridupdate.zip inflating: tridupdate.py user1@ubuntu-desktop:~/Downloads$ python tridupdate.py File triddefs.trd not found Checking last version online… MD5: 337d77f877de39f646592ec082919730 […]

리눅스에서 리모트로 외부 프로그램 자신의 데탑으로 띄우기

실행순서 @@ Server 192.168.0.160, Client 192.168.0.150 인 상황에서   @@ 서버로부터 접근 [150에서 접근한다] ssh -X -l user1 192.168.0.160   @@ 192.168.0.150 아이피를 xhost 대상에서 제거한다. xhost – inet:192.168.0.150 192.168.0.150 being removed from access control list   @@ 다음으로 명령어 실행하면 됨 $ filezilla  

Gentoo에서 Airvideo 설정하기

젠투에서 Airvideo 설정하기 @@ 참고 사이트 http://blog.stevenlu.com/2012/09/10/installing-airvideo-server-on-debian-squeeze/ @@ 실행파일 만들기 vi /usr/bin/startAVS.sh #!/bin/bash ps aux | grep java | grep AirVideo | awk ‘{ print $2 }’ | xargs -I pid kill -9 pid exec java -jar /opt/airvideoserver/AirVideoServerLinux.jar /opt/airvideoserver/properties.conf 2&>1 /dev/null & vi /etc/conf.d/local 부팅시 자동실행되도록 할것 /usr/bin/startAVS.sh @@ 인코딩 바꿔주는 스크립트 vi /usr/bin/convutf8.sh #!/bin/bash […]

html2pdf 우분투에서 PDF 생성 하는 프로그램 활용 방법

wkhtmltopdf 설치 sudo apt-get install wkhtmltopdf @@ 커맨드 모음 wkhtmltopdf –user-style-sheet ~/apps/wkhtmltopdf/font.css -s A4 –header-right "[webpage]" http://www.qtcentre.org/archive/index.php/t-51448.html ~/Documents/temp.pdf wkhtmltopdf –user-style-sheet ~/apps/wkhtmltopdf/font.css -s A4 –footer-left "[webpage]" http://askubuntu.com/questions/104695/how-do-i-change-mirrors-in-ubuntu-server-from-regional-to-main ~/Desktop/workspace/Prints/temp/temp.pdf wkhtmltopdf –no-outline -B 6mm -L 4mm -R 4mm -T 4mm –user-style-sheet font.css -s A4 –footer-font-size 8 –footer-line –footer-left "[webpage]" \ http://daum.net \ ~/Documents/temp.pdf wkhtmltopdf –user-style-sheet ~/apps/wkhtmltopdf/font.css -s A4 […]

Ubuntu Install History 관련 히스토리 정리

Ubuntu Install History @@ INSTALL PACKAGE sudo apt-get install libxss1 filezilla tomboy sshpass gimp ibus \ ibus-hangul openjdk-7-jdk vim-gnome nautilus-open-terminal atop htop \ lsb-core mysql-client mysql-server apache2 php5 libapache2-mod-php5 \ ssh sshfs curl sshpass php5-mysql php5-mcrypt ant git geoip-bin \ nmap tcpflow build-essential libnl-3-dev openssl ettercap-text-only \ hydra dsniff sslstrip libssl-dev rapidsvn gnome-session-fallback whois \ […]

PART1: 우분투 관련 메모들

우분투 전역변수 설정 vi /etc/environment   노틸러스에 이미지 리사이징 하는 메뉴 붙이기 sudo apt-get install nautilus-image-converter imagemagick   Ubuntu Custom Login Profile sudo cp /usr/share/xsessions/gnome-fallback.desktop /usr/share/xsessions/custom.desktop sudo vi /usr/share/xsessions/custom.desktop [Desktop Entry] Name=Webterror Session Comment=Custom ~/.xsession script Exec=/home/webterror/.xsession X-Ubuntu-Gettext-Domain=gdm   외부 FTP 마운트 시키기 webterror@webterror:~$ cat /etc/fuse.conf # Set the maximum number of FUSE mounts allowed […]