nginx 전체 깔끼

Liinux 2014. 11. 3. 09:50

nginx를 한번에 전체 서비스 깔기

apt-get install nginx-full


'Liinux' 카테고리의 다른 글

우분투 nginx 400 Bad Request 에러  (0) 2014.12.04
하드포멧 방식 알아보기 blkid  (0) 2014.11.10
리눅스 dpkg 에러 날때  (0) 2014.11.03
리눅스 심볼릭 링크  (0) 2014.11.03
apt-get update 실패 오류 날때  (0) 2014.11.02
Posted by 모닉스
,
E: Could not get lock /var/lib/dpkg/lock - open( 11 Resource  temporarily unavailable)
E: Unable  to lock  the administration directory (/var/lib/dpkg/), is another process
와 같은 메시지가 뜬다.


sudo rm -rf /var/lib/dpkg/lock 


sudo apt-get autoclean $$ apt-get clear cache
sudo reboot


or

sudo rm -rf /var/lib/apt/*

sudo apt-get update


apt-get -f install


Posted by 모닉스
,

리눅스 심볼릭 링크

Liinux 2014. 11. 3. 08:18


ln -s [원본경로] [새링크경로]

ex) ln -s /home /var/www/webdav

이렇게 하시면 /var/www/webdav 하위로 pogodata연결이 되실꺼예요


Posted by 모닉스
,