OS/Ubuntu 12

iptime 공유기 vmware ubuntu ip 고정

1. VMWare - Edit - Virtual Network EditorVMnet0 의 Bridged to: 의 Automatic Settings... 를 눌러 체크를 해제함Add Network... 를 눌러 VMnet2 를 추가 Bridged to: 를 자신의 랜카드를 설정 (Realtek ...) 2. ubuntu 들어가서 관리자 모드su 3. vi /etc/network/interfaces# The primary network interfaceauto eth0iface eth0 inet staticaddress 192.168.0.100netmask 255.255.255.0gateway 192.168.0.1dns-nameservers 168.126.63.1 168.126.63.2 4. /etc/in..

OS/Ubuntu 2012.11.27

Ubuntu loopback 만들기

아래 쉘을 적당히 만들어 root 권한으로 실행하면, 기존 loopback을 제거하고 192.168.10.1 부터 원하는 개수만큼 만들어 준다.# sudo apt-get install uml-utilities내부에서 사용하는 tunctl 을 위해 위 프로그램 설치가 필수 적이다. tap으로 시작하는 interface 를 모두 loopback 으로 가정하였다. #!/bin/bashif [ $# -eq 0 ]thenecho Usage: $0 loopback_countexitfi modprobe tun for i in $(ifconfig | grep tap | awk '{print $1}')doifconfig $i down &> /dev/null > /dev/nulltunctl -d $i &> /dev/nul..

OS/Ubuntu 2012.04.05

자동 마운트

/etc/fstab 하드디스크의 파티션, 마운트 위치, 파일시스템 타입, 옵션등을 설정하고 및 알 수 있는 곳fstab은 총 6개의 필드로 구성되어있다. 파일 시스템 장치명(file system)/ 파일 위치directory)/ 파일시스템의 종류(type) / 파일시스템의 옵션(option) / 덤프관련설정(인자)(freq) / 체크 시퀸스 번호(파일점검옵션)(pass) 1. [파일 시스템 장치명] : /etc/fstab파일의 첫번째 파일 시스템의 장치명이나 블럭장치를 명시 또는 설정합니다./dev/sda1, /dev/hda2등과 같은 파일시스템 장치명의 자리이며, 만약 파일시스템에 레이블(LABEL)이 설정되어 있다면 장치명 대신 레이블명으로 지정할 수도 있습니다.(label=/root) 2. [파일위..

OS/Ubuntu 2012.03.30

vsftpd 설치 / 설정 / 530 Login incorrect. 에러 발생시

Ubuntu 10.10 64bit Server 웹에 나오는 대로 해도 안될 경우, 아래 내용으로 /etc/vsftpd.conf 수정 단, chroot_list_file=/etc/vsftpd.chroot_list 부분만 바꿔주거나 생성해서 원하는 id 추가 # Example config file /etc/vsftpd.conf # # The default compiled in settings are fairly paranoid. This sample file # loosens things up a bit, to make the ftp daemon more usable. # Please see vsftpd.conf.5 for all compiled in defaults. # # READ THIS: This e..

OS/Ubuntu 2012.03.26

한글 관련

한글화설치 apt-get install language-pack-ko language-pack-ko-base sudo locale-gen ko_KR.EUC-KR sudo locale-gen ko_KR.UTF-8 한글입력설치 (ibus 설정에서 태극마크로 설정해야함!) sudo apt-get install ibus-hangul Xwindow에서는 System - Language 에서 추가 가능 1. Install korean language package. # apt-get install language-pack-ko 2. Generate locale. # locale-gen ko_KR.EUC-KR 3. Modify language setting files. # vi /var/lib/locales/supp..

OS/Ubuntu 2012.03.15

Ubuntu 원격 Xwindow

주소가 유효하지 않은 경우가 있으므로 korea mirror site로 아래 파일 변경 /etc/apt/sources.list :%s/이전/신규/g 를 써서 한번에 바꾸자! :%s/kr.archive http://ftp.daum.net/ubuntu/ # screen -S xwindow_install (screen은 왜 쓸까? nohup 역할) # apt-get update # apt-get install ubuntu-desktop CTRL+A+D (Screen 전환, 복귀시 screen -r) http://mcchae.egloos.com/10832296 http://ssndwind.tistory.com/50 freenx서버 설치 add-apt-repository ppa:freenx-team/ppa apt..

OS/Ubuntu 2012.03.14