加入收藏 | 设为首页 | 会员中心 | 我要投稿 台州站长网 (https://www.0576zz.cn/)- 边缘计算、中间件、数据处理、数据分析、智能存储!
当前位置: 首页 > 综合聚焦 > Linux > 正文

Mount NAS Storage in Linux Overview 转载

发布时间:2020-09-16 06:10:22 所属栏目:Linux 来源:互联网
导读:Mount NAS Storage in LinuxOverviewMounting your NAS Storage to a device that runs on a Linux-based O

<h1 class="title">Mount NAS Storage in Linux

OverviewMounting your NAS Storage to a device that runs on a Linux-based Operating System can be done using a series of simple commands in the shell or terminal within the OS. This procedure outlines the steps required to mount NAS Storage on any of the following operating systems:

  • RedHat Enterprise Linux
  • CentOS
  • CloudLinux
  • Debian
  • Ubuntu

Please note that while the majority of steps apply to all of the operating systems listed above,the commands required to determine if your CIFS utility is installed on Debian and Ubuntu are unique. Follow the steps below to mount NAS Storage to your Linux-based OS.

Mount NAS Storage

    1. Determine if the OS on your device is RedHat Enterprise Linux,CentOS or CloudLinux -OR- Debian or Ubuntu.
If your device is running…

</td>
<td valign="top" width="613">

Then…

</td>

</tr>
<tr>
<td valign="top" width="399">

RedHat Enterprise Linux,CentOS or CloudLinux

</td>
<td valign="top" width="613">

Determine if the cifs-utils utility is installed by running the following command:

root@slnastest [~]# rpm -q cifs-utilsNote: If cifs-utils is not installed,the following message will appear:

package cifs-utils is not installed

  • If cifs-utils is installed,proceed to the next step.
  • If cifs-utils is not installed,install the utility using the following command:

root@slnastest [~]# yum
install cifs-utils

</td>

</tr>
<tr>
<td valign="top" width="399">

Debian or Ubuntu

</td>
<td valign="top" width="613">

Determine if the cifs-utils utility is installed by running the following command:

root@slnastest:~# dpkg-query -S cifs-utils

Note: If cifs-utils is not installed,the following message will appear:

dpkg-query: no path found matching pattern *cifs-utils*.

  • If cifs-utils is installed,proceed to the next step.
  • If cifs-utils is not installed,install the utility using the following command:

root@slnastest [~]# apt-get install
cifs-utils
root@slnastest:~# dpkg-query -S cifs-utils
cifs-utils: /usr/share/doc/cifs-utils
cifs-utils: /usr/share/doc/cifs-utils/changelog.gz
cifs-utils: /usr/share/doc/cifs-utils/NEWS.Debian.gz
cifs-utils: /usr/share/doc/cifs-utils/changelog.Debian.gz
cifs-utils: /usr/share/doc/cifs-utils/copyright

</td>

</tr>

  1. Create the directory and mount the device using the following commands:
    mkdir /local/mountpointmount -t cifs //Hostname/Username -o username=username,password=password,rw,nounix,iocharset=utf8,file_mode=0644,dir_mode=0755 /mnt Example: root@slnastest [~]# mkdir /mnt/nas root@slnastest [~]# mount -t cifs //nas05.service.softlayer.com/SL12345-1 -o username=SL12345-1,password=NASPASSWORD rw,dir_mode=0755 /mnt/nas root@slnastest [~]# df -Th /mnt/nas/Filesystem Type Size Used Avail Use% Mounted on //nas05.service.softlayer.com/SL12345-1 cifs 54T 49T 5.3T 91% /mnt/nas
  2. Determine if the NAS should mount on reboot.
If the NAS should…

</td>
<td valign="top" width="613">

Then…

</td>

</tr>
<tr>
<td valign="top" width="399">

Mount on reboot

</td>
<td valign="top" width="613">

Add the following command to the /etc/fstab file:

//nas05.service.softlayer.com/SL12345-1 /mnt/nas cifs defaults,username=SL12345-1,password=NASPASSWORD 0 0

</td>

</tr>
<tr>
<td valign="top" width="399">

Not mount on reboot

</td>
<td valign="top" width="613">

Proceed to the next step.

</td>

</tr>

  1. Unmount and mount the NAS to verify that the fstab was edited correctly. Refer to the table below for the unmount and mount commands.

</td>
<td valign="top" width="613">
<p align="center">Command

</td>

</tr>
<tr>
<td valign="top" width="399">

Unmount the NAS

</td>
<td valign="top" width="613">

root@slnastest [~]# umount /mnt/nas/

root@slnastest [~]# df -Th /mnt/nas

Filesystem Type Size Used Avail Use% Mounted on

/dev/xvda2 ext3 25G 4.6G 19G 20% /

</td>

</tr>
<tr>
<td valign="top" width="399">

Mount the NAS

</td>
<td valign="top" width="613">

root@slnastest [~]# mount /mnt/nas/

root@slnastest [~]# df -Th /mnt/nas/

Filesystem Type Size Used Avail Use% Mounted on

//nas05.service.softlayer.com/SL12345-1

cifs 54T 49T 5.3T 91% /mnt/nas

</td>

</tr>

(编辑:台州站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!