Linux其它工具軟體安裝
● For Capture screenshot:
// Auto install scrot
vm@vm:~$ apt-get --assume-yes install scrot
Command line example scrot:
(http://www.tecmint.com/take-screenshots-in-linux-using-scrot/)
// Take Specific Window Screen Shot
vm@vm:~$ scrot -s /home/tecmint/Window.jpg
// Adjusting the Image Quality
vm@vm:~$ scrot -q 90 /home/tecmint/Quality.jpg
● For connect windows server share folder:
// Auto install cifs-utils
vm@vm:~$ apt-get --assume-yes install cifs-utils
Command line example cifs-utils:
// connect to share folder
vm@vm:~$ mount -t cifs //Win-ipaddress/DirName /home/Linux-DirPath/ -o rw,user=,passowrd=,file_mode=0777,dir_mode=0777,iocharset=utf8
// disconnect to share folder
vm@vm:~$ umount -a -t cifs -l
Reference:
http://www.tecmint.com/take-screenshots-in-linux-using-scrot/
No comments:
Post a Comment