个人工具

UbuntuHelp:MountingNovellNetworkDrives

来自Ubuntu中文

跳转至: 导航, 搜索

Introduction

Many people need to access their Novell network drives from within Ubuntu. This page describes how to mount your Novell network drives so that you can read and write to them.

Install Required Packages

Novell servers use the NCP protocol for network drives. We need to install support for this protocol by installing some packages.

  1. You must enable|the Universe repository before installing these packages.
  2. Click on "System>Administration>Synaptic Package Manager" to start Synaptic.
  3. Search for "ncpfs"
  4. Choose to install "ncpfs"
  5. Click "Apply" and allow it to install any required dependencies

Create a directory that will become the network drive

  1. Create a new directory called "novell"
  • Click on: "Applications>Accessories>Terminal"
  • Run this command: "sudo mkdir /mnt/novell"
  1. Change permissions so that your user can access it
  • Run this command: "sudo chown yourusername:yourusername /mnt/novell"

o Be sure to use your actual username on the Linux system

  1. Create a link so the folder will be available on your desktop
  • Run this command: "ln -s /mnt/novell/ /home/yourusername/Desktop/novell"

o Be sure to use your actual username on the Linux system

Create a desktop launcher to mount the network drive

Your system is now ready for you to mount the Novell network drives. This can be done at the command prompt, but most users will want to create desktop icons to mount and unmount their network drives.

  1. Right-click on the desktop and choose "Create launcher"
  2. Click on "Icon" and choose the picture of the green apple. (Green is for GO)
  3. Click on the "Command" tab and select "Application in terminal"
  4. Paste this command into the field labeled "Command"
  • ncpmount -S yourservername -A yourservernamefqdn -U novellusername -V volumename -u linuxusername /mnt/novell/
  • (Be sure to edit each of the fields with your information)

Create a desktop launcher to unmount the network drive

Once the network drive is mounted, you may want to unmount the drive. To do this, we can create another desktop launcher to run the unmount command.

  1. Right-click on the desktop and choose "Create launcher"
  2. Click on "Icon" and choose the picture of the red apple. (Red is for STOP)
  3. Click on the "Command" tab and select "Application in terminal"
  4. Paste this command into the field labeled "Command"
  • ncpumount /mnt/novell/

For more information (including screenshots) go to this blog: How to mount Novell network drives Note: The content on this page should be merged with AccessingNetwareShares.