Questions tagged [mount]

Mounting is the concept of attaching a file system to a computer for access.

A mount is the process of attaching a file system to a computer so that it can be accessed. Depending on the operating system, a mount could be local or remote, via a network, read-only or read-write, or many other options.

1212 questions
0
votes
1 answer

Unalterable folder or path to keep a mount point on Linux

I need to mount a tmpfs on a folder like /home/mysite.com/cache but this folder can be delete or changed by a user, but I don't want that the mounted filesystem become broken. Then if the user moves this folder to /home/mysite.com/cache_old and…
Xorax
  • 348
  • 4
  • 12
0
votes
3 answers

how to reset root password in ubuntu server

We seem to have misplaced the root password for a dedicated server we have (with OVH). I asked them for instructions on how to reset the root password and this is what they said: Reboot in rescue mode login via ssh (using info provided in an…
Jon
  • 161
  • 1
  • 1
  • 5
0
votes
1 answer

Mount dell perc (megaraid) partitions on linux box without hardware raid

I have sata hard disk extracted from Dell server with perc 5i. I need to save data on another linux box, without hardware raid. Is it possible? How? I know there are two partitions on this disk, but when I connect it, "cfdisk" show me only one, and …
Korjavin Ivan
  • 2,250
  • 2
  • 26
  • 41
0
votes
1 answer

NFS not working on bonded NFS interface - mount.nfs: No such device

We have an error message when trying to mount NFS on a RHEL server. NFS works fine on all our other servers, but not on 2 freshly kickstarted servers with the error "mount.nfs: No such device". [root@tst-03 ~]# mount -o udp -t nfs…
ujjain
  • 3,983
  • 16
  • 53
  • 91
0
votes
1 answer

Mounting NFS Folder on to a Remote Machine (Both machines are on Red Hat Linux)

I'm a newbie to Linux and would need some advice on the thing I'm trying to achieve with regards to mounting a NFS Folder I have a NFS Server: usanfsd01 And a remote machine: usafssd01 I've a software installed on my remote machine "usafssdo1" and…
user1345260
  • 111
  • 3
  • 4
0
votes
1 answer

How can I use a temporary file descriptor with ecryptfs?

I'd like to be able to run a script, have it prompt me for my password, and then mount an ecryptfs directory. I do not want the password to sit around on the file system, or show up in logs, ps, etc. I thought I could use a temporary file descriptor…
Willi Ballenthin
  • 365
  • 1
  • 2
  • 11
0
votes
1 answer

Error while mounting partition with Live CD

While booting my system, It is going into initramfs prompt and it is giving some error. Before taking any further steps, I planned to take a backup my data from hard disk. So, I bootted the system with Live CD. When, I trying to mount the…
sat
  • 1,273
  • 4
  • 13
  • 14
0
votes
2 answers

What causes partitions to be mounted at boot?

I'm upgrading machines from Debian Squeeze to Wheezy. I do all the setup with FAI - disks, packaging, everything. So they come up ready for production. Its all good. One particular machine has two extra ext4 partitions for database storage. FAI is…
Rob N
  • 131
  • 4
0
votes
1 answer

What's the best way to mount a file share for a CentOS-based webserver?

I use CentOS with Apache and PHP5 to make web development servers. Files (html, php, js, etc...) are located on a network file share (SMB) : So, basically, developpers work on Windows workstations in network drives. Files are hosted on the file…
mimipc
  • 1,947
  • 3
  • 19
  • 27
0
votes
1 answer

mount -t cifs with krb5i

I am trying to mount a windows 2008 R2 share on my centos6 64 server and am getting the following message as a response to the mount: mount -t cifs //esb.local/dfs /mnt/win --verbose -o…
Micha Roon
  • 294
  • 1
  • 2
  • 10
0
votes
2 answers

How to remember a mount point

I am using Red Hat Enterprise 6.3 and I have just mounted a new volume in one folder of my preference. After reboot that mount point was lost and the volume was mounted at his original place. In which place I can set my mount call so that I can…
0
votes
2 answers

Proxmox 2.3 don't use mount script

I am running proxmox 2.3 Since I installed proxmox on a new server I definitely can't use mount and unmount script on a container and I don't know why. Proxmox just doesn't read those scripts. Here are the 2 scripts with +x rights : [root@prox…
Florent
  • 31
  • 1
  • 5
0
votes
2 answers

How to boot copied partition

I have just ghosted an Ubuntu (12.04) instance from a 200GB HD to a 1TB HD. The ghosted instance has two mounted storage partitions both of about 100GB each and I have the following partition table: Partition File System Mount…
travega
  • 206
  • 1
  • 2
  • 9
0
votes
1 answer

mount.cifs error 14 but smbclient works

I have a debian server and I want to mount an external Win2008R2 share using cifs. I get: error 14: bad address. Using the same arguments with smbclient I can connect with success and browse share content. my command is: $ mount -t cifs…
Mauro Destro
  • 111
  • 4
0
votes
2 answers

Linux mount to dir and transfer content to mounted device

I would like to mount an external network disk to a folder, but I would like to keep the content of the folder (so in this case it would go to the network folder.) For example: I have a folder: /var/mount_me/file.txt I would mount to: /var/mount_me…