- Disable Wifi (Uncheck Enable Wi-Fi)
- Go to network connection (Edit Connections...)
- Click "Add"
- Choose "Wi-Fi" and click "Create"
- Type in Connection name like "wifi-hotspot"
- Type in SSID as you wish
- Choose Device MAC Address from the dropdown (wlan0)
- Wifi Security select "WPA & WPA2 Personal" and set a password.
- Go to IPv4 Settings tab, from Method drop-down box select Shared to other computers.
- Then save and close.
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
#!/bin/bash | |
folders='Compressed Documents Images Music Programs Videos' | |
ext_comp="*.zip *.tar.gz *.tgz *.rar *.7z" | |
ext_doc="*.htm* *.php *.txt *.css *.doc* *.pdf *.PDF *.ppt* *.js *.csv" | |
ext_font="*.ttf" | |
ext_img="*.jp*g *.JPG *.png *.gif" | |
ext_music="*.mp3 *.aac *.wma" | |
ext_progrm="*.deb *.exe *.run *.sh" | |
ext_vid="*.mp4 *.mkv *.flv *.avi *.webm *.wmv" |
Get latest changes from master to branch
git checkout piash # gets you "on branch piash"
git fetch origin # gets you up to date with origin
git merge origin/master
Merge detached head to origin/master
git checkout master && git merge [ref of HEAD] # ref of HEAD = latest hash of detached head
NewerOlder