Skip to content

Instantly share code, notes, and snippets.

1. 커맨드라인에 입력
netsh wlan set hostednetwork mode=allow ssid=***** key=***** keyUsage=persistent
2. 제어판\네트워크 및 인터넷\네트워크 연결에서
"무선 네트워크 연결 X"가 새로 생겼는지 확인
원래 인터넷이 연결된 네트워크 (로컬 연결이나 무선 네트워크 연결)
속성 > 공유 > 다른 네트워크 사용자가 이 컴퓨터 연결을 통해 ... 체크 > 새로 생긴 "무선 네트워크 연결 X"를 선택
3. 커맨드라인에 입력 (재부팅 시 마다)
netsh wlan start hostednetwork
http://www.clien.net/cs2/bbs/board.php?bo_table=lecture&wr_id=142068&page=2
@yitsup2u
yitsup2u / ubuntuReferences
Last active August 29, 2015 14:07
Ubuntu references
Setup samba
http://murfboy.tistory.com/26
xrdp 원격접속 화면 안나올 때
vim ~/.xsession
gnome-session --session=ubuntu-2d
@yitsup2u
yitsup2u / Commands
Created October 13, 2014 01:20
Linux commands
Download script-through files with wget
wget -O file.rename http://~
@yitsup2u
yitsup2u / .screenrc
Last active May 8, 2018 07:11
Favorite utility & configs
받을 때 주의사항! 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
AVD image 저장 path 설정 등을 위해 환경변수를 생성하여 설정
ANDROID_SDK_HOME
D:\adt-bundle-windows-x86_64\sdk
작업표시줄 고정 아이템 위치
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"
@yitsup2u
yitsup2u / nice
Last active August 29, 2015 14:06
nice : linux command, process priority
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.