mount is a command used to attach the file data structure of a device as a branch of the root tree.
Questions tagged [mount]
1753 questions
0
votes
1 answer
How can I determine the files system type of external storage in Android?
I'm writing an application that writes a file to a USB flash drive (via USB OTG), which will then be removed from the phone and used elsewhere (which only supports FAT32). I need to be able to determine if the external storage is formatted…

migueljuan
- 437
- 1
- 3
- 15
0
votes
1 answer
CodeIgniter Route works over CIFS mount but not with local files
our dev environment at work uses a single centos machine with apache/php that serves different virtual hosts for both CIFS mounted and local directories. our application is built using CodeIgniter 2.0
we recently made a change to our Routes that is…

Jon B
- 497
- 1
- 9
- 25
0
votes
3 answers
mount failed, reason given by server: Permission denied
I am using centos. I am trying to mount a server directory to the local directory.
server:10.10.10.1
client:10.10.10.2
the /etc/exports at the server has this content
/logs/user *(rw,sync,no_root_squash,no_subtree_check)
When I run the command #…

ASON
- 111
- 1
- 1
- 4
0
votes
1 answer
Loading pictures from mounted drives in laravel
I'm looking for a way to display images, which are stored on mounted drives, in a laravel application we are building. As these drives are outside the laravel folder itself I so far have been unable to find a solution as storage doesn't seem to…

user1664
- 481
- 1
- 7
- 6
0
votes
1 answer
CIFS Mount Input/Output Errors With Windows 7 Share
I spent several days trying to solve this, so I'm going to post both the question and answer for the next person.
In CentOS 7, mounting a folder shared by Windows 7 with the following command:
mount -t cifs //MyWindowsPC/SharedFolder $MOUNTPOINT…

user1777820
- 728
- 9
- 29
0
votes
1 answer
cannot create a shared-volume mount via 'emptyDir' on single node kubernetes (on centos), but this works with multi-node k8s installation
TL;DR - The solution to the problem, thanks to Paul
If you have the problem described below, the easiest way to solve it is to execute the following command before running the Recipe to boot single node k8s:
sudo chcon -Rt…

Chris Bedford
- 2,560
- 3
- 28
- 60
0
votes
2 answers
how to move files from remote server to s3 at the command line
I have a lot of big files on a remote server and I want to move them into S3. I want to do it at the command line or with a bash script (e.g., I do NOT want to use a gui app like cyberduck) so that I can automate/replicate efforts.
I have tried…

ansonw
- 1,559
- 1
- 16
- 22
0
votes
1 answer
C++ Check if mount path is still mounted
I have the details of the mount path (specifically mount prefix) as obtained using getmntent
in the structure as defined below:
struct mntent {
char *mnt_fsname; /* name of mounted file system */
char *mnt_dir; /* file system path…

Namitha
- 355
- 1
- 6
- 17
0
votes
1 answer
Raspberry pi: can't share file using NFS
I can't share files between my desktop (as an NFS server, os: ubuntu 14.04) and my Rasberry pi (as NFS client, os: Raspbian jessie)
what I did is the following:
Server Side
apt-get install nfs-kernel-server
mkdir -p /export/egmintel
mount --bind…

sabrina2020
- 2,102
- 3
- 25
- 54
0
votes
1 answer
Wicket 7.x handle external resource directory/file requests
I wanna handle requests to image resources like this:
The key "images" is an alias for a mounted resource somewhere on my local hard drive:
/base/path/to/all/images
that contains the…


Mekose
- 9
- 2
0
votes
1 answer
Cannot allow access www-data user and group to external hard drive
I am trying to place a uploads folder on an external hard drive. When I run the commands below I still get access denied for www-data.I even chmod 777 the folder. Any Suggestions? I am using Ubuntu 15.04
chown -R www-data:www-data…

varcor
- 63
- 1
- 2
- 10
0
votes
0 answers
AIX - creating and mounting a FS
I create a FS on AIX6 easily with 3 commands. The procedure that i follow is:
1- mklv ..........
2- crfs (with -m mountpoint) ........
3- mount .......
But when i have tried the same procedure on AIX7, i got the following error:
mount: 0506-324…

Jai
- 167
- 1
- 10
0
votes
1 answer
Oracle .DBF Files. How to Open and Run Select Statements?
We have an Inventory Web Application and an Oracle Database
Oracle Version.. as I see in SQL Plus:
Connected to:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release…

ihightower
- 3,093
- 6
- 34
- 49
0
votes
1 answer
adb push Launcher.apk system/app failed
I want to push a Launcher.apk to system/app, but it failed.
(1) No error message,
(2) it looks successful,
(3) but it didn't change anything after I reboot my device.
following command I used:
adb remount
adb push Launcher.apk system/app/
but it's…

steve Lee
- 11
- 3
0
votes
3 answers
Automount windows share in ubuntu 14.04 LTS
I know there are many threads about it on the internet, I tried many of them, but I swear, none solved my problem :(
I work on a Ubuntu 14.04 LTS, and we have a Windows server where there is a shared folder which we use as a server for…

Cleiton Souza
- 811
- 1
- 10
- 21