12.22.2016

Linux工具軟體安裝




Linux其它工具軟體安裝


● For Capture screenshot:
 // Auto install scrotvm@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 Shotvm@vm:~$ scrot -s /home/tecmint/Window.jpg
 // Adjusting the Image Qualityvm@vm:~$ scrot -q 90 /home/tecmint/Quality.jpg

● For connect windows server share folder:
 // Auto install cifs-utilsvm@vm:~$ apt-get --assume-yes install cifs-utils
Command line example cifs-utils:
 // connect to share foldervm@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 foldervm@vm:~$ umount -a -t cifs -l




Reference:
http://www.tecmint.com/take-screenshots-in-linux-using-scrot/


No comments:

Post a Comment