Fedora Installation :: F13 Alpha Kickstart On Usb Crashes?

Apr 11, 2010

I am trying to kickstart the F13 alpha from a usb drive.The usb drive is labeled "disk" and is setup with extlinux and can boot fine.My laptop has one hard drive (sda) and the only other drive is the usb (sdbThe ISO is copied on the root of the usb diskI extract the boot files from the F13 Alpha ISO and copy them on the disk also

Code:
cp /mnt/ISO/images/install.img /media/disk/images/install.img
cp /mnt/ISO/isolinux/vmlinuz /media/disk/boot/Fedora/.

[code]....

View 1 Replies


ADVERTISEMENT

Ubuntu Installation :: Upgrade From Alpha To Alpha / Beta?

Feb 26, 2010

I upgraded Karmic Koala to Lucid Lynx, Alpha 2. Now I want to upgrade to Alpha 3, and eventually to BetaX. When I enter the command updata-manager -d, the system says that I am up-to-date. Is there a direct way to upgrade to the latest Alpha, or do I need to download the .iso, build a CD, and do an install from that?

View 2 Replies View Related

Fedora Installation :: Error At Post Install Scripts For Fedora 10 Kickstart Installation

Nov 18, 2009

I am trying to install fedora 10 kickstart on my server.But I can't, because my kickstart installation hangs at post install scripts.It is not showing any message & stopped.

View 1 Replies View Related

Fedora Installation :: 13 Kickstart Install From HDD ISO?

Jun 1, 2010

I have not used Fedora in a long while (since version 5 I think).I am moving back to it for my new home server but there is something that is driving me completely crazy. Can you no longer do HDD installs from a ISO?I whipped out my old kickstart files and worked off of them and all seams to be OK but every time it says it is unable to find the install source.Here are the first two lines of my KS file:

Code:
install
harddrive --partition=sdb1 --dir=/linux_install/fedora/iso

[code]....

View 1 Replies View Related

Fedora Installation :: %pre Section In Kickstart Config?

May 2, 2011

Which directly is accessible during the %pre section? I try to use wget to retrieve a file from FTP to /root but after the machine is build, I don't see that file in /root directory.

View 3 Replies View Related

Red Hat / Fedora :: Complete Automated Installation Using Kickstart

Jan 25, 2010

I want to install Red hat based custom OS in a complete automated mode.I ll have my kick start file inside the CD rom and when I boot with that ISO or CD.The OS should start installing by taking parameters from the kick start file without having to specify the path of the kick start file inside the CD.like "linux ks=<path>".Is it possible to achieve this by writing any script or something so that when the CD boots the kick start path is passed automatically to the anaconda installer.

View 5 Replies View Related

Fedora :: Customized Kernel For Kickstart Installation

Oct 13, 2010

I have successfully setup a kickstart environment for installing the original Fedora 13 using PXE/DHCP/TFTP. Now I want to build a customized kernel and install it using the same Kickstart setup. After building the new kernel.rpm file, what are right steps to do to replace the original kernel rpm in Kickstart RPM directory, like fixing modules dependency, creating new bzImage and intrid etc?

View 2 Replies View Related

Fedora Installation :: Get F14 Updates As Part Of A Kickstart Installation

Apr 5, 2011

I'd like to write a kickstart file that installs available Fedora 14 updates as part of the installation process, much as if I was doing a standard Fedora 14 installation and had enabled the 'updates' repo.

So my question is, is there an easy way to do this? I don't want to have to go down the route of downloading all updated packages and maintaining my own update repo (or indeed, creating a repo with the dependencies listed above).

View 1 Replies View Related

Fedora Installation :: Kickstart DVD Always Requires Internet Access

Sep 7, 2009

I'm trying to set a kickstart DVD for automatically installing Fedora 10 without touching the existing data partitions on our systems. I've got a kickstart file that works great from a kickstart server however I'm having issues with creating an unattended kickstart DVD. I've attached a copy of the kickstart file from the DVD. For some reason even though all the packages we are installing are on the DVD, anaconda always attempts to connected to the internet to get repository information after completing the partitioning. I have changed the install type to 'cdrom' before anyone asks! I have removed my %pre and %post sections as these just copy in some config files and do not touch anything other than local paths.

View 3 Replies View Related

Fedora Installation :: Encrypted Partition Configuration On Kickstart?

Feb 16, 2011

couldn't find anything similar on the forum.I am writing a kickstart for fedora 14 with a partition table similar to:

part / --asprimary --fstype="ext4" --size=10000 --encrypted --passphrase=pass1
part /boot --asprimary --fstype="ext4" --size=130
part /var --fstype="ext4" --size=5000 --encrypted --passphrase=pass1

[code]...

View 9 Replies View Related

Fedora Installation :: Generate A Kickstart File From An Existing Setup ?

Jan 4, 2009

I have recently been given the task of setting up some thirty odd netbooks with F10 and i was wondering if there is a way to generate a kickstart file from the first netbook (my one lol ) that i have setup to our needs so as to use it to create the same install on the rest of the netbooks. i had thought that i could use the anaconda-ks.cfg file in root's home dir but it is not at all representative of the custom package list i chose during the install.

View 8 Replies View Related

Fedora Installation :: F11 - Kickstart Setup For Mirrored Volume Group

Oct 22, 2009

Fedora 11. I am trying to setup kickstart so it lays out a mirrored volume group. I have 2 disks sda and sdb. I want a primary partition on each disk 200mb in size for /boot. This is to be mirrored onto raid device md0 (raid 1). The rest of each disk is to be setup partition which grows to use the remaining space, and is also mirrored (raid 1) md1. Onto md1, I want an LVM volume group called rootvg, and logical volumes set up on there for /, /home, /usr, /tmp etc. I can lay this out manually, and it works fine. However, the code below, which is slightly amended from a previous anaconda-ks.cfg file doesn't work.

Code:
clearpart --linux --drives=sda,sdb --initlabel
part raid.11 --asprimary --size=200 --ondisk=sda
part raid.12 --grow --size=1 --ondisk=sda
part raid.21 --asprimary --size=200 --ondisk=sdb
part raid.22 --grow --size=1 --ondisk=sdb
raid /boot --fstype=ext3 --level=RAID1 --device=md0 raid.11 raid.21
raid pv.1 --level=1 --device=md1 raid.12 raid.22

volgroup rootvg --pesize=32768 pv.1
logvol / --fstype=ext4 --name=rootlv01 --vgname=rootvg --size=512
logvol /home --fstype=ext4 --name=rootlv02 --vgname=rootvg --size=256
logvol /tmp --fstype=ext4 --name=rootlv03 --vgname=rootvg --size=128
logvol /usr --fstype=ext4 --name=rootlv04 --vgname=rootvg --size=3072
logvol /var --fstype=ext4 --name=rootlv05 --vgname=rootvg --size=1024
logvol /opt --fstype=ext4 --name=rootlv06 --vgname=rootvg --size=1024
logvol swap --name=LogVol06 --vgname=rootvg --size=1024

View 2 Replies View Related

Fedora Installation :: User Created W/Kickstart Password Is Wrong

Aug 13, 2010

I have a kickstart script that attempts to create user "joeblow" with an encrypted password. The user is created okay, but the password does not seem to "take". After installation is complete, and the system is rebooted, this is the relevant portion of /etc/passwd:

Code:

This is the relevant portion of /etc/shadow:

Code:

Where there are two exclamation points, I would expect the encrypted password (as is the case for the root user, which is also created in the kickstart file).

The relevant line in my kickstart file looks like this:

Code:

That password string, which is 34 characters, is the word "password", encrypted with this command:

Code:

Also in my kickstart file is this line:

Code:

After the install is complete, I reboot and attempt to log in as "joeblow", but no dice. If I log in as root, and manually put the above encrypted password into /etc/shadow for jowblow, I can then log in as joeblow.

View 2 Replies View Related

Fedora Installation :: FC12 Kickstart Installation From CD

Sep 8, 2010

I have made the ks.cfg file with system-config-kickstart and placed it in the root Disk1.iso's root directory.I then made the Disk1.iso with the changes done and burnt the whole Installation image on a CD-ROM.The machine was booted with the the Disk1 and it went well till disk partitioning.Then suddenly installation halted with a message: "Unable to read package metadata. This may be due to a missing repodata directory. Please ensure that your install tree has been correctly generated.

View 3 Replies View Related

Ubuntu Installation :: Downgrading From 10.10 Alpha To 10.04

Jul 10, 2010

I recently decided to try the ubuntu 10.10 alpha and I'm getting an annoying amount of crash reports, is there an easy way for me to downgrade back to the normal ubuntu without reinstalling the whole os from my disk?

View 6 Replies View Related

Ubuntu Installation :: Update Still Wants Alpha CD

Oct 20, 2010

Few months ago I thought I would test the alpha release, so I downloaded the file and burned the .iso to CD. I had problems with the installation, so I cancelled it half-way through, and continued to use 10.04, which worked fine. Now, whenever I try to update/upgrade the system, it keeps asking me to insert the old CD, which I no longer have.

For example, if I try to
sudo apt-get update
it seems to work fine, until it stalls with the message:
Media Change: Please insert the disc labelled
'Ubuntu 10.10 _Maverick Meerkat_ - Alpha i386 (20100925)'
in the drive /cdrom/ and press enter

Apart from this recurring problem, I think I have have now successfully upgraded to 10.10. I realize that it's probably my own fault (or is it -- shouldn't 10.10 realise that I am way beyond the alpha release now?)

View 3 Replies View Related

Ubuntu Installation :: Downgrade From 11.04 Alpha To 10.10?

Mar 12, 2011

how/if I can downgrade my dual-boot partition (win-7/11.04) to 10.10 without having to reformat the entire disk?

Can I use the same partition I installed the alpha 11.04 on to install 10.10 and save myself a lot of work?

Is it possible to simply reformat the Ubuntu Linux partition and re-install 10.10 there while preserving my Windows 7 installation?

Can I keep the newer GRUB boot loader for 11.04 (I like it better), or will I be forced to downgrade that as well?

I just tried the alpha, and I can't use it. It's still too green, so I want to go back to 10.10 the easiest way possible, so I'd need a little detail on the process of using the advanced partition features (if this is even possible).

View 7 Replies View Related

Ubuntu Installation :: How To Upgrade To 10.04 Lucid Alpha 3 From 9.10

Mar 1, 2010

i tried update-manager -d from GUI and asked to downlaod 678 MB...so i downlaoded the i386 iso 685 from cdimage.ubuntu.com/alpha-3..now how to upgrade to 10.04 lucid alpha 3 from 9.10.

View 1 Replies View Related

Ubuntu Installation :: 0.04 Alpha Updating Errors ?

Apr 11, 2010

I get these from a Synaptic "Mark All Upgrades" and "Appye".

Code:

View 4 Replies View Related

Ubuntu Installation :: 11.04 Alpha - Screen Flickering?

Mar 11, 2011

I had 10.10 installed and decided to chance it by upgrading to the Alpha release 11.04.Graphic card is ATI Sapphire X1550 I think (512MB).Apart from trying to get used to the buggy interface (to be expected from the alpha), the screen keeps blinking, goes black for a second every 30 seconds.

View 3 Replies View Related

Ubuntu Installation :: Kubuntu 10.04 Alpha 2 - Bootloader - FAKERAID

Jan 19, 2010

I continue to have issues installing any of the newer version of Ubuntu on my ICH9 FAKERAID. I read that the GRUB2 issue with FAKERAID was solved shortly after Karmic was released. Did this somehow not get added to the Alpha 1 and Alpha 2 of Lucid? I would love to have Ubuntu installed on my main rig, but I do not want to fuss around with it forever...

View 1 Replies View Related

Ubuntu Installation :: Upgraded Karmic To Lucid Alpha 3?

Mar 16, 2010

I just upgraded Ubuntu Karmic to Lucid alpha 3. It works fine except for a few things that can be expected in an alpha version. Anyway, I would like to know if it would be better to upgrade to the final release of Lucid or if I should do a clean install. I don't mind losing my files and settings because there is nothing important on my laptop, but it would be nice not to.

View 4 Replies View Related

Ubuntu Installation :: Alternate Install (10.04 And 10.10 Alpha) LVM Boot?

Jun 19, 2010

Today I decided to replace my 9.04 install with 10.04. (I did this on a separate hard disk.) As I am a big fan of LVM I used the 'Alternate' install CD. Everything installed fine.

However, upon booting I observed two things: firstly there was no grub menu. No countdown timer, no menu. Just a flickering cursor. After 15 seconds or so I got a message telling me that:

Code:
/dev/mapper/bromine-root (My root partition.) does not exist and that it had given up waiting. Finding this kind of strange I tried the alpha of 10.10 --- same again. Hence I have two questions: firstly, where did the nice grub menu go; secondly, what is wrong with LVM and grub these days? At the initframfs prompt I am thrown to there are some LVM utilities and they appear to show my volumes.

Switching back to my old pair of hard disks and everything works as expected (i.e, the hardware is fine and supported by Linux.)

View 2 Replies View Related

Ubuntu Installation :: Blender 2.5 Alpha 2 Installation 64 Bit

Jul 10, 2010

I really need to install blender 2.5 alpha 2 64 bit but i can't figure out how

This is the download link: [url]

View 4 Replies View Related

Ubuntu Installation :: Natty Alpha 1 Console Text Corruption?

Jan 17, 2011

fixing a text corruption issue / advice for filing a bug report (if necessary). So, generally speaking the stability I am experiencing with Natty is as I expect; I'm fully aware that this is a very very early development release and so all sorts of things can go wrong. I just wanted to point that out So while Gnome/Unity are up and running, graphics run more or less perfectly, the boot process text is completely garbled and if after everything is fully loaded I hit Control+Alt+F1-F6 the text looks like:

* this
* the above image close-up

The above links are supposed to be of the ubuntu login prompt. The problem occurred after running the upgrade command:

Code:

sudo do-release-upgrade -d

As is standard upgrade procedure. Is there anything obvious going on that I can tweak to make it all happy again? Since I have a working GUI.

View 2 Replies View Related

Ubuntu Installation :: Upgrading To Latest Alpha Release Of Natty

Feb 13, 2011

Press
Code:
Alt+F2
and type
Code:
update-manager -d

This should show the option to upgrade to the latest alpha release of natty. Through the terminal this can be done using the same command but you need use.

Code:
sudo
or
Code:
sudo -s
to do this.

View 5 Replies View Related

Software :: Will Fedora 15 Alpha Update To Beta/retail?

Apr 10, 2011

Short question here: Will fedora 15 with gnome 3, automatically update to the beta version once this is released? and will this beta version automatically update to retail Im on windows 7 now, and im getting into linux a bit, and since fedora 15 seems amazing to me i want to install this on my main pc aswell, but i want to make sure i do not have to redownload and reinstall it every time a new release comes out.

View 8 Replies View Related

Fedora :: 15 Alpha XFCE - Revert Back To The Default Panel?

Apr 17, 2011

When I first log in with XFCE, I have an option to use the Default Panel or blank. I opted for blank.

1. How do I revert back to the default panel?

2. How do I remove all instances of the panel?

View 1 Replies View Related

Software :: Fedora 15 Alpha Wont Install Inside VirtualBox 4.0.4

Mar 20, 2011

I am attempting to install Fedora 15 alpha in a virtual machine on Virtual Box 4.0.4 from Oracle uname -r returns this:[Gary@Fedora13 ~]$ uname -r 2.6.34.8-68.fc13.i686 This is a machine I built myself, 3.3g dual core processor and 6gigs of memory and two terabytes HD space.

I've already installed Ubuntu 10.10 in a VM on this PC without any problems. BTW I tried to install Windows XP in a VM and it always says no bootable medium found, not so worried about that now unless there's a quick fix.

The Fedora disk starts install routine like normal - example vmlinuz... and initrd.img... and then several things flash by on the screen. It always hangs on this - [ 2.7168291] [<c040377e>] ? kernel_thread_helper+0x6/0x10

One error message I received complained about permanently enabling I/O cache for the disk controller (I believe) but I did that and the error message hasn't returned.

View 14 Replies View Related

Fedora Installation :: FED13 Kickstart - Client Failed - Loader Failed To Mount

Jun 27, 2010

I have configured the remote installation of Fedora 13 with kickstart with nfs installation method. All work ok until I boot the Fedora 13 client system.

Fed13 client system receives the IP address from dhcp, receives the loader, loads vmlinuz and initrd.img from tftp, load anaconda, configures the network and dev eth0, mounts nfs server to load kickstart file, loads kickstart file (language...) but when it tries to mount nfs server to install from Fedora 13 installation tree it fails.

First, I thought that I had an error on my NFS configuration but I was wrong. I opened tty with ALT+F4 on the Fedora 13 client and I sew this error:

Code:

Is this a bug or can I modify anything to correct this error? How?

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved