- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Ignore NFS mounted filesystems with dump
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 05:24 AM
06-27-2003 05:24 AM
Ignore NFS mounted filesystems with dump
I'm doing a dump of the Linux server with the following command..
dump -0u -f /dev/nst0 /
This will backup everything under root. Will this ignore NFS mounted filesystems or how can I specify to ignore NFS mounted filesystems. Any help is greatly appreciated and points will be assigned.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 05:36 AM
06-27-2003 05:36 AM
Re: Ignore NFS mounted filesystems with dump
As far I know, dump command will backup only the file system you gave, it don't cross mount point. So if you need to dump the entire system you should do multiple dump. One for each file system you want to backup.
Cheers.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 06:06 AM
06-27-2003 06:06 AM
Re: Ignore NFS mounted filesystems with dump
I think that command will ignore NFS mountpoints. To be sure, umount them before running the command.
This isn't a disaster recovery plan is it?
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 06:19 AM
06-27-2003 06:19 AM
Re: Ignore NFS mounted filesystems with dump
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2003 06:22 AM
06-27-2003 06:22 AM
Re: Ignore NFS mounted filesystems with dump
Dump will backup only mount point that you give
if you will have under other mounts they will
ignored.
Caesar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2003 04:19 AM
06-28-2003 04:19 AM
Re: Ignore NFS mounted filesystems with dump
How about a devious way ? ... keeps your cpu busy
I use dump/restore on my linux's for backup
When I was testing my various procedures I sometime used this method...
/sbin/dump -0 -f /dev/null /
this will dump to no where but does give you some informations in return and it is fast..
It will tell you if nfs is backup or not, I do not use nfs.
I think It will be ignore if the 5 field in /etc/fstab is 0
ex: of ignored's
/dev/fd0 /mnt/floppy auto noauto,owner 0 0
none /proc proc defaults 0 0
none /dev/shm tmpfs defaults 0 0
I am prudent,I always try to test in a none production enviroment first.
I hope this will be of some help to you.
Jean-Pierre