2016年4月12日 星期二

sshfs on ubuntu / mac os



  • Ubuntu安裝 SSHFS
    • sudo apt-get install sshfs
    • 新增可以使用 SSHFS 的使用者(以帳號hsu0301 為例)
      • usermod -a -G fuse hsu0301
    • 掛載 SSHFS 硬碟
      • 下面的指令把hsu0301@192.168.1.2 的 /home/hsu0301 資料夾,掛到自己電腦的 remote_home資料夾
        • sshfs hsu0301@192.168.1.2:/home/hsu0301 remote_home

  • Mac安裝SSHFS
    • 安裝OSXFUSE & SSHFS
      • https://osxfuse.github.io
    • 掛載 SSHFS 硬碟
      • 下面的指令把hsu0301@192.168.1.2 的 /home/hsu0301 資料夾,掛到自己電腦的 remote_home資料夾
        • sshfs hsu0301@192.168.1.2:/home/hsu0301 remote_home

2016年4月11日 星期一

hsu0301 is not in the sudoers file. This incident will be reported.


1. su

2. visudo

3.下面是添加完的结果。
## Allow root to run any commands anywhere
root    ALL=(ALL)       ALL
hsu0301 ALL=(ALL)       ALL              <----新加入的