Hi all,
I'm troubleshooting some CIFS and NFS mounts, and I've noticed that when I mount a server share (e.g.
I have a NAS that i use for backups (using duplicity). I want to mount the NAS using NFS, but unfortunately, I can't guarantee that the NAS will always be running.
I want to get an I/O error when doing the backup if the NFS server is unavailable. Then my home-made script will send me an e-mail telling me to power up the NAS.
I'm trying to mount widows share on my laptop and everything mounts ok but somehow I get permisssion denied when I try to create new file inside mounted folder. I tried noperm, uid, gid, noacl etc. and nothing seems to work. Everyone who use windows mounts share with same credentials have full r/w access.
In providing the same setup in fstab and same mount points as every other distro I use, I cannot get a mount to work at all in Fedora 18 Gold Beta
Everything indicates the mounts are working, mount shows them, mount -a and umount works.
I can edit fstab and run mount -a and the changes are instant
When I try to cd to these mounts, I and su are both told we have no permissions.
Hello
Taskbar and desktop freezes if you have nfs mounted filesystems and nfs server is not responding in opensuse 11.2 (kde4)
When server comes back it works again.
I have removed all applets because I tought Updater Applet (/usr/bin/kupdateapplet) could be the problem removed system panel etc. but it's the same.
Recently Ubuntu 12.04 have started not to remember my keyboard options - as image http://img.ivanovs.info/XKnu0A.png
I always use Caps Lock to change my layout, and it used to work fine before. But now when I log in, changing it with Caps Lock doesn't work. I have to go to options, deselect "Caps Lock", select it again, and then it starts to work.
What may cause this problem?
My fstab configuration has always worked, but recently (and somewhat out of the blue,) my Ubuntu has started to attempt to mount my usb hard-drive twice.
The error is
Unable to mount cloud
Error mounting: mount exited with exit code 1: helper failed with:
mount: according to mtab, /dev/sde1 is already mounted on /media/cloud
mount failed
Where 'Cloud' is the name of my usb hard-drive.
For inf
Hello,
New Ubuntu user here (formerly Fedora), trying to straighten out some NFS issues in a new install of 12.04. Backstory:
1. My system is a custom-built desktop based on Intel hardware, running a new install of Ubuntu 12.04.
2. At boot, /etc/fstab mounts one of my fileservers via NFS3; the fileserver is running CentOS.
3.
I am new at scripting ... I can do very basic stuff, but now I need a hand.
I have a local filesystem that only will be mounted when I need to do a backup.
I'm starting with this.
#!/bin/bash
export MOUNT=/myfilesystem
if grep -qs $MOUNT /proc/mounts; then
echo "It's mounted."
else
echo "It's not mounted."; then
mount $MOUNT;
fi
As I said, I'm very basic at scripting.