Sponsored Content
Top Forums UNIX for Dummies Questions & Answers What can I ignore when backing up UNIX boxes? Post 83487 by geralex on Thursday 15th of September 2005 10:24:59 AM
Old 09-15-2005
What can I ignore when backing up UNIX boxes?

Hi All,

Long question and possibly a very short answer....

At work we've just got a new 3rd party backup solution (Netvault by Bakbone -it's v. nice), and I'm currently setting up my UNIX clients as part of the backup schedule. It's just occurred to me that there may be certain files or directories that, as a default, can be excluded from the aforementioned backup schedule.

Is there an equivalent directory to the Windows Temporary Internet Files that I can exclude? - I don't want to waste time backing up the peoples latest cricket scores, surfing habits, personal mails etc. or anything that's not business related.

If you've any ideas let me know, but I've got a feeling that I'll need to go through each server individually before I can start making assumptions....

Thanks, as always.

Regards,

Ger
 

10 More Discussions You Might Find Interesting

1. Programming

text boxes, radio buttons , check boxes in c++ on unix

Hi ! Please tell me how to get radio buttons, text boxes , check boxes , option buttons , pull down menus in C++ on Unix. I think it would be done using curses.h ..but that's all i know. TIA, Devyani. (3 Replies)
Discussion started by: devy8
3 Replies

2. UNIX for Dummies Questions & Answers

users logging on to unix boxes

I have been asked to write a unix script to log and report all users logging on to our unix boxes as either the root or oracle users only on a 24 hour basis. This should trap the logon and logoff time,if possible what they are doing and their username. Thanks in Advance (2 Replies)
Discussion started by: irehman
2 Replies

3. UNIX for Dummies Questions & Answers

quering unix boxes for attaced printers

Greetings All, I was wanting some info seeing i am a ms geek looking to go into UNIX if i want to query a UNIX box for info regarding printers, LPDs and such source how would i go about this !!!! All comments that would point me in the right direction would be most useful. Cheers (1 Reply)
Discussion started by: seekerO
1 Replies

4. UNIX for Dummies Questions & Answers

Backing up or Archiving files in UNIX

Hi All, I am very new to the UNIX world and find myself in a new position at work that requires me to archive large CADD files based in both UNIX and Windows environments on CD's. I have one engineer that wants to export these files as a table (I guess) and it appears to have a lot of paper... (2 Replies)
Discussion started by: Dsartelle
2 Replies

5. Shell Programming and Scripting

Compare files across 2 UNIX boxes

Is it possible to compare two files which reside on different UNIX boxes? (I'm using HP POSIX/Korn) :confused: Consider the scenario of a pre-production environment (box 1) and a production environment (box 2) I would like to check if some files on both boxes match or not. It's quite... (2 Replies)
Discussion started by: flattyre
2 Replies

6. UNIX for Advanced & Expert Users

How to direct-connect two UNIX boxes

Hello, I have a V880 and a 420 running Solaris 9. Each box has more than one NIC card. I'd like to know how to configure the network on the two boxes so that I can directly connect the NIC cards. Meaning, I don't want a switch or router between the two. I just want to run a CAT5 cable to each... (3 Replies)
Discussion started by: agcodba
3 Replies

7. UNIX for Dummies Questions & Answers

Help! Suggestions on what I can I use my 2 unix boxes for?

Once upon a looong time ago I used to work with Unix systems - SGI mainly. Now I've inherited 2 boxes - an SGI dual processor Octane and an Indigo2. For the past 2 years they've sat waiting for me to do something with them and never getting round to it. I run a windows network at home so... (3 Replies)
Discussion started by: JimmyChang
3 Replies

8. UNIX for Dummies Questions & Answers

Dowe have other tools like Putty to connect UNIX boxes

New to UNIX, do we have only putty to work with UNIX boxes remotely ?????? any other tools.. (1 Reply)
Discussion started by: nivaspIND
1 Replies

9. Solaris

how to config sudo in unix boxes

Hi How to configure sudo in all unix boxes. plz provide the step by step process. Regards Praveen (3 Replies)
Discussion started by: tv.praveenkumar
3 Replies

10. Shell Programming and Scripting

monitoring various things (mainly activity) on different unix boxes

Hi there, I want to ask you guys what you think about my problem. I work as a sysadmin on about 7000 workstations or so and to save money and energy, we've decided to switch off as many workstations as possible during the night (probably by shutting it down by cron and power it on by... (8 Replies)
Discussion started by: albator1932
8 Replies
VNODE(9)						   BSD Kernel Developer's Manual						  VNODE(9)

NAME
vnode -- internal representation of a file or directory SYNOPSIS
#include <sys/param.h> #include <sys/vnode.h> DESCRIPTION
The vnode is the focus of all file activity in UNIX. A vnode is described by struct vnode. There is a unique vnode allocated for each active file, each current directory, each mounted-on file, text file, and the root. Each vnode has three reference counts, v_usecount, v_holdcnt and v_writecount. The first is the number of clients within the kernel which are using this vnode. This count is maintained by vref(9), vrele(9) and vput(9). The second is the number of clients within the kernel who veto the recycling of this vnode. This count is maintained by vhold(9) and vdrop(9). When both the v_usecount and the v_holdcnt of a vnode reaches zero then the vnode will be put on the freelist and may be reused for another file, possibly in another file system. The transition to and from the freelist is handled by getnewvnode(9), vfree(9) and vbusy(9). The third is a count of the number of clients which are writ- ing into the file. It is maintained by the open(2) and close(2) system calls. Any call which returns a vnode (e.g. vget(9), VOP_LOOKUP(9) etc.) will increase the v_usecount of the vnode by one. When the caller is fin- ished with the vnode, it should release this reference by calling vrele(9) (or vput(9) if the vnode is locked). Other commonly used members of the vnode structure are v_id which is used to maintain consistency in the name cache, v_mount which points at the file system which owns the vnode, v_type which contains the type of object the vnode represents and v_data which is used by file systems to store file system specific data with the vnode. The v_op field is used by the VOP_* macros to call functions in the file system which implement the vnode's functionality. VNODE TYPES
VNON No type. VREG A regular file; may be with or without VM object backing. If you want to make sure this get a backing object, call vfs_object_create(9). VDIR A directory. VBLK A block device; may be with or without VM object backing. If you want to make sure this get a backing object, call vfs_object_create(9). VCHR A character device. VLNK A symbolic link. VSOCK A socket. Advisory locking will not work on this. VFIFO A FIFO (named pipe). Advisory locking will not work on this. VBAD Indicates that the vnode has been reclaimed. IMPLEMENTATION NOTES
VFIFO uses the "struct fileops" from /sys/kern/sys_pipe.c. VSOCK uses the "struct fileops" from /sys/kern/sys_socket.c. Everything else uses the one from /sys/kern/vfs_vnops.c. The VFIFO/VSOCK code, which is why "struct fileops" is used at all, is an artifact of an incomplete integration of the VFS code into the ker- nel. Calls to malloc(9) or free(9) when holding a vnode interlock, will cause a LOR (Lock Order Reversal) due to the intertwining of VM Objects and Vnodes. SEE ALSO
malloc(9), VOP_ACCESS(9), VOP_ACLCHECK(9), VOP_ADVLOCK(9), VOP_ATTRIB(9), VOP_BWRITE(9), VOP_CREATE(9), VOP_FSYNC(9), VOP_GETACL(9), VOP_GETEXTATTR(9), VOP_GETPAGES(9), VOP_GETVOBJECT(9), VOP_INACTIVE(9), VOP_IOCTL(9), VOP_LINK(9), VOP_LISTEXTATTR(9), VOP_LOCK(9), VOP_LOOKUP(9), VOP_OPENCLOSE(9), VOP_PATHCONF(9), VOP_PRINT(9), VOP_RDWR(9), VOP_READDIR(9), VOP_READLINK(9), VOP_REALLOCBLKS(9), VOP_REMOVE(9), VOP_RENAME(9), VOP_REVOKE(9), VOP_SETACL(9), VOP_SETEXTATTR(9), VOP_STRATEGY(9), VOP_VPTOCNP(9), VOP_VPTOFH(9), VFS(9) AUTHORS
This manual page was written by Doug Rabson. BSD
February 13, 2010 BSD
All times are GMT -4. The time now is 07:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy