Ctrl+Shift+R 이름으로 파일 찾기
svn update하려는데,
도중에 외부 경로에 로그인할 때
id를 지정하고 싶으면
~/.ssh/config
를 다음과 같이 수정한다.
host 아이피
User 아이디
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
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