This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. 커맨드라인에 입력 | |
netsh wlan set hostednetwork mode=allow ssid=***** key=***** keyUsage=persistent | |
2. 제어판\네트워크 및 인터넷\네트워크 연결에서 | |
"무선 네트워크 연결 X"가 새로 생겼는지 확인 | |
원래 인터넷이 연결된 네트워크 (로컬 연결이나 무선 네트워크 연결) | |
속성 > 공유 > 다른 네트워크 사용자가 이 컴퓨터 연결을 통해 ... 체크 > 새로 생긴 "무선 네트워크 연결 X"를 선택 | |
3. 커맨드라인에 입력 (재부팅 시 마다) | |
netsh wlan start hostednetwork |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://www.clien.net/cs2/bbs/board.php?bo_table=lecture&wr_id=142068&page=2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Setup samba | |
http://murfboy.tistory.com/26 | |
xrdp 원격접속 화면 안나올 때 | |
vim ~/.xsession | |
gnome-session --session=ubuntu-2d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Download script-through files with wget | |
wget -O file.rename http://~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
받을 때 주의사항! linux상에서 '$wget raw-file-link' 형태로 받아야 안깨진다! | |
# $Id: screenrc,v 1.15 2003/10/08 11:39:03 zal Exp $ | |
# | |
# /etc/screenrc | |
# | |
# This is the system wide screenrc. | |
# | |
# You can use this file to change the default behavior of screen system wide | |
# or copy it to ~/.screenrc and use it as a starting point for your own |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AVD image 저장 path 설정 등을 위해 환경변수를 생성하여 설정 | |
ANDROID_SDK_HOME | |
D:\adt-bundle-windows-x86_64\sdk |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
작업표시줄 고정 아이템 위치 | |
C:\Users\user\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch\User Pinned\TaskBar | |
Chrome Appdata/Cache 폴더 지정 (Shortcut에) | |
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir="D:\AppData\Chrome" --disk-cache-dir="D:\AppData\Chrome\Default" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Setting priority on new processes | |
nice -n 10 apt-get upgrade | |
Setting Priority on Existing Processes | |
renice 10 -p 21827 | |
Note: | |
The Linux niceness scale goes from -20 to 19. The lower the number the more priority that task gets. | |
Only root can apply negative nice values. | |