FAQ Search Today's Posts Mark Forums Read
» Video Reviews

» Linux Archive

Linux-archive is a website aiming to archive linux email lists and to make them easily accessible for linux users/developers.


» Sponsor

» Partners

» Sponsor

Go Back   Linux Archive > Ubuntu > Ubuntu User

 
 
LinkBack Thread Tools
 
Old 07-30-2012, 08:50 PM
Linda
 
Default fstab and mounting filesystems in 12.04

I have a fstab entry in 12.04 LTS

ip-address:/filename mountpoint nfs
noauto,users,rw,hard,intr


Having this entry in the previous LTS version would allow
any user to mount the network file system, however when a
user tries to mount the file system with 12.04 they receive
an error message telling them they must be root to mount the
file system.
I checked the fstab man pages and it looked like users
should be user so I changed this and rebooted but a regular
user still can't mount the file system. Does anyone know
what I need to change to get this working with 12.04. I
really would like normal users to be able to mount and
umount the nfs file systems.


Thank you
Linda

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 07-31-2012, 02:57 PM
Tom H
 
Default fstab and mounting filesystems in 12.04

On Mon, Jul 30, 2012 at 4:50 PM, Linda <haniganwork@earthlink.net> wrote:
>
> I have a fstab entry in 12.04 LTS
>
> ip-address:/filename mountpoint nfs noauto,users,rw,hard,intr
>
> Having this entry in the previous LTS version would allow any user to mount
> the network file system, however when a user tries to mount the file system
> with 12.04 they receive an error message telling them they must be root to
> mount the file system.
> I checked the fstab man pages and it looked like users should be user so I
> changed this and rebooted but a regular user still can't mount the file
> system. Does anyone know what I need to change to get this working with
> 12.04. I really would like normal users to be able to mount and umount the
> nfs file systems.

Check with pkaction whether there's a difference between 10.04 and 12.04.

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 07-31-2012, 03:20 PM
Colin Law
 
Default fstab and mounting filesystems in 12.04

On 30 July 2012 21:50, Linda <haniganwork@earthlink.net> wrote:
> I have a fstab entry in 12.04 LTS
>
> ip-address:/filename mountpoint nfs noauto,users,rw,hard,intr
>
> Having this entry in the previous LTS version would allow any user to mount
> the network file system, however when a user tries to mount the file system
> with 12.04 they receive an error message telling them they must be root to
> mount the file system.
> I checked the fstab man pages and it looked like users should be user so I
> changed this and rebooted but a regular user still can't mount the file
> system. Does anyone know what I need to change to get this working with
> 12.04. I really would like normal users to be able to mount and umount the
> nfs file systems.

What is the command the user is using to mount the fs, and exactly
what is the error message? Ideally copy/paste from terminal.

Colin

>
> Thank you
> Linda
>
> --
> ubuntu-users mailing list
> ubuntu-users@lists.ubuntu.com
> Modify settings or unsubscribe at:
> https://lists.ubuntu.com/mailman/listinfo/ubuntu-users

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 07-31-2012, 04:15 PM
Linda
 
Default fstab and mounting filesystems in 12.04

On 07/31/2012 10:20 AM, Colin Law wrote:

On 30 July 2012 21:50, Linda <haniganwork@earthlink.net> wrote:

I have a fstab entry in 12.04 LTS

ip-address:/filename mountpoint nfs noauto,users,rw,hard,intr

Having this entry in the previous LTS version would allow any user to mount
the network file system, however when a user tries to mount the file system
with 12.04 they receive an error message telling them they must be root to
mount the file system.
I checked the fstab man pages and it looked like users should be user so I
changed this and rebooted but a regular user still can't mount the file
system. Does anyone know what I need to change to get this working with
12.04. I really would like normal users to be able to mount and umount the
nfs file systems.

What is the command the user is using to mount the fs, and exactly
what is the error message? Ideally copy/paste from terminal.

Colin



The command is actually a bash script that normal users call
from a menu. Here is the line from the file


mount 192.168.1.19:/usr/local/lib/letters /usr/local/letters

When I run it as a normal user in 12.04 I get
mount: only root can do that.

The script file works fine for sudo and it works fine for
regular users on the 10.04 LTS machines I want all of my
users to be able to mount nfs filesystems and I do not want
them to have admin privileges which is why I have the fstab
entry which has worked perfectly for all previous versions


Linda

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 07-31-2012, 04:33 PM
Colin Law
 
Default fstab and mounting filesystems in 12.04

On 31 July 2012 17:15, Linda <haniganwork@earthlink.net> wrote:
> On 07/31/2012 10:20 AM, Colin Law wrote:
>>
>> On 30 July 2012 21:50, Linda <haniganwork@earthlink.net> wrote:
>>>
>>> I have a fstab entry in 12.04 LTS
>>>
>>> ip-address:/filename mountpoint nfs noauto,users,rw,hard,intr
>>>
>>> Having this entry in the previous LTS version would allow any user to
>>> mount
>>> the network file system, however when a user tries to mount the file
>>> system
>>> with 12.04 they receive an error message telling them they must be root
>>> to
>>> mount the file system.
>>> I checked the fstab man pages and it looked like users should be user so
>>> I
>>> changed this and rebooted but a regular user still can't mount the file
>>> system. Does anyone know what I need to change to get this working with
>>> 12.04. I really would like normal users to be able to mount and umount
>>> the
>>> nfs file systems.
>>
>> What is the command the user is using to mount the fs, and exactly
>> what is the error message? Ideally copy/paste from terminal.
>>
>> Colin
>>
>
> The command is actually a bash script that normal users call from a menu.
> Here is the line from the file
>
> mount 192.168.1.19:/usr/local/lib/letters /usr/local/letters
>
> When I run it as a normal user in 12.04 I get
> mount: only root can do that.
>
> The script file works fine for sudo and it works fine for regular users on
> the 10.04 LTS machines I want all of my users to be able to mount nfs
> filesystems and I do not want them to have admin privileges which is why I
> have the fstab entry which has worked perfectly for all previous versions

I think you should only need to do
mount /usr/local/letters
as the rest is in fstab, does that fail in the same way?

Colin

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 
Old 07-31-2012, 06:23 PM
Linda
 
Default fstab and mounting filesystems in 12.04

On 07/31/2012 11:33 AM, Colin Law wrote:

On 31 July 2012 17:15, Linda <haniganwork@earthlink.net> wrote:

On 07/31/2012 10:20 AM, Colin Law wrote:

On 30 July 2012 21:50, Linda <haniganwork@earthlink.net> wrote:

I have a fstab entry in 12.04 LTS

ip-address:/filename mountpoint nfs noauto,users,rw,hard,intr

Having this entry in the previous LTS version would allow any user to
mount
the network file system, however when a user tries to mount the file
system
with 12.04 they receive an error message telling them they must be root
to
mount the file system.
I checked the fstab man pages and it looked like users should be user so
I
changed this and rebooted but a regular user still can't mount the file
system. Does anyone know what I need to change to get this working with
12.04. I really would like normal users to be able to mount and umount
the
nfs file systems.

What is the command the user is using to mount the fs, and exactly
what is the error message? Ideally copy/paste from terminal.

Colin


The command is actually a bash script that normal users call from a menu.
Here is the line from the file

mount 192.168.1.19:/usr/local/lib/letters /usr/local/letters

When I run it as a normal user in 12.04 I get
mount: only root can do that.

The script file works fine for sudo and it works fine for regular users on
the 10.04 LTS machines I want all of my users to be able to mount nfs
filesystems and I do not want them to have admin privileges which is why I
have the fstab entry which has worked perfectly for all previous versions

I think you should only need to do
mount /usr/local/letters
as the rest is in fstab, does that fail in the same way?

Colin


Thank you that solves the problem.
Linda

--
ubuntu-users mailing list
ubuntu-users@lists.ubuntu.com
Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-users
 

Thread Tools




All times are GMT. The time now is 10:28 PM.

VBulletin, Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2007 - 2008, www.linux-archive.org