- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Swinstall - How do i find out files changed.
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
10-28-2002 06:53 AM
10-28-2002 06:53 AM
Swinstall - How do i find out files changed.
Good Morning. We manage nclass with 11.0 64bit. We receive filesets(swpackaged from the applications) which we have to install and remove on the test/QA nclass box to ensure that all the filesets are installing and removing properly. I have the foll. questions..
1. Is it possible with swinstall to find out what are the changes taking place to the OS or the filesystems with whatever we install.
2. The same with swremove. Is is possible to check with swremove to check whether they have removed all the files which they updated during swinstall?
3. Are there anyone who handle similar requirements? If so how are you handling? Any help or scripts would be very helpful.
Best Regards
Ben
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 06:55 AM
10-28-2002 06:55 AM
Re: Swinstall - How do i find out files changed.
you have the option:
swlist -l files -a date | grep
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 06:57 AM
10-28-2002 06:57 AM
Re: Swinstall - How do i find out files changed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 07:00 AM
10-28-2002 07:00 AM
Re: Swinstall - How do i find out files changed.
Probabaly the easist way to verify an installation and the removal of your packages is to review the SD logs in:
# /var/adm/sw/sw*.log
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 10:55 AM
10-28-2002 10:55 AM
Re: Swinstall - How do i find out files changed.
Thanks. But i guess i did not frame the question properly. I know i can look at logs for some errors. But what i am asking is..Is there a way to know what files are being updated/created with each installation of the application filesets? The first option provided swlist -l files is not supported.
Thanks
Ben
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 11:26 AM
10-28-2002 11:26 AM
Re: Swinstall - How do i find out files changed.
The only way I know to do this is to inventory the system before you do the install and then inventory after the install and see the differences using some variant of the "find" command and saving the ouput. I have written some custom scripts to do this in the past but they take a very long time to run due to the fact they search the entire file system.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 11:30 AM
10-28-2002 11:30 AM
Re: Swinstall - How do i find out files changed.
Normally the swagent.log file will give you the directory where it installed the files.
You may go to these files and do
ls -ltr
this will give you a listing of the latest files at the bottom of the screen. This can give you a rough idea of what files changed. Other than this, you may cross verify the date for those files from a backup.
Regards,
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2002 12:26 PM
10-28-2002 12:26 PM
Re: Swinstall - How do i find out files changed.
The option is 'file' [singular, not plural]. Since you specifically note "filesets", you could use:
# swlist -l fileset -a date
Regards!
...JRF...