- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- fstab , mnttab discrepency
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
12-11-2001 12:56 AM
12-11-2001 12:56 AM
I am currently running following version of ignite on one of our systems
# swlist -l product | grep -i ignite
Ignite-UX A.2.1.26 HP-UX System Installation Services
When attempting to make a recovery tape we are receiving the following message from
/var/opt/ignite/logs/makrec.log1
save_config: error - unknown disk type for /dev/vg00/lvol3, not SCSI or
HPFL
grep: can't open /var/tmp/swapinfo.tmp
grep: can't open /var/tmp/lvlnboot.tmp
save_config: error - cannot determine primary swap size
/dev/vg00/lvol3 is the volume group in fstab for the root filesystem,
/dev/vg00/lvol3 / vxfs delaylog 0 1
run bdf and this shows
/dev/root 102400 39435 59032 40% /
bdf /dev/vg00/lvol3
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 102400 39557 62616 39%
mnttab shows what is mounted
/dev/root 102400 39557 58919 40% /
Why is lovl3 not being mounted ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2001 01:02 AM
12-11-2001 01:02 AM
Re: fstab , mnttab discrepency
definitions.
Remember / is 'mounted' before /etc (which contains fstab). This is necessary so you can load your kernel..
This information is stored in the BDRA (the -B option of pvcreate of your boot disk)
Later,
Bill
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2001 01:20 AM
12-11-2001 01:20 AM
Re: fstab , mnttab discrepency
Physical Volumes belonging in Root Volume Group:
/dev/dsk/c0t5d0 (8/4.5.0) -- Boot Disk
/dev/dsk/c0t11d0 (8/4.11.0)
PV Name: lvol1 on: /dev/dsk/c0t5d0
Root: lvol3 on: /dev/dsk/c0t5d0
Swap: lvol2 on: /dev/dsk/c0t5d0
Dump: lvol2 on: /dev/dsk/c0t5d0, 0
ioscan
disk 0 8/4.5.0 sdisk CLAIMED DEVICE SEAGATE ST32272WC
/dev/dsk/c0t5d0 /dev/rdsk/c0t5d0
/ # swapinfo -mt
Mb Mb Mb PCT START/ Mb
TYPE AVAIL USED FREE USED LIMIT RESERVE PRI NAME
dev 1024 7 1017 1% 0 - 1 /dev/vg00/lvol2
dev 128 7 121 5% 0 - 1 /dev/vg02/lvol5
dev 512 7 505 1% 0 - 1 /dev/vg02/lvol12
reserve - 578 -578
total 1664 599 1065 36% - 0 -
So there doesn't seem to be an issue with my config
Could you please help
pvdisplay -v /dev/dsk/c0t5d0
--- Physical volumes ---
PV Name /dev/dsk/c0t5d0
--- Distribution of physical volume ---
LV Name LE of LV PE for LV
/dev/vg00/lvol1 25 25
Plus /vol2 etc etc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2001 01:31 AM
12-11-2001 01:31 AM
SolutionTo correct the condition is simple:
# mv /etc/mnttab /etc/mnttab.orig
# mount
The /etc/mnttab file will be rebuilt and it will show the correct lvol3 entry for /. Hopefully that will take care of your ignite problem.
See the following thread for more info:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x25337b8d1de3d5118ff40090279cd0f9,00.html
Regards,
Steve
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2001 01:34 AM
12-11-2001 01:34 AM
Re: fstab , mnttab discrepency
#mv /etc/mnttab /etc/mnnttab.orig
#mount -a
this is normal , it will happen after
- boot into single user
- maintenance mode
- support CD
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2001 06:49 AM
12-12-2001 06:49 AM
Re: fstab , mnttab discrepency
I recently put a reply to someone's posting who was having the same issue. Perform the following steps:
1) cp /etc/mnttab /etc/mnttab.121201 (current date)
2) vi /etc/mnttab : reorder the sequence of the way you want to view the mounting of your filesystems and make sure that /dev/vg00/lvol3 is mounted as /.
3) mount -a
4) All filesystems should appear as listed in the mnttab file, but if you want to you can also perform an edit of the /etc/fstab file to make certain that it matches the mnttab file. Just for consistency.
Good luck.