- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- kickstart via altiris
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
06-08-2009 02:23 AM
06-08-2009 02:23 AM
kickstart via altiris
i am trying to install RedHat 5.3 using Altiris
in my anaconda answer file im creating vg but
the installation stops on the following error:
"No volume group exists with the name 'vg00'.
Specify volume group before logical volume"
part of anaconda file:
"clearpart --all
part /boot --fstype ext3 --size=200
part swap --size=1024
part pv.10 --size=500 -grow
volgroup vg00 pv.10
logvol / --fstype ext3 --name=lvol1 --vgname=vg00 --size=1024"
this answer file work fine when it runs without altiris.
can you spot the problem?
tnx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 05:05 AM
06-08-2009 05:05 AM
Re: kickstart via altiris
The image does not contain the volume group vg00 ?
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 06:02 AM
06-08-2009 06:02 AM
Re: kickstart via altiris
both using kickstart file to install the server from scratch, without images.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 08:04 AM
06-08-2009 08:04 AM
Re: kickstart via altiris
clearpart --all --drives=sda --initlabel
part /boot --fstype ext3 --size=100 --ondisk=sda
part pv.2 --size=0 --grow --ondisk=sda
volgroup rootvg --pesize=32768 pv.2
logvol / --fstype ext3 --name=rootlv --vgname=rootvg --size=1024 --grow
logvol swap --fstype swap --name=swaplv --vgname=rootvg --size=256
I would specially add the --initlabel option to clearpart.
I would use LVM for swap.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-08-2009 11:43 PM
06-08-2009 11:43 PM
Re: kickstart via altiris
still the same error repeat.