- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- files in /opt
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-19-2001 11:14 AM
06-19-2001 11:14 AM
files in /opt
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2001 11:37 AM
06-19-2001 11:37 AM
Re: files in /opt
The /opt filesystem is supposed to contain installed software. I lean towards having the software in /opt instead of in /home, unless it is a piece of software that nobody else will run. Having the software in /opt gives you a little more security and control over the installed software.
I have a development box here where one of the developers has installed a copy of xemacs in his home directory. At some point I'll probably install a real copy in /opt and have him get rid of his personal copy. That way, I can control it and other people can use it if they need to.
JP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2001 01:03 PM
06-19-2001 01:03 PM
Re: files in /opt
Before you delete one of those 'copies', are you sure one of them is not a symbolic link of the other? Just checking...
Good Luck,
Curt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-19-2001 01:24 PM
06-19-2001 01:24 PM
Re: files in /opt
As the others have stated, /opt is for OPTional software products. If you install a product named "foo" for example, you would usually see the following:
/opt/foo # dir tree for exe's and lib's
/etc/opt/foo # dir tree for foo config files
/var/opt/foo # dir tree for foo log and spool files
You might wind up with /home/yourdir/foo, but you'll probably find it to be a sym link to the exe something like so:
foo -> /opt/foo/bin/foobinary
You can swremove products that are no longer needed to free up space in /opt. A handy little command I use to see who's soaking up filesystem space (/opt for example) is as follows:
du -kx /opt | sort -rn | more
This will give you a highest-to-lowest list of filesystem usage in KB (not blocks).
Cheers,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 04:53 AM
06-20-2001 04:53 AM
Re: files in /opt
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2001 05:13 AM
06-20-2001 05:13 AM
Re: files in /opt
some of the softwares installed by default get installed under /opt(like IBM's MQseris)and some patches like trace when installed, will get installed in some other place but a piece of the software will be stored in /opt(like man,which is optional which if you don't want can be removed)