Ctrl+M 보고 있는 화면 키우기, 줄이기
Ctrl+Shift+R 이름으로 파일 찾기

Posted by 언제나19
l

ssh id 지정

linux 2009. 5. 25. 17:00
svn update하려는데,
도중에 외부 경로에 로그인할 때
id를 지정하고 싶으면

~/.ssh/config
를 다음과 같이 수정한다.

host    아이피
User    아이디


Posted by 언제나19
l

network 설정

linux 2009. 3. 5. 10:39
sudo vi /etc/network/interface



  1 auto lo
  2 iface lo inet loopback
  3
  4
  5 auto eth0
  6 iface eth0 inet static
  7     address 172.....
  8     netmask 255.255.255.0
  9     gateway 172.....
 10     hwaddress ether 00:0e:e8:...
 11
 12 auto eth1
 13 iface eth1 inet static
 14     address 10....
 15     netmask 255.255.0.0
 16     gateway 10....

/etc/init.d/networking restart
Posted by 언제나19
l