8 More Discussions You Might Find Interesting
1. UNIX for Beginners Questions & Answers
Hi there,
I have a mount point that is locked.
How do I unlocked it? (1 Reply)
Discussion started by: alvinoo
1 Replies
2. UNIX for Beginners Questions & Answers
How to create a new mount point with 600GB and add 350 GBexisting mount point
Best if there step that i can follow or execute before i mount or add diskspace IN AIX
Thanks (2 Replies)
Discussion started by: Thilagarajan
2 Replies
3. Shell Programming and Scripting
Hi,
I have to find a mount point called... /opt/recall on multiple servers.. .Could someone give me a suggestion on how I could do this? (2 Replies)
Discussion started by: gartie
2 Replies
4. Shell Programming and Scripting
Gents,
I needs to delete duplicate values and only get uniq values based in columns 2-27
Always we should keep the last record found...
I need to store one clean file and other with the duplicate values removed.
Input :
S3033.0 7305.01 0 420123.8... (18 Replies)
Discussion started by: jiam912
18 Replies
5. UNIX for Dummies Questions & Answers
I have a group of files in different directories with characters such as " ? : in the file names. How do I find these files and remove these characters on mass?
Thanks (19 Replies)
Discussion started by: barrydocks
19 Replies
6. Shell Programming and Scripting
Hello Gurus,
O/S RHEL4
I have a requirement to compare two linux based directories for duplicate filenames and remove them. These directories are close to 2 TB each. I have tried running a:
Prompt>diff -r data1/ data2/
I have tried this as well:
jason@jason-desktop:~$ cat script.sh ... (7 Replies)
Discussion started by: jaysunn
7 Replies
7. UNIX for Dummies Questions & Answers
I have a problem where tar is somehow creating duplicate filenames when tarring a directory. Doing an ls on the directory does not show any duplicate filenames, yet when the directory is tarred, you can see that there are duplicates:
bash-2.03# pwd
/var/log/cricket
bash-2.03# ls -1 | sort |... (2 Replies)
Discussion started by: dangral
2 Replies
8. UNIX for Dummies Questions & Answers
hi people,
I'm trying to create a mount point, but am having no sucess at all, with the following:
mount -F ufs /dev/dsk/diskname /newdirectory
but i keep getting - mount-point /newdirectory doesn't exist.
What am i doing wrong/missing?
Thanks
Rc (1 Reply)
Discussion started by: colesy
1 Replies
MOUNT(2) System Calls Manual MOUNT(2)
NAME
mount, umount - mount or umount a file system
SYNOPSIS
#include <unistd.h>
#include <sys/mount.h>
int mount(char *special, char *name, int flag)
int umount(char *name)
DESCRIPTION
Mount() tells the system that the file system special is to be mounted on the file name, effectively overlaying name with the file tree on
special. Name may of any type, except that if the root of special is a directory, then name must also be a directory. Special must be a
block special file, except for loopback mounts. For loopback mounts a normal file or directory is used for special, which must be seen as
the root of a virtual device. Flag is 0 for a read-write mount, 1 for read-only.
Umount() removes the connection between a device and a mount point, name may refer to either of them. If more than one device is mounted
on the same mount point then unmounting at the mount point removes the last mounted device, unmounting a device removes precisely that
device. The unmount will only succeed if none of the files on the device are in use.
Both calls may only be executed by the super-user.
SEE ALSO
mount(1), umount(1).
AUTHOR
Kees J. Bot (kjb@cs.vu.nl)
MOUNT(2)