'UBUNTU'에 해당되는 글 3건

PXE를 이용한 ubuntu network booting :: 2012/05/21 21:16

PXE는 DHCP로 IP를 할당 받은 후 tftp를 이용하여 boot image에 접근한다
따라서 tftp서버와 dhcp서버가 필요하다

# apt-get install tftpd-hpa dhcp3-server



이후 /etc/dhcp3/dhcpd.conf를 열어서 dhcp 서버에서 할당할 대역을 설정해 준다

subnet 10.1.20.0 netmask 255.255.255.0 {
        range 10.1.20.70 10.1.20.79;
        filename "pxelinux.0";
}


이후에 netboot 이미지를 tftp 서버에 넣어주면 된다.

# wget -np -r ftp://ftp.kaist.ac.kr/ubuntu/dists/precise/main/installer-amd64/20101020ubuntu136/images/netboot

# mv ftp.kaist.ac.kr/ubuntu/dists/precise/main/installer-amd64/20101020ubuntu136/images/netboot/* .



2012/05/21 21:16 2012/05/21 21:16
Trackback Address :: http://insidexino.net/trackback/2757367

[Ubuntu] X11 forwarding시에 인증 에러 해결법 :: 2009/09/16 16:13

ssh -X user@domain

위와 같은 명령어로 X11 forwarding이 가능하다. 하지만 간혹 인증 에러가 발생하는 경우가 있는데 이때의 해결책은 다음과 같다.

1. Make sure you are not running out of disk space

Run df and make sure you have sufficient disk space:
$ df -H

If you are low on disk space remove unnecessary files from your system.

2. Make sure ~/.Xauthority owned by you

Run following command to find ownweship:
$ ls -l ~/.Xauthority
Run chown and chmod to fix permission problems
$ chown user:group ~/.Xauthority
$ chmod 0600 ~/.Xauthority

Replace user:group with your actual username and groupname.

3. Make sure X11 SSHD Forwarding Enabled

Make sure following line exists in sshd_config file:
$ grep X11Forwarding /etc/ssh/sshd_config
Sample output:

X11Forwarding yes

If X11 disabled add following line to sshd_cofing and restart ssh server:
X11Forwarding yes

4. Make sure X11 client forwarding enabled

Make sure your local ssh_config has following lines:
Host *
ForwardX11 yes


출처 : http://www.cyberciti.biz/faq/x11-connection-rejected-because-of-wrong-authentication/

2009/09/16 16:13 2009/09/16 16:13
Trackback Address :: http://insidexino.net/trackback/2757325

Ubuntu graphic driver - EnvyNG :: 2008/10/14 16:51

Ubuntu용 그래픽 드라이버를 잡기 힘들 경우, EnvyNG라는 툴을 이용하면 하드웨어를 자동으로 detect해서 드라이버를 설치해 준다.
누가 만들었는지 참 고마울 다름이다. 아, 만든이는 제작자 홈페이지에 연결된거라 바로 알수 있구나..;;

http://www.albertomilone.com/nvidia_scripts1.html

여기로 가면 받는 법 및 실행법을 알 수 있다.

2008/10/14 16:51 2008/10/14 16:51
Trackback Address :: http://insidexino.net/trackback/2757297