1.設定共用資料夾
裝置->共用資料夾->加入共用資料夾
2.在ubuntu建立一個暫存的目錄
$cd /home
$mkdir temp
3.掛載裝置:D_DRIVE為共用資料夾的名稱
#掛載的共享資料夾目錄名稱 ./要掛載的目錄
$sudo mount -t vboxsf D_DRIVE ./temp
4.卸載所有裝置
$umount -a
=====================================================================
Symbol Link
unlink 其實就跟 rm 一樣罷了,當要移除一個 symbolic link ,有時發現怎樣移不掉,一直說 "unkink: my_symbolic_link/ : is a directory" ,這個訊息就跟使用 rm 去移除一個目錄時的錯誤訊息!原來,在移除一個 symbolic link 時,要留意後面不能加個 "/" !這樣,若 symbolic link 是連到一個目錄時,等同於在對那個目錄做 rm 的動作,才會顯示 "is a directory" 訊息。這時可不能一氣之下用 rm -rf !可會將 link 到的目錄給移除掉的!要額外小心。
#目的地是一個檔案
$ ln -s target_file_path my_file_link
$ unlink my_file_link
目的地是一個目錄
$ln -s target_dir my_dir_link
例如:產生在當前目錄下的symbol link
$sudo ln -s /home/temp/mysite.war
$unlink my_dir_link/
$unlink: my_dir_link/: is a directory
$unlink my_dir_link
Done
=====================================================================
MYSQL
#安裝圖形化介面(ubuntu)
$sudo apt-get install mysql-admin
#連接資料庫
$mysql -u root -p
#離開資料庫
mysql>exit
=====================================================================
RM
#移除整個資料夾
$rm -rf 資料夾名
=====================================================================
ifconfig
#列出網路卡資訊
$ifconfig
#設定網路卡ip
$ifconfig eth10 192.168.0.112
=====================================================================
Apache Web Server
#開啟apcahe
$/etc/init.d/httpd start
#關閉apache
$/etc/init.d/httpd stop
#開機啟動檔路徑,可設定開機執行一些shell script指令
$vim /etc/rc.local
=====================================================================
VI
#搜尋
/ <搜尋的字串>
#強制執行存檔
:w ! tee %
#強制離開
:q!
#刪除一行(離開insert模式)
dd
#全刪除
dG
=====================================================================
RM
#移除整個資料夾
$rm -rf 資料夾名
=====================================================================
ifconfig
#列出網路卡資訊
$ifconfig
#設定網路卡ip
$ifconfig eth10 192.168.0.112
=====================================================================
Apache Web Server
#開啟apcahe
$/etc/init.d/httpd start
#關閉apache
$/etc/init.d/httpd stop
#開機啟動檔路徑,可設定開機執行一些shell script指令
$vim /etc/rc.local
=====================================================================
VI
#搜尋
/ <搜尋的字串>
#強制執行存檔
:w ! tee %
#強制離開
:q!
#刪除一行(離開insert模式)
dd
#全刪除
dG
沒有留言:
張貼留言
留個話吧:)