2011년 2월 12일 토요일

Macbuntu 사운드 테마

부팅 시 시작음이 Mac 시작음으로 설정이 안 된 경우
소리 설정(Sound Preference)에서 기본테마인 Ubuntu 테마로 변경하면 맥 시작음으로 변경됨
왜 그런지 파악해 봐야함.

2010년 8월 2일 월요일

Ubuntu 10.04 설치

1. CD롬을 이용하여 Ubuntu 설치(Windows 7과 멀티부팅)

2. 네트워크 설정(eth0)

3. Hardware Drivers 설치
Broadcom B43 wireless driver(무선랜 드라이버) 설치

4. Language 설정
menu, dialog 언어를 영어로 설정
Apply System Wide 버튼을 클릭하여 적용
로그아웃 후 로그인 시 폴더명 영문으로 변경여부 묻는 창에서 확인

5. ssh 설치
Administration > Synaptic Package Manager > ssh 검색

6. synergy client 설치 및 Autostart 설정
https://help.ubuntu.com/community/SynergyHowto

7. Google chrome 설치
http://chrome.google.com

8. Avant Window Navigator 설치
Administration > Synaptic Package Manager > awn 검색

9. compiz 및 compiz-extra 설치

2010년 6월 21일 월요일

Firefox에서 이미지 표시가 안 되는 경우

Firefox를 사용 중 간혹 이미지가 표시되지 않는 경우가 있습니다.

로그오프 후 재로그인 하고 나서 해결이 되곤 했는데, 확인해보니 잡코리아 웹보안 Agent와의 충돌 문제였네요.

혹시 동일한 문제를 겪으시는 분들이 계시다면 트레이에 있는 잡코리아에서 제공하는 WebProtector를 종료해 보시기 바랍니다. 물론 잡코리아에 들어가면 또 뜨겠지요?

이 모듈이 왜 Firefox의 이미지 다운로드를 제한하는지 모르겠지만, 보안도 좋긴 한데 일방적으로 제한을 거는게 좀 거슬립니다.
Firefox의 문제일 수도 있을까요?(글쎄요)

모듈에 조금 더 신경을 써 줬으면 좋겠네요.

2010년 5월 27일 목요일

Using an Ubuntu Powered Laptop as Access Point

Would you like to share your wired internet connection to others via the wireless card built into your laptop? I needed a way to get alot of other devices around my house online without having a wireless router handy, instead I found out how to create an access point via the Broadcom BCM4311 (Rev. 1) wireless card that is built into my Aspire 4520 laptop. You may be able to apply this tutorial to other cards as well.

As I said this may work for other cards as well, in fact my tutorial is based off this one for wireless cards with Atheros chipsets.

First off you need to get the driver and firmware for your Broadcom by running this command:

sudo apt-get install b43-fwcutter

Next install the extra packages for creating the access point:

sudo apt-get install bridge-utils hostapd

Now add the following to /etc/network/interfaces by running “sudo nano /etc/network/interfaces”:

auto eth0 wlan0 br0
iface eth0 inet manual
up /sbin/ifconfig eth0 up
down /sbin/ifconfig eth0 down
iface wlan0 inet manual
up /sbin/ifconfig wlan0 up
down /sbin/ifconfig wlan0 down
iface br0 inet static
address [your IP here]
netmask [your netmask here]
gateway [your gateway here]
bridge_ports eth0 wlan0

*Please note the only other thing in your /etc/network/interfaces file should be the local (lo) setup and loopback address (127.0.0.1). If your ethernet port gets it’s address via DHCP then use “iface br0 inet dhcp” instead and leave out the address, netmask and gateway information.

Next back up your default hostapd config file that gives alot of extra information that you may need later:

sudo mv /etc/hostapd/hostapd.conf /etc/hostapd/hostapd.conf.bkk

Next run “sudo nano /etc/hostapd/hostapd.conf” and add the following to the file:

driver=nl80211
interface=wlan0
bridge=br0
hw_mode=b
ssid=[your SSID here]
channel=1

*If you want WPA encryption please read the original tutorial, I did not use it so I cannot vouch for it.

Next run “sudo nano /etc/default/hostapd” and uncomment the ‘RUN DAEMON=”no”‘ line (remove the ‘#’ in front)

All you have to do now is run “sudo shutdown -r now” to restart and begin enjoying your new access point.

*Please be aware that the text used on this blog might make zeros(0) look like lowercase oh’s(o) please take care when reading either of these.

reference from : http://paragonofcomputing.wordpress.com/2010/01/12/using-an-ubuntu-powered-laptop-as-access-point/

2010년 5월 26일 수요일

노트북 무선랜을 AP로(미해결)

Compaq presarion B1907TU

Wireless Network
02:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g (rev 01)

Hardware Driver 설치
Broadcom B43 wireless driver 또는 Broadcom STA wireless driver

Broadcom B43 wireless driver인 경우 wlan0
Broadcom STA wireless driver인 경우 eth1

마스터 모드로 만들어주기 위해
sudo iwconfig wlan0 mode master

실패
Master mode를 지원하지 않는 것 같다는...

관련자료를 참고하여 hostapd를 이용한 설정(테스트 전)
1) 패키지 다운로드
sudo apt-get install b43-fwcutter
sudo apt-get install bridge-utils hostapd

2) 브릿지 설정
/etc/network/interfaces 편집
auto eth0 wlan0 br0
iface eth0 inet manual
up /sbin/ifconfig eth0 up
down /sbin/ifconfig eth0 down
iface wlan0 inet manual
up /sbin/ifconfig wlan0 up
down /sbin/ifconfig wlan0 down
iface br0 inet static
address 192.168.*.*
netmask 255.255.255.0
gateway 192.168.1.1
bridge_ports eth0 wlan0

3) hostapd 설정
sudo mv /etc/hostapd/hostapd.conf /etc/hostapd/hostapd.conf.bkk 백업

/etc/hostapd/hostapd.conf 편집
driver=nl80211
interface=wlan0
bridge=br0
hw_mode=b
ssid=Trojan-Win32
channel=1

4) 재실행
sudo shutdown -r now

5) hostapd 실행
sudo /usr/sbin/hostapd /etc/hostapd/hostapd.conf

관련 자료

Using an Ubuntu Powered Laptop as Access Point

How to convert an $800 laptop into a $40 wireless router

HOW TO : Wifi Access Point with hostap + hostapd + freeradius + mysql backend Part 1

HOW TO : Wifi Access Point with hostap + hostapd + freeradius + mysql backend Part 2


Ubuntu 사운드카드 설정

Compaq presarion B1907TU

Sound Card:
00:14.2 Audio device: ATI Technologies Inc IXP SB4x0 High Definition Audio Controller (rev 01)

Wireless Network
02:00.0 Network controller: Broadcom Corporation BCM4312 802.11a/b/g (rev 01)

Sound 카드 설정
sudo vi /etc/modprobe.d/alsa-base.conf

마지막 라인에 아래 옵션 추가
options snd-hda-intel model=will enable_msi=1

reboot


헤드폰에서는 소리가 나지만 스피커에서는 소리가 나지 않음(미결)

2010년 3월 11일 목요일

트위터(twitter) 시작하기

기본적으로는 트위터는 http://www.twitter.com/에 방문하셔서 이메일 주소를 이용하여 가입을 하시면 됩니다. 가입이 완료된 후에 로그인을 하시면 아마도 썰렁할 겁니다.(아니면 정체모를 누군가의 트윗이 보일겁니다). 그다음 뭘 해야하지?

첫번째 할일은 누군가를 팔로우(follow)하는 겁니다. 팔로우는 쉽게 말해 친구를 맺는걸로 보시면 됩니다. 상대방은 나를 팔로우하지 않을 수도 있습니다. 기분 나빠하지 않아도 됩니다.(기분 나빠해서는 안 됩니다.)

누구를 팔로우할지 모른다? 몇명 유명인을 팔로우해 보는 것도 도움이 될 듯합니다. 예 : 이외수(oisoo), 박중훈(movijhp), 박용만(Solarplant), 타이거JK(DrunkenTigerJK) 등
위 사람들은 트윗을 많이 하는 사람들에 속합니다. 이외에도 많은 유명인들이 쓰고 있습니다. 세계 재벌 2위로 물러난 빌게이츠도 하더군요..검색을 통해 사람을 찾거나 관심사가 있다면 키워드로 트윗을 찾아본 후 팔로우를 해도 됩니다.

그리고 트윗을 날려보세요. 다시 말해 글을 쓰는 겁니다. 보는 사람이 없어도 됩니다. 일상의 소소한 일들부터 적어보세요. 사진도 올려보고, 푸념도 해 보고... 누가 좋은 글을 쓴게 있으면 리트윗 하세요. 다시 말해 글 퍼가기 정도? 더 많은 사람이 볼 수 있도록.

아시겠지만 트위터는 140자 제한이 있습니다. 긴글을 쓸 수 있도록 해 주는 기능울 제공하는 곳도 있지만 기본은 140자입니다. 제한된 범위 내에서 글을 써 보세요.

그리고 아는 사람들에게 트위터를 써보도록 하고 서로 팔로우하도록 해 보세요. 이름이나 아이디로 검색해서 팔로우 할 수 있습니다.

다른 사람들의 이야기도 보고, 하고 싶은 이야기도 적다 보면 누군가 나를 팔로윙(Following)하고 있을 수도 있습니다.(아닐 수도 있습니다.) 누가 나를 팔로윙 한다고 꼭 팔로우 해 주지는 않아도 됩니다만 해주면 좋아는 할 겁니다.

누군가 나를 귀챦게 하거나 시끄럽게 하면 조용히 언팔로우(Unfollow)해 주세요. 절대로 실례가 되는게 아닙니다. 나중에 다시 팔로우하면 되니까요..

대충 위와 같은 식으로 조금씩 접근해 가시면 될 거 같아요. 많은 글을 써야만 되는게 아닙니다. 많은 사람들의 이야기에 귀 기울여 주는 것도 좋습니다.

영어 사용에 어려움을 겪는 분들은 http://twtkr.com/ 을 이용하셔도 괜챦습니다. 계정 연동이 되니 별도 가입없이 사용할 수 있습니다.

현재 대부분 스마트 폰을 가지고 계실텐데 트위터에는 수백가지 이상의 트위터 클라이언트 프로그램이 있습니다. 각 스마트 폰 별로 어플리케이션이 있을테니 스마트 폰에서는 웹사이트보다는 어플을사용하시는 게 편리할 겁니다. 상용 어플이 편리한 기능을 많이 제공하겠지만 무료 어플도 많으니 찾아보시면 될 것 같네요.

시작해 보세요...