Sponsored Content
Full Discussion: Installing LINUX KS from USB
Operating Systems Linux Red Hat Installing LINUX KS from USB Post 302524312 by NIMISH AGARWAL on Monday 23rd of May 2011 03:16:09 AM
Old 05-23-2011
Installing LINUX KS from USB

SmilieHello All,

We are trying to install RHEL6 via USB using KICKSTART installation.

We had following configuration:

Below is the entry of isolinux.cfg file :

Code:
menu label ^Kickstart Installation:via USB
kernel vmlinuz
append initrd=initrd.img ks=cdrom:/ks.cfg

Below is the entry of ks.cfg file :

Code:
#version=RHEL6
install
cdrom
lang en_US.UTF-8
keyboard us


after that we had created a ISO for complete installation.
The installation from CDROM is working perfectly fine, but when we are preparing the same ISO on USB then that is not working.

Our requirement is to install a KS LINUX via USB.

ANy help is highly appriciated.

Thanks !!

Nimish

Last edited by pludi; 05-23-2011 at 09:04 AM..
 

9 More Discussions You Might Find Interesting

1. Linux

Booting Linux from an USB stick

I got Puppy linux and installed it on a usb stick. In the BIOS i selected to boot from USB-FDD but it goes to my HD and ignores the USB stick, What going on ?? (2 Replies)
Discussion started by: perleo
2 Replies

2. Solaris

Installing USB adsl modem?

Hello all, granted that I am an absolute beginner with Solaris, I'd like to use my adsl modem, t's a Zyxel prestige 630. I managed to install and configure it under Ubuntu using the drivers from Conexant AccessRunner ADSL USB modems with Linux ; is there a chance to do the same under Solaris 10... (0 Replies)
Discussion started by: clalfa
0 Replies

3. Solaris

Installing Solaris x86 through an external DVD drive through the USB port...

Is there a way to install Solaris 10 x86 with an external DVD drive that connects through the USB port? I would think I would run GRUB off of a floppy disk and somehow use that to make it look to the USB port to boot from but I don't know how to do that. Can anyone help me out? (1 Reply)
Discussion started by: Bradj47
1 Replies

4. UNIX for Dummies Questions & Answers

USB-USB cable between linux and windows computers

Is there an easy way to setup a cross-over cable (USB-USB) between a linux box and a windows PC? My 2 machines are next to each other but I really do not want to keep transfering my files using my USB drive. Thanks! (4 Replies)
Discussion started by: Xterra
4 Replies

5. Red Hat

Help reqd in installing wireless usb on fed 14

Hello all, I am fed up on trying to install my newly purchased usb wireless antenna to my fedora14 machine; so I seek help of all you linux masterminds out there. It worked well in my Win XP. Please help me in setting up it to my Fedora. . Details follows: The device model is : Aztech... (5 Replies)
Discussion started by: gsabarinath
5 Replies

6. Fedora

Transfer files to usb or Linux

Hi, I want to transfer files from my comany's Linux(fedora) to my home's linux personal machine? Can I do it? Copy to usb drive then upload files?? Thanks. (2 Replies)
Discussion started by: zhshqzyc
2 Replies

7. Solaris

Installing Solaris 10 x86 from USB flash drive

Dear friends, I have the DVD image of solaris 10 but I don't have DVD writer to burn it onto a dvd R. I was wondering if I could install Solaris from my 4gb usb flash drive as my PC supports booting from usb. I have installed Windows 7 this way recently, I have no idea about Solaris. Could you... (2 Replies)
Discussion started by: gabam
2 Replies

8. BSD

Installing FreeBsd. No usb device found

Hello, all. My english is not good. I have a problem installing FreeBsd. I have not CD-Roms, so i use program FlashBoot for convert iso-image to USB Device. After, I was beginning to install FreeBsd (Sorry my english) When it's time to choose an installation media, i select 9 USB:... (3 Replies)
Discussion started by: snet
3 Replies

9. Ubuntu

Installing UBUNTU on USB stick

I'd like to install the OS on my stick. I would like to be able to save my works there and install apps or customize the OS. What can I do Ps. At home I use an iMac, but in the school where I work there are only PC... Ty (2 Replies)
Discussion started by: Fabio_Puricelli
2 Replies
Device::USB::DevInterface(3pm)				User Contributed Perl Documentation			    Device::USB::DevInterface(3pm)

Device::USB::DevInterface
       This class encapsulates a USB Device Interface and the methods that object would support.

NAME
Device::USB::DevInterface - Access a device interface returned by libusb. VERSION
Version 0.11 SYNOPSIS
Device::USB:DevInterface provides a Perl object for accessing an interface of a configuration of a USB device using the libusb library. use Device::USB; my $usb = Device::USB->new(); my $dev = $usb->find_device( $VENDOR, $PRODUCT ); printf "Device: %04X:%04X ", $dev->idVendor(), $dev->idProduct(); $dev->open(); my $cfg = $dev->config()->[0]; my $inter = $cfg->interfaces()->[0]; print "Interface:", $inter->bInterfaceNumber(), " name: ", $dev->get_string_simple($iter->iInterface()), ": endpoint count: ", $inter->nNumEndpoints(), " "; See USB specification for an explanation of the attributes of an interface. DESCRIPTION
This module defines a Perl object that represents the data associated with a USB device configuration's interface. The object provides read-only access to the important data associated with the interface. METHODS There are several accessor methods that return data from the interface. Each is named after the field that they return. These accessors include: bInterfaceNumber The 0-based number of this interface. bAlternateSetting Value used to select this alternate setting for the interface specified in bInterfaceNumber. bNumEndpoints Number of endpoints (excluding endpoint 0) available on this interface. If the value is 0, only the control interface is supported. bInterfaceClass Class code as specified by the USB-IF. A value of 0xff is a vendor-specific interface class. bInterfaceSubClass Subclass code specified by the USB-IF. If bInterfaceClass is not 0xff, this field must use only subclasses specified by the USB-IF. bInterfaceProtocol The InterfaceProtocol as specified by the USB-IF. A value of 0xff uses a vendor-specific protocol. iInterface Returns the index of the string descriptor describing this interface. The string can be retrieved using the method "Device::USB::Device::get_string_simple". endpoints Returns a list of endpoint objects associated with this interface. DIAGNOSTICS
This is an explanation of the diagnostic and error messages this module can generate. DEPENDENCIES
This module depends on the Carp, Inline and Inline::C modules, as well as the strict and warnings pragmas. Obviously, libusb must be available since that is the entire reason for the module's existence. AUTHOR
G. Wade Johnson (wade at anomaly dot org) Paul Archer (paul at paularcher dot org) Houston Perl Mongers Group BUGS
Please report any bugs or feature requests to "bug-device-usb@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Device::USB>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. ACKNOWLEDGEMENTS
Thanks go to various members of the Houston Perl Mongers group for input on the module. But thanks mostly go to Paul Archer who proposed the project and helped with the development. COPYRIGHT &; LICENSE Copyright 2006 Houston Perl Mongers This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2008-06-02 Device::USB::DevInterface(3pm)
All times are GMT -4. The time now is 03:53 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy