우분투 10.05 또는 12.04를 설치 했을 때 무선랜이 드라이버가 잡히지 않는 증상이 있었다.

 

http://wireless.kernel.org/download

에서 드라이버 다운로드를 하여 압축 풀고 설치해도 당최 되질 않았다.

그러다 방법은 찾았다.

 

 

Getting compat-wireless on Ubuntu

With Ubuntu you have the option of either installing compat-wireless yourself or of installing the package that provides it built by the Ubuntu kernel team. The Ubuntu package that carries compat-wireless is called linux-backport-modules and it has more backported modules than just your wireless subsystem. Its updated whenever major updates are pushed out into the wireless-testing git gree.

 

# For Ubuntu 8.10 Intrepid users :

sudo apt-get install linux-backports-modules-intrepid

 

# For Ubuntu 9.04 Jaunty users :

sudo apt-get install linux-backports-modules-jaunty

 

# For Ubuntu 9.10 Karmic users :

sudo apt-get install linux-backports-modules-karmic

 

# For Ubuntu 10.04 Lucid users (one of the following depending on the installed kernel. Most user should choose generic ) :

sudo apt-get install linux-backports-modules-wireless-lucid-generic

sudo apt-get install linux-backports-modules-wireless-lucid-generic-pae

sudo apt-get install linux-backports-modules-wireless-lucid-preempt

sudo apt-get install linux-backports-modules-wireless-lucid-server

 

우분투에서 backport module에 포함 되어 있다고 한다.

설치하니까 무선 완전 잘 잡혔다! 쵝오!

 

 

도움주신 url : http://reimemuber.tistory.com/entry/Ubuntu-1004-LTS-%EC%97%90%EC%84%9C-ath5k-%EC%84%A4%EC%B9%98%ED%95%98%EA%B8%B0#recentTrackback

by 초보인척 2013. 3. 15. 14:07

우분투 인터페이스 ipv6  비활성화

Interface ipv6 끄는 방법.

 

1. On Ubuntu (10.04/10.10/11.04), launch the terminal and issue this command to check whether IPv6 is enabled or not:

cat /proc/sys/net/ipv6/conf/all/disable_ipv6

0 --> Enabled
1 --> Disabled

 

 

2. To disable IPv6, we need to edit the 'sysctl.conf' file. So, via the terminal, issue this command:

gksudo gedit /etc/sysctl.conf

Then add these four lines:

# IPv6
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

sysctl -p 실행

 

ipv6를 끄면 인터넷 조금 더 빨라지는 것을 확인 할 수 있다.

 

 

참조url : http://www.upubuntu.com/2011/05/how-to-disable-ipv6-under-ubuntu.html

http://blog.saltfactory.net/m/post/view/id/70

 

 

 

by 초보인척 2013. 3. 15. 13:50

----<압축풀기>-----------------------------------------------------------------------------------------

1. tar.gz 압축풀기

$gunzip filename.tar.gz    // tar.gz에서 gz을 풀어냅니다.
$tar xvf filename.tar         // tar를 풀어냅니다.  ( x: 압축풀기 , v: 압축푸는 상태를 본다, f: 파일이름 )

압축푸는 상황을 보고 싶지 않으시다면 v옵션을 주지 않으셔도 됩니다만 보통은 적습니다.

2. tar.gz 한번에 풀기

$tar xvzf filename.tar.gz

이렇게 간단하게 풀어버리는 방법도 있습니다.ㅋ

----<압축하기>-----------------------------------------------------------------------------------------

3. tar.gz 압축하기

$tar cvf filename.tar file1...    //file1의 폴더나 파일을 filename.tar로 묶는다 (압축아님)
$gzip filename.tar                //filename.tar을 filename.tar.gz로 압축한다 (이땐 압축)

4. tar.gz 한번에 압축하기

$tar cvzf filename.tar.gz file1...     //file1의 폴더나 파일을 filename.tar.gz로 묶고 압축한다.

 

참조url : http://towanouta.tistory.com/101

 

by 초보인척 2013. 3. 15. 13:46