Taking a snapshot / view of a server


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Taking a snapshot / view of a server
# 1  
Old 10-04-2004
Taking a snapshot / view of a server

I'm about to run an application patch on a server and before I do I would like to take a snapshot of the OS. Then after running the install I can take another one for a comparison. The idea being that if the patch changes any files outside of the /app directory then I will know from comparing snapshots.

A colleague suggested using "find / -type f -o type h -ls > snap.out", but that doesn't seem to work. I'm running this as root and nothing comes up at all. I'm running this as root.

Can someone help by suggesting a better way of doing this?

Thanks,

Yao

ps. This Solaris 8, and I'm using korn shell, if that makes a difference.
# 2  
Old 10-04-2004
...........

i would do that using "ufsdump".... but also a simple "tar" should work.......
the "find" workaround could be:
"find /appldir/ | cpio -pdmuv /snapshotdir/"

to duplicate your server, you could also use "flarcreate"....


you see, there are more ways than one.... a simple google search should help.........

greetings pressy
# 3  
Old 10-05-2004
Thanks. I'll take a look.

Just so you know, I don't actually want to take an image, but rather a listing of all files, etc. Once I know what files have been changed, then I can investigate further why.

Cheers,

Yao
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Gmail cannot view picture through web browser through squid proxy server

Hi, forum reader, I have a squid problem. We have 2 squid proxy for two different group staffs, both of them can access gmail for web email access. It used about half year. One day we send out email with image but one proxy group user cannot view that pic but another group can see. Any idea for... (2 Replies)
Discussion started by: justinianho
2 Replies

2. Red Hat

Taking an image or clone of Red Hat server

Dear All , We have a linux Server where we have installed all our Softwares and applications. Now we want to clone this Server to another server or copy the image of it and put it in the another server.So that all the softwares and apps appear in the new server also , rather than re... (7 Replies)
Discussion started by: jegaraman
7 Replies

3. Solaris

Test program running taking much more time on high end server T5440 than low end server T5220

Hi all, I have written the following program and run on both T5440 and T5220 on same OS version. I found that T5540 server takes more time than T5220. Please find below the details. test1.cpp #include <iostream> #include <pthread.h> using namespace std; #define NUM_OF_THREADS 20... (17 Replies)
Discussion started by: sanjay_singh85
17 Replies

4. Red Hat

Configure app server to view server files

Hi, We have a OEL6.1 installed on our server. We want developers to view there application logs generated on the server, but doesn't really want to give them access to server machine. Can someone please suggest how can we configure apache/httpd to create a url which will show all files in... (1 Reply)
Discussion started by: shrshah64
1 Replies

5. UNIX for Dummies Questions & Answers

how to view dynamically updated managed server logs from the same putty window

Hi, I want to know how we can view two or three logs which are dynamically getting updated from a single/same putty window with tail commnad. Thanks. (7 Replies)
Discussion started by: reachsudha
7 Replies

6. Solaris

Information about taking dump of a unix server on a tape and then restoring

Hi all, Can anyone provide me with a site or book that gives detailed information about taking dump of a unix server on a tape and then restoring the server from the dump Also i want information about migration from old server to new server (solaris 5.6 to solaris 8) (3 Replies)
Discussion started by: asalman.qazi
3 Replies

7. Shell Programming and Scripting

View the Server Total Ram in GB

Hello, I want to view server RAM in GB i.e 4 GB or 6 GB via command line to use it in bash script waiting Any Ideas :) Thanks :):) (2 Replies)
Discussion started by: LinuxCommandos
2 Replies

8. Shell Programming and Scripting

Shell script to view logs of a server

Please share a shell script to collect logs of a server (like cpu utilization, memory etc) for a perticular time interval by giving date, time and server name as input. (1 Reply)
Discussion started by: abhishek27
1 Replies

9. UNIX for Dummies Questions & Answers

taking snapshot of a file

Hi I would like to take snapshots or look at a file every few secs that its not being edited or not being made any changes. After a minute, if there were no changes, then I would like to call my application job. Looking for command that does this. No success in googling it. the test... (1 Reply)
Discussion started by: bryan
1 Replies
Login or Register to Ask a Question