Sponsored Content
Full Discussion: Knoppix and an old Dell
Special Forums Hardware Filesystems, Disks and Memory Knoppix and an old Dell Post 78699 by ECBROWN on Thursday 21st of July 2005 02:00:02 PM
Old 07-21-2005
Knoppix and an old Dell

Sorry if this post is in the wrong location. I'm trying to pull some files off of an old Dell box. I've not been able to get it to boot off of the HD, so I tried to use Knoppix. At boot time; I get the following error:

Loading spec packet failed, trying to wing it
isolinux 2.04: failed to locate cdrom; boot failed.

I imagine the problem is somewhere in the BIOS. Is there anything specific I should be looking for? I've already enable CD-ROM boot option in the bios. I can post the specs of the PC later this evening.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

help running Knoppix

i need help running Knoppix on my comp (which is windows). I have the cd with the iso on it and it works on my moms computer but not mine :( this is what it says to do How do I run KNOPPIX? In order to start the CD, first adjust the boot list in the BIOS Setup of your computer to boot from CD... (4 Replies)
Discussion started by: smokinchili21
4 Replies

2. UNIX for Dummies Questions & Answers

KNOPPIX CD not Booting

I have downloaded KNOPIIX and burned it on a CD, it niether boots from CD nor could I open the file, it seems the extension is .iso, would you mind sending me your comment,please. Thank you very much (2 Replies)
Discussion started by: amir
2 Replies

3. Debian

knoppix version?

hi all again!! just a stupide question: how do you find the version of a knoppix? like the /etc/mandrake-release on mdk machines?? I have no idea of where to search.. Jason (5 Replies)
Discussion started by: penguin-friend
5 Replies

4. UNIX for Advanced & Expert Users

About the usage of knoppix

I hv boot my crashed RH server with knoppix linux cd , the server can connect internet now , I want to copy some files from my server to internet , but now I only found the below device path , could suggest how can I see my original path (eg. /home/ , /usr , / tmp etc, because I hv some important... (1 Reply)
Discussion started by: ust
1 Replies

5. Ubuntu

How can I get Knoppix on HDD

Umm How can I get the Knoppix can be booted off my hard drive instead of the CD. I dont like using the CD. :confused: (4 Replies)
Discussion started by: shade11
4 Replies

6. SuSE

knoppix

Hi, I want to learn linux but I don't want to install on my hard drive. I came to know about knoppix that could give me the answer. But If I download the same (approx 700 MB) from free download site and copy it to CD, Will it work ? please help. (2 Replies)
Discussion started by: sanjay1979
2 Replies

7. UNIX for Dummies Questions & Answers

Knoppix

Hello All, I have a Knoppix CD. I am able to boot Knoppix(Linux) from the CD. How do I save a document that I created using OpenOffice(Writer) to either my harddrive on Windows or to a USB instead of the CD itself. I am new to Knoppix and am not sure of the GUI. I tried mounting the USB... (2 Replies)
Discussion started by: AnilAnand
2 Replies

8. UNIX for Dummies Questions & Answers

Knoppix; What's the gist of it.

I have a couple of Rescue Disks I was experimenting with and someone suggested that I use Knoppix instead. I have the newest version of it and it seems more like an Emergency O.S than anything else. The only useful tool I can find on it is Gparted. Do you have to add Emergency Applications to it? ... (5 Replies)
Discussion started by: theKbStockpiler
5 Replies
Info::Layer3::Dell(3pm) 				User Contributed Perl Documentation				   Info::Layer3::Dell(3pm)

NAME
SNMP::Info::Layer3::Dell - SNMP Interface to Dell Power Connect Network Devices AUTHOR
Eric Miller SYNOPSIS
# Let SNMP::Info determine the correct subclass for you. my $dell = new SNMP::Info( AutoSpecify => 1, Debug => 1, DestHost => 'myswitch', Community => 'public', Version => 1 ) or die "Can't connect to DestHost. "; my $class = $dell->class(); print "SNMP::Info determined this device to fall under subclass : $class "; DESCRIPTION
Provides abstraction to the configuration information obtainable from an Dell Power Connect device through SNMP. D-Link and the IBM BladeCenter Gigabit Ethernet Switch Module also use this module based upon MIB support. For speed or debugging purposes you can call the subclass directly, but not after determining a more specific class using the method above. my $dell = new SNMP::Info::Layer3::Dell(...); Inherited Classes SNMP::Info::Layer3 Required MIBs Dell-Vendor-MIB RADLAN-Physicaldescription-MIB RADLAN-rlInterfaces RADLAN-HWENVIROMENT Inherited Classes' MIBs See classes listed above for their required MIBs. GLOBALS
These are methods that return scalar value from SNMP $dell->os_ver() ("productIdentificationVersion") $dell->dell_id_name() ("productIdentificationDisplayName") $dell->model() Returns model type. Returns numeric from ("productIdentificationDisplayName") if available, otherwise if returns description(). $dell->vendor() Returns 'dell', 'dlink', or 'ibm' based upon the IANA enterprise number in id(). Defaults to 'dlink'. $dell->os() Returns 'dell', 'dlink', or 'ibm' based upon the IANA enterprise number in id(). Defaults to 'dlink'. Overrides $dell->serial() Returns serial number. Returns ("rlPhdUnitGenParamSerialNum") if available, otherwise uses the Layer3 serial method. Globals imported from SNMP::Info::Layer3 See documentation in "GLOBALS" in SNMP::Info::Layer3 for details. TABLE METHODS
These are methods that return tables of information in the form of a reference to a hash. RADLAN Interface Table ("swIfTable") $dell->dell_duplex_admin() ("swIfDuplexAdminMode") $dell->dell_duplex() ("swIfDuplexOperMode") $dell->dell_tag_mode() ("swIfTaggedMode") $dell->dell_i_type() ("swIfType") $dell->dell_fc_admin() ("swIfFlowControlMode") $dell->dell_speed_admin() ("swIfSpeedAdminMode") $dell->dell_auto() ("swIfSpeedDuplexAutoNegotiation") $dell->dell_fc() ("swIfOperFlowControlMode") Overrides $dell->interfaces() Returns the map between SNMP Interface Identifier (iid) and physical port name. Uses name if available instead of description since descriptions are sometimes not unique. $dell->i_duplex_admin() Returns reference to hash of iid to current link administrative duplex setting. $dell->fw_mac() Returns reference to hash of forwarding table MAC Addresses. Some devices don't implement the "BRIDGE-MIB" forwarding table, so we use the "Q-BRIDGE-MIB" forwarding table. Fall back to the "BRIDGE-MIB" if "Q-BRIDGE-MIB" doesn't return anything. $dell->fw_port() Returns reference to hash of forwarding table entries port interface identifier (iid) Some devices don't implement the "BRIDGE-MIB" forwarding table, so we use the "Q-BRIDGE-MIB" forwarding table. Fall back to the "BRIDGE-MIB" if "Q-BRIDGE-MIB" doesn't return anything. Table Methods imported from SNMP::Info::Layer3 See documentation in "TABLE METHODS" in SNMP::Info::Layer3 for details. perl v5.12.4 2011-09-28 Info::Layer3::Dell(3pm)
All times are GMT -4. The time now is 05:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy