[Level 2] How to solve the problem if you forget user password in OpenSolaris?
If you have a user with root role, and forget the user password. How to solve this problem? Steps as the following: 1. Use CD-ROM to boot. You can use CD-ROM to boot server first. If you don't have, please download the iso file and burn a new one for yourself. 2. Import pool and mount Boot Environment. Then you can import the "root disk" pool with the command "zpool import". At the same time, you should import the pool ( use option "-R" ) with alternative root. Ex. # zpool import -R /tmp/rpool rpooliso When you try to change directory to the sub folder "etc" of "/tmp/rpool", and you will find out that the folder doesnot exist ( int this case, /tmp/rpool/etc ). Why? because when you import the pool, the Boot Environment will not be mounted, and you have to mount it manually. So you can use command "beadm" with "mount" sub-command then assign the "boot environment" and the "mount poi...