<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Filesystem ownership changes in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947932#M413087</link>
    <description>what does your /etc/fstab file look like?&lt;BR /&gt;</description>
    <pubDate>Tue, 20 Dec 2005 14:01:47 GMT</pubDate>
    <dc:creator>Paul Sperry</dc:creator>
    <dc:date>2005-12-20T14:01:47Z</dc:date>
    <item>
      <title>Filesystem ownership changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947931#M413086</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;I have a filesystem with user1:group1 ownerships. Everytime I remount it, its ownership and group membership is reset to root:root or root:bin. Any clues???&lt;BR /&gt;Thanks</description>
      <pubDate>Tue, 20 Dec 2005 13:58:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947931#M413086</guid>
      <dc:creator>hp_user_1</dc:creator>
      <dc:date>2005-12-20T13:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem ownership changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947932#M413087</link>
      <description>what does your /etc/fstab file look like?&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Dec 2005 14:01:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947932#M413087</guid>
      <dc:creator>Paul Sperry</dc:creator>
      <dc:date>2005-12-20T14:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem ownership changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947933#M413088</link>
      <description>Note: fstab Stands For "File System Table" &lt;BR /&gt;&lt;BR /&gt;Now, Inorder to Make The Partitions mounted Automaticlly Every Time Your System Boots UP What You Need is to Add Entries in Your /etc/fstab &lt;BR /&gt;&lt;BR /&gt;Here is The Format of The Entry .. &lt;BR /&gt;&lt;BR /&gt;device_name|mount_point|fstype|option|another_option|kaman_option|etc|dump_frequency|fsck_prioritydevice_name: It is the Name Of The Physical Device you Want To Mount ,It could be a network share ,NFS (Network File System ) *nix share or SMB (Server Message Block ) Window$ share ( Network resource ) .. &lt;BR /&gt;Ex. /dev/hda1 for physical devices and it is also local &lt;BR /&gt;Ex. files.eglug.org:/share/path NFS resource &lt;BR /&gt;Ex. //ms.Misr-soft/share-name SMB resource &lt;BR /&gt;mount_point: It is the Mount Point Where The File System(Partition) will be Mounted .. Ex. mnt/win_c &lt;BR /&gt;fstype: It is the Type Of the File System of the Partition that Will Be Mounted .. Ex. vfat, ext3 , nfs , smbfs , ntfs and swap &lt;BR /&gt;Now, The Common Options Are: &lt;BR /&gt;user: It Makes the Partition Mountable by any user, but then only that user can unmount it. (For Sure CDROM Drives must have this Option) &lt;BR /&gt;users: It Makes the Partition Mountable by any user, and any user can unmount it. &lt;BR /&gt;noexec: No Executable Files Allowed (You Should Use this with Windows Partitions or Else All the Files Will be Considered Executables) &lt;BR /&gt;ro: Read Only &lt;BR /&gt;rw: Read/Write &lt;BR /&gt;noauto: Don't mount this at Boot Time (You May be Wondering What its doing in fstab if it is Not Going to Be mounted at Boot Time, this is Used to Simplify mounting Removable Media like CDROMS and FLOPPIES) &lt;BR /&gt;uid: Sets Default User id (All Files on your Partition Will be Owned by this User) &lt;BR /&gt;gid: Sets Default Groups id (All Files will be Owned by this Group) &lt;BR /&gt;sync: Always Sync File System (Don't Cache Content .. Use this with Floppies) &lt;BR /&gt;dump_frequency: Is Used to Automatically Backup Files (Only Useful For ext File System) &lt;BR /&gt;fsck_priority: Is Used to Determine The Order of Checking File Systems when Doing a System Wide fsck at Boot Time, a Value of Zero will Tell the Kernel Never to Check This File System (This is How it Should be For Most Windows Partitions). The two digits allow for parallel checks when you have two different drives, thus speeding up boottime checks. &lt;BR /&gt;</description>
      <pubDate>Tue, 20 Dec 2005 14:04:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947933#M413088</guid>
      <dc:creator>Paul Sperry</dc:creator>
      <dc:date>2005-12-20T14:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem ownership changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947934#M413089</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;If you create a directory before it's mounted it will be created as the user used when mkdir was performed.&lt;BR /&gt;&lt;BR /&gt;But when you mount the FS it will be mounted as root. When it's mounted you can modify it to what you prefer.&lt;BR /&gt;It's it possible to test it.&lt;BR /&gt;Do the following:&lt;BR /&gt;ll -d /test&lt;BR /&gt;mount /test&lt;BR /&gt;ll -d /test&lt;BR /&gt;umount /test&lt;BR /&gt;mount /test&lt;BR /&gt;ll -d /test&lt;BR /&gt;&lt;BR /&gt;GoodLuck&lt;BR /&gt;&lt;BR /&gt;Darrel&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Dec 2005 14:07:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947934#M413089</guid>
      <dc:creator>Darrel Louis</dc:creator>
      <dc:date>2005-12-20T14:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem ownership changes</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947935#M413090</link>
      <description>a</description>
      <pubDate>Wed, 21 Dec 2005 15:38:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-ownership-changes/m-p/4947935#M413090</guid>
      <dc:creator>hp_user_1</dc:creator>
      <dc:date>2005-12-21T15:38:45Z</dc:date>
    </item>
  </channel>
</rss>

