Requirement | ZenBook Pro |
---|---|
8 Core CPU | Intel® Core™ i7-6700HQ Processor |
16 GB of RAM | Yes, extendable upto 64GB |
Nvidia GPU | NVIDIA® GeForce® GTX 960M |
4K Display | 15.6'' 16:9 IPS UHD (3840 x 2160) |
Trackpad | Elan Touchpad |
Touch Screen | Yes |
WebCam | HD Webcam |
Speakers | Built-in 2 Speaker(s) And Array Microphone |
This file contains 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
xinput --set-prop 15 171 4.000000, 0.000000, 0.000000, 0.000000, 5.000000, 0.000000, 0.000000, 0.000000, 1.000000 |
This file contains 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
xinput --list-props 13 | |
Device 'Elan Touchpad': | |
Device Enabled (169): 1 | |
Coordinate Transformation Matrix (171): 1.000000, 0.000000, 0.000000, 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 1.000000 | |
libinput Tapping Enabled (306): 1 | |
libinput Tapping Enabled Default (307): 0 | |
libinput Tapping Drag Enabled (308): 1 | |
libinput Tapping Drag Enabled Default (309): 1 | |
libinput Tapping Drag Lock Enabled (310): 0 | |
libinput Tapping Drag Lock Enabled Default (311): 0 |
This file contains 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
$xinput | |
⎡ Virtual core pointer id=2 [master pointer (3)] | |
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)] | |
⎜ ↳ USBest Technology SiS HID Touch Controller id=11 [slave pointer (2)] | |
⎜ ↳ Elan Touchpad id=13 [slave pointer (2)] | |
⎜ ↳ Microsoft Basic Optical Mouse id=18 [slave pointer (2)] | |
⎣ Virtual core keyboard id=3 [master keyboard (2)] | |
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)] | |
↳ Power Button id=6 [slave keyboard (3)] | |
↳ Asus Wireless Radio Control id=7 [slave keyboard (3)] |
This file contains 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
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3.5-wily/linux-headers-4.3.5-040305-generic_4.3.5-040305.201601311533_amd64.deb | |
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3.5-wily/linux-headers-4.3.5-040305_4.3.5-040305.201601311533_all.deb | |
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3.5-wily/linux-image-4.3.5-040305-generic_4.3.5-040305.201601311533_amd64.deb | |
sudo dpkg -i linux-headers-4.3.5*deb linux-image-4.3.5*deb |
Setup Mouse/Touchpad speed and configure tap-to-click on the touch pad
xinput --list
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ USBest Technology SiS HID Touch Controller id=11 [slave pointer (2)]
⎜ ↳ Elan Touchpad id=14 [slave pointer (2)]
This file contains 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
set -o vi | |
#stty erase ^H | |
alias xb="xterm -fg lightgreen -bg black -sl 5000 -sb -T dark &" | |
alias xg="xterm -fg lightgreen -bg grey20 -sl 5000 -sb -T dark &" | |
alias xa="xterm -fg black -bg white -sl 5000 -sb -T white &" | |
alias xc='xterm -fg black -bg bisque -sl 5000 -sb -T white &' | |
alias function="typeset -f" |
This file contains 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
# open $HOME/.vimrc | |
vi ~/.vimrc | |
# Enable ftplugin ( File Type Plugin ) in $HOME/.vimrc | |
filetype plugin indent on | |
# save .vimrc file | |
# Create ftplugin folder | |
mkdir -p $HOME/.vim/ftplugin |
This file contains 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://littleosbook.github.io/ |
This file contains 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
# create an UDP server using nc on port 11090 | |
nc -ul 11090 | |
# check whether an UDP server is listening on 11190 | |
nc -vz -u <hostname> 11090 | |
# send a packet to the UDP server | |
echo -n "hello" | nc -4u -w1 <hostname> 1118 |