Sponsored Content
Full Discussion: hard links in unix
Top Forums UNIX for Dummies Questions & Answers hard links in unix Post 302343337 by methyl on Wednesday 12th of August 2009 08:13:26 AM
Old 08-12-2009
As hinted by zaxxon , the "find" syntax depends on the Operating System.

Display the inode number of the file with "ls".
Code:
ls -i filename

Inode numbers are only unique within mountpoints.

Then use the "find" command to search the mountpoint containing the file by inode number (-inum number) and use the "find" switch to keep the search within the mountpoint (-xdev in some versions, -mount in some other versions).
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

links: (soft, hard? symbolic??) inode

Hi, what is link? and soft link? how about hard one and symbolic link. and inode. i get confuse about this links. could anyone help me with full explainsion? thks Gusla (5 Replies)
Discussion started by: gusla
5 Replies

2. UNIX for Dummies Questions & Answers

links.... soft or hard.. not sure?

hi, i am in a directory, have 2 files as below then do a ls -l gives the below lrwxrwxrwx 1 root system 23 Mar 08 2001 filea -> /adir/filea lrwxrwxrwx 1 root system 23 Mar 08 2001 filea -> /adir/fileb now, when i do a cd /adir, the system said, adir not... (5 Replies)
Discussion started by: yls177
5 Replies

3. UNIX for Dummies Questions & Answers

Deleting Symbolic and/or Hard links

From what I understand a symbolic link is alot like a shortcut where it points to another file. if the original file is deleted the symbolic link is rendered useless but a symbolic link can be deleted without any problem. A hard link is like a copy of the file itself but pointing to the same... (3 Replies)
Discussion started by: cue
3 Replies

4. UNIX for Advanced & Expert Users

Hard links for directories.

Hard links for directories are not permitted by default. But in some flavor of Unix, super user can create hard links for directories by some other way? Is that true? Is it possible in latest version of BSD or other unix? (2 Replies)
Discussion started by: bbala
2 Replies

5. Shell Programming and Scripting

Unable to preserve hard links. Why?

Hi, I'm trying to create a Makefile that would automate remastering Knoppix distribution. As a part of the process I am mounting using linux cloop device a compressed filesystem and copy the content out of it to separate dir. However during that process I need to preserve hard links and it... (9 Replies)
Discussion started by: dpc.ucore.info
9 Replies

6. Shell Programming and Scripting

Hard Links Help

Ksh newbie here, so please bear with me. I'm currently writing a script that searches through a directory and displays files with multiple hard links. The way I have it set up, is that it displays the i-node number and then each of the link names. In addition to this, I need to know if there... (7 Replies)
Discussion started by: Unknown50862
7 Replies

7. Solaris

Hard Links and Soft or Sym links

When loooking at files in a directory using ls, how can I tell if I have a hard link or soft link? (11 Replies)
Discussion started by: Harleyrci
11 Replies

8. AIX

List all the soft links and hard links

Hi I'm logged in as root in an aix box Which command will list all the soft links and hard links present in the server ? (2 Replies)
Discussion started by: newtoaixos
2 Replies

9. UNIX for Dummies Questions & Answers

Simple example for soft and hard links

Hai, give me a simple example for soft and hard links. this will work for soft link ?? ln -s (2 Replies)
Discussion started by: Ramesh M
2 Replies

10. Shell Programming and Scripting

Timestamp change for hard and soft links

Hi team, i am writing a purge script to delete softlinks and hardlinks on linux system which are 3/10/30 days old. To test the script i need to create links with old timestamp, i am able to cange timestamp for files but not for links. i tried touch -h option but this option is not available on... (1 Reply)
Discussion started by: Satyak
1 Replies
RESTOREVOL(1)						       AFS Command Reference						     RESTOREVOL(1)

NAME
       restorevol - Restore a volume from vos dump to the local file system

SYNOPSIS
       restorevol [-file <dump file>] [-dir <restore dir> ]
	   [-extension <name extension>]
	   [-mountpoint <mount point root>]
	   [-umask <mode mask>] [-verbose] [-help]

DESCRIPTION
       restorevol takes an AFS volume in the format produced by vos dump and restores it to the local file system.  Normally, the contents of a
       volume are maintained by the AFS File Server in an opaque format and copying a volume's raw data does not make it easily accessible.  This
       utility will produce a directory tree that is equivalent to that seen via an AFS client, but without preserving the AFS-specific Access
       Control Lists (ACLs).  It's primary use is to recover data from a volume dump or backup and make it available via a filesystem other than
       AFS.

       The dump output will read from standard input, or from a file if -file is specified.

       The restore process is as follows:

       1.  The dump file will be restored within the current directory or that specified with -dir.

       2.  Within this directory, a subdir is created.	It's name is the RW volume name that was dumped.  An extension can be appended to this
	   directory name with -extension.

       3.  All mountpoints will appear as symbolic links to the volume name.  The path name to the volume will be either that in -mountpoint, or
	   -dir.  Symbolic links remain untouched.

       4.  You can change your umask during the restore with -umask.  Otherwise, restorevol uses your current umask.  Mode bits for directories
	   are 0777 (then AND'ed with the umask).  Mode bits for files are the owner mode bits duplicated accross group and user (then AND'ed with
	   the umask).

       5.  For restores of full dumps, if a directory says it has a file and the file is not found, then a symbolic link AFSFile-<#> will appear
	   in that restored tree.  Restores of incremental dumps remove all these files at the end (expensive because it is a tree search).

       6.  If a file or directory was found in the dump but found not to be connected to the hierarchical tree, then the file or directory will be
	   connected at the root of the tree as __ORPHANEDIR__.<#> or __ORPHANFILE__.<#>.

       7.  ACLs are not restored.

CAUTIONS
       Normally, use vos_restore(1) instead of this command.  restorevol is a tool of last resort to try to extract data from the data structures
       stored in a volume dumpfile and is not as regularly tested or used as the normal vos_restore(1) implementation.	Using restorevol bypasses
       checks done by the fileserver(8) and salvager(8).

OPTIONS
       -file <dump file>
	   Specifies the volume dump file to be read and restored to the local filesystem.  If this option is not given, the volume dump will be
	   read from standard input.

       -dir <restore dir>
	   Names the directory in which to create the restored filesystem.  The current directory is used by default.  Note that any mountpoints
	   inside the volume will point to the same directory unless the -mountpoint option is also specified.

       -extension <name extension>
	   By default, the name of the directory created matches the RW volume name of the volume in the dump file.  If this option is used, the
	   directory name will be the RW volume name name extension as the suffix.

       -mountpoint <mount point root>
	   By default, mountpoints inside the volume being restored point to the value given by -dir.  This option allows mountpoints to be
	   resolved relative to another path.  A common use for this would be to specify a path under /afs as the mount point root so that
	   mountpoints inside the restored volume would be resolved via AFS.

	   The mount point root must exist, and the process running the command have read access to that directory, or the command will fail.

EXAMPLES
       The following command restores the contents of the dumpfile in sample.dump to the directory /tmp/sample.2009-05-17, but having all
       mountpoints inside the volume point to AFS (note that this requires knowledge of where sample is mounted in AFS):

	  % restorevol -file sample.dump -dir /tmp -extension .2009-05-17 
	      -mountpoint /afs/example.org/sample
	  Restoring volume dump of 'sample' to directory '/tmp/sample.2009-05-17'

PRIVILEGE REQUIRED
       The issuer must have read access to the dump file and write access to the directory into which the dump is restored.  If the -mountpoint
       flag is given, the issuer must also have read access to that directory.

SEE ALSO
       salvager(8), voldump(8), vos_dump(1), vos_restore(1)

COPYRIGHT
       Copyright 2009 Steven Jenkins <steven@endpoint.com>

       This documentation is covered by the BSD License as written in the doc/LICENSE file. This man page was written by Steven Jenkins for
       OpenAFS.

OpenAFS 							    2012-03-26							     RESTOREVOL(1)
All times are GMT -4. The time now is 08:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy