웬만한건 드라이버 잡으면

$ sudo iwconfig wlan0 essid GoogleGuest
$ sudo dhclient wlan0

하면 된다.

켰을 때 자동으로 연결 안하길래 아래와 같이 추가해 줬다.
/etc/network/interfaces
auto wlan0
iface wlan0 inet dhcp
        wireless_essid GoogleGuest

 

https://help.ubuntu.com/community/WifiDocs/WirelessTroubleShootingGuide

Linux
mount -t vboxsf <Shared directory name> <mount point>

Windows
net use x: \\vboxsvr\sharename

http://androidforums.com/samsung-i7500/32481-howto-linux-adb-fastboot-mass-storage.html

fastboot path : %Android%/out/host/linux-x86/bin/fastboot

3. In folder /etc/udev/rules.d/ create files(don't forget to replace user with your username!):
50-android.rules
Code:
SUBSYSTEM=="usb", SYSFS{idVendor}=="18d1", MODE="0666", OWNER="user"
90-android.rules
Code:
SUBSYSTEM=="usb", SYSFS{idVendor}=="04e8", MODE="0666", OWNER="user"
4. Refresh udev rules:
Code:
reload udev

Tag // fastboot, Linux
* 챙기기 완료
청바지 1
반바지 1
티셔츠 2
양말 5
우산 1
110V 처럼 생긴 Plug Converter 1

* 완료지만 챙겨야 할 것
스킨/로션 2 샀음
세면제 1 샀음
귀걸이 1 샀음
카드 지갑 1 샀음

* 가져갈 것
명함 넉넉히
회사 수첩 1
노트북 1
외장 하드 1
카메라 1
멀티탭 1
E-Ticket 1
국제면허증 1
여권 1
선글라스 1
슬리퍼 1

* 사야 할 것
왁스 사야함
흰 티셔츠 사야함
속옷 사야함
(햇반?, 컵라면?)

[git] git 설정하기

from Development 2010/07/31 01:25
1. git 설치
sudo apt-get install build-dep git-core git-doc


2. git 구성하기
2.1. username과 email 설정
git config --global user.name "Yang Jeong-Seok"
git config --global user.email "dasomoli@gmail.com"


2.2.. git 설정 확인
git config --global --list


2.3.. git color ui 사용
git config --global color.ui "auto"


2.4. 기본 인코딩을 cp949로 바꾸기
git config --global i18n.commitEncoding cp949
git config --global i18n.logOutputEncoding cp949


윈도에서는 LESSCHARSET=latin1 으로 설정해야 로그 메시지를 볼 수 있다.
set LESSCHARSET=latin1