- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- General Things
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
01-29-2004 06:14 PM
01-29-2004 06:14 PM
I am new to unix and needed some clarificatons.I would be very thankful to all who reply.
1.Difference between BSD and AT&T System v relese 4.
2.Difference between hard an soft links.
I would like to know whether any software is there to practise HP commands on a windows PC where there is no server.
Best Regards,
NS Nathan.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 06:20 PM
01-29-2004 06:20 PM
SolutionHard links are two names for the same file and soft links are one file that is essentially a pointer to another. They basically achieve the same thing except you can not hard link a file from one filesystem to another (because it is basically two inodes for the same file and each filesystem has its own inode table).
If you remove the file a hard link points to, the data stays on the disk and is referenced by the link name as if that was the real name of the file. If you remove the data that a soft link points to you end up with no data, just a link that points to nothing.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 06:38 PM
01-29-2004 06:38 PM
Re: General Things
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 06:49 PM
01-29-2004 06:49 PM
Re: General Things
Mark gave you plenty of information.
Try to load cygwin from cygwin.com site. It will emulate unix on windows. You can practice general unix commands. You will need to have the HP-UX system as the commands specific to HP like LVM etc., are available on HP systems only.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-29-2004 06:50 PM
01-29-2004 06:50 PM
Re: General Things
Solaris is the one the System V implementation and have some BSD features too. The difference between System V and BSD can be easily learned once you are comfortable with one Unix flavor, say Solaris or HP-UX.
To practice unix in our home, there is great way to install Redhat Linux Or Fedora Linux Or even Suse linux in our home PC and practice Unix. Also There is an Intel Version of Solaris available from Sun.
-Vijay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2004 03:50 AM
01-30-2004 03:50 AM
Re: General Things
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2004 04:12 AM
01-30-2004 04:12 AM
Re: General Things
Difference between hard and symbolic (soft) links would be:
1) Hard links are created with the same ownership & perms as the link destination & any change to the link changes the destination as well.
2) Symbolic links are created with ownership/perms of the creator & creator's umask. Changes to the link do nothing to the destination & in fact are ignored by the system.
3) Symbolic links can span filesystems - hard links cannot.
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-30-2004 05:04 AM
01-30-2004 05:04 AM
Re: General Things
historical development.
http://www.cgd.ucar.edu/gds/thibaud/UNIX-tips/Tips/sysv-bsd.html
Regards,
JL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 03:23 PM
02-02-2004 03:23 PM
Re: General Things
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2004 05:58 PM
02-02-2004 05:58 PM
Re: General Things
Hard links show up because of the link count column (value greater than 1).
Softlink is created with 'ln -s',
hard links with 'ln'.
JP