uts服務器是linux系統.命令行方式,打開matlab,必須用命令行方式啟動matlab, 不像windows雙擊打開matlab(Pycharm可以雙擊運行;tensorflow是一個工具包,不是雙擊可運行);打開matlab后,打開相應的m文件用右鍵open比較容易打開,雙擊相應的m文件不太容易打開

程序dataName = '..\Parmprint.mat';要改為dataName = '../Parmprint.mat';linux中路徑使用反斜杠'/'widows中正斜杠和反斜杠都可以,編程序最好都使用反斜杠。

linux系統中輸入密碼,密碼是顯示不出來的,不要以為沒輸入進去.
matlab的拷貝復制,采用Ctrl+C和
Ctrl+V,設置:preference->keyboard->shortcut->Active settings選擇Windows Default set即可。

pwd:
Linux中用 pwd 命令來查看”當前工作目錄“的完整路徑。 簡單得說,每當你在終端進行操作時,你都會有一個當前工作目錄。 在不太確定當前位置時,就會使用pwd來判定當前目錄在文件系統內的確切位置。見:http://www.cnblogs.com/peida/archive/2012/10/24/2737730.html

ls: ls命令就是list的縮寫,缺省下ls用來打印出當前目錄的清單,如果ls指定其他目錄,那么就會顯示指定目錄里的文件及文件夾清單。見: http://www.9usb.net/201005/linux-ls.html 
clear:這個命令將會刷新屏幕,本質上只是讓終端顯示頁向后翻了一頁,如果向上滾動屏幕還可以看到之前的操作信息。一般都會用這個命令。
cd .. :返回上一層目錄,注意"cd"和".."之間有空格
mkdir用來創建指定的名稱的目錄。例如mkdir rst就是創建rst這個目錄

How do we install software in Ubuntu?
Guangtao Wang said that we need to use commands to install most softwares and we can use double click as Windows to install a few softwares. For example, if you want to install PyCharm, search "Ubuntu PyCharm install" and there will be instructions to show you how to use commands to install PyCharm step by step. If you want to learn Ubuntu commands, search "Ubuntu commands".
rm: Use this command to remove or delete a file in your directory.這是命令行方式,右鍵Move to Trash也行。不知怎么刪除文件夾, 20180410自己到谷歌搜索: linux remove folder, 第一個網頁https://www.computerhope.com/issues/ch000798.htm,用如下命令即可:

When attempting to remove a directory using a command such as the rmdir command, you may receive a prompt such as "rmdir: 'dir': Directory not empty" and be unable to delete the directory.To remove a directory that contains other files or directories, use the following command.

rm -r mydir

rm -rf rst
rst is a folder (文件夾). Zhengxia said that r好像是到根目錄root;f好像是不提示任何信息。所以慎用rf。上句的意思就是刪除rst文件夾

rm –rf logfile model    是logfile和model兩個文件夾,也可以分兩句寫
rm –rf logfile
rm –rf model


Guangtao Wang 20180330和我說Ubuntu打開matlab和windows完全一樣,說相信他,程序完全一樣,因為這個是matlab在不同的系統windows和linux,應該是一樣的,就像Java一樣具有平臺兼容性。都用反斜杠即可。他說linux常見系統Ubuntu和Redhat,他的是Ubuntu. Ubuntu是基于Linux系統。
打開matlab, 目錄在Computer/usr/local/MATLAB/R2017a/bin.可以用cd不斷定位;Guangtao Wang建議的另一種方式: 通過左側的Files -> Computer -> usr不斷打開目錄直到bin
./matlab 就能運行了。有的目錄不能new folder,比如usr/local/MATLAB/R2017a/bin。Guangtao說安裝的軟件一般都在usr/local/目錄下面,這是默認目錄。
其他一些使用方法,見電腦"Umich\server\服務器"

其實linux應該無所謂,因為澳洲服務器也是linux.
怎么重啟?shutdown里面有restart
Ubuntu能同時打開多個目錄嗎?
可以,將原來的窗口最小化。通過左側的Files,右鍵open new window -> 即可。再單擊Files,所有的窗口都會出現。
Terminal一樣,可以同時打開多個Terminal,將原來的窗口最小化,再單擊Terminal,所有的命令窗口都會出現。得到Guangtao確認。
guangtao電腦回收站的位置:點File,左側有Trash

"YeLab-Servers Note", Section 3