I have a system that is having issues with the pam.conf. I have booted to cd but am stuck at how to mount the rootpool in single-user. I need to make some changes to the pam.conf but am not sure how to do this. Thanks in advance. -- This message posted from opensolaris.org
On 01.10.09 07:20, camps support wrote:> I have a system that is having issues with the pam.conf. > > I have booted to cd but am stuck at how to mount the rootpool in single-user. I need to make some changes to the pam.conf but am not sure how to do this.I think "zpool import" should be the first step for you. HTH -- Michael Schuster http://blogs.sun.com/recursion Recursion, n.: see ''Recursion''
I did zpool import -R /tmp/z rootpool It only mounted /export and /rootpool only had /boot and /platform. I need to be able to get /etc and /var? -- This message posted from opensolaris.org
On 10/01/09 09:25, camps support wrote:> I did zpool import -R /tmp/z rootpool > > It only mounted /export and /rootpool only had /boot and /platform. > > I need to be able to get /etc and /var? >You need to explicitly mount the root file system (its canmount property is set to "noauto", which means it isn''t mounted automatically when the pool is import) do: # zfs mount rootpool/ROOT/<bename> for the appopriate value of <bename>.
On 01.10.09 08:25, camps support wrote:> I did zpool import -R /tmp/z rootpool > > It only mounted /export and /rootpool only had /boot and /platform. > > I need to be able to get /etc and /var?zfs set mountpoint ... zfs mount -- Michael Schuster http://blogs.sun.com/recursion Recursion, n.: see ''Recursion''