0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

QNAPとUbuntu Linux Station

Last updated at Posted at 2024-07-12

QNAP側でNFSを有効に

[ControlPanel]
- [ネットワークとファイルサービス]
- [Win/Mac/NFS/WebDAV]
- [NFSサービス]
チェックON=[ネットワークファイルシステム(NFS)サービスを有効にする]
チェックON=[NFSv2とNFSv3]

QNAP側でSSHServerを有効に

[ControlPanel]
- [ネットワークとファイルサービス]
- [Telnet/SSH]
チェックON=[SSH接続を許可する(管理者だけがリモートログインできます。)]
ポート番号[22]
チェックOFF=[SFTPを有効にする]
[アクセス許可の編集]=adminとsshする管理者ユーザ名を登録

Ubuntu側にSSHServerをインストール

sudo apt -y install openssh-server

ステータスを確認

sudo systemctl status ssh

UbuntuからQNAPのPublicフォルダをマウント

NFSクライアントを準備

$ sudo apt -y install nfs-common
$ mkdir -p /nfs/Public
$ vi /etc/fstab
# UNCONFIGURED FSTAB FOR BASE SYSTEM
TS-464-1:/Public /nfs/Public nfs defaults 0 0
$ sudo mount /nfs/Public
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?