Re: [CentOS] extend raid volume - new drive
2009/4/25 dnk > Hi there, I have a system with the following: > > > Disk /dev/md0: 1000.2 GB, 1000202174464 bytes > 2 heads, 4 sectors/track, 244189984 cylinders > Units = cylinders of 8 * 512 = 4096 bytes > > Disk /dev/md0 doesn't contain a valid partition table > > > Now I just added a new hard drive (sdc). > > I was wondering how to go about (if possible) to add this drive to my > existing partitions with LVM. > > Now I never setup this system (Another person had), and if i am > reading the above right, it appears as though they did not use LVM for > the raid. > > The system has the OS on a standalone drive, the home folder is on the > two raided drives. I was hoping to extend my home folder to take > advantage of my new drive. > > Recommendations? > It should be possible to extend your raid1 to a third drive pretty easily which would give you an extra 500GB of space... You'll probably want to look at mdadm using grow to take the array up to 3 drives and manage to add the new disk and once you're done extending the array, you'll likely want to look at resize2fs to extend the filesystem to use the extra space... If you wanted to get a whole extra TB of space rather than just 500GB, it would be a bit more complex, the simplest solution I can think of right now would be something along the lines of backing up the existing home folder to the new drive, destroying the existing array then creating a new degraded raid5 array across the two old disks, restoring the home folder back to the new array before adding the new disk into the array... Of course... backups recommended before doing this... d ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Port Forwarding woes
2009/4/28 Filipe Brandenburger > Hi, > > On Mon, Apr 27, 2009 at 16:01, Bo Lynch wrote: > > I think I found the culprit but not sure if by taking this out it will be > > a risk. When I remove this statement things work > > iptables -A FORWARD -i eth0 -m state --state NEW, INVALID -j DROP > > > > If I drop the NEW it works. Should I be concerned from I security stand > > point? > > The point of that rule is to drop anything you did not handle before. > That rule is supposed to be the last one in the list of rules. > > The best solution in your case is probably to move your other rules > above that one. > Indeed, that or using iptables -I to insert the other rules... or better yet, do as you say and put the new rules above the DROP and rather than using a script, use /etc/sysconfig/iptables for the configuration and use iptables-restore ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] kickstart problems...
From: Fabian Arrotin > John Doe wrote: > > I am creating CentOS install usb keys and, apart from a few problems, it > mostly works... > > 1. OT: My server HP does not seem to want to boot on it if I set the write > protection on. > > 2. Anaconda tries to fetch the ks.cfg too early... It detects sda, then > detects the > >RAID adapter, then re-detects sda with a "waiting for device to settle > before scanning". > >Anaconda tries to access the ks.cfg file in the middle of this waiting. > >If, once the detection is over (just 2-3 seconds later), I retry, it > > works. > > 3. Error message "cannot mount read/write, will mount read-only" (I like to > write protect) > > 4. OT: fs corruption ont he USB keys... > >I copy the iso file on the key (no error message), then compare it to > > the > original and > >some random differences appear. I noticed in the logs: > >"ext2_new_block: Allocating block in system zone - block = 65536" > >"ext2_free_blocks: bit already cleared for block 88678" > >"ext2_free_blocks: Freeing blocks not in datazone - block = 3003818537, > count = 1" > > Any idea how to fix 2. and 3. ? > Is there a particular reason why you don't/can't use pxe boot and > fetching the ks files over the network ? I like to have everything on the key and not have to deal with network at setup time. Do you imply that fetching the ks.cfg from usb is not supposed to work? JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] extend raid volume - new drive
2009/4/28 James Bensley > Hi there, > > Just to clarify; You have two 1TB disk that are mirrored (raid 1)? > > Normally a mirror can't be extended as the mirror is between block 0 > to 100 (for example if 100 was the end of the drive) on one > drive with block 0 to 100 on the other (if you have used block > level mirror, you could of chosen byte level mirroring?). With RAID 1, > mirrors require an even number of disks. Linux software raid1(e) allows any number of drives to be used such that each block exists on two devices (i.e block 0 on drives a and b, block 1 on drives c and a, block 2 on drives b and c etc...), and it's possible to grow an existing array onto additional drives, though it could take some time as the data gets redistributed across the disks. How is you RAID set up, is it software or hardware? If hardware, what > raid controller/card are you using? How much are you looking to extend > the storage capacity by? How much does redundancy matter to you? Do > you just want speed (i.e. a stripe, RAID 0)? > His fdisk output shows that software raid is being used such that the filesystem exists directly on top of the md0 device... d ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] extend raid volume - new drive
Thanks for the clarification, I have no experience with software raid only hardware which you can probably tell from my response as it was slightly bias to hardware raid options but hey, that's my two pence ;) James. -BEGIN GEEK CODE BLOCK- Version: 3.1 GIT/MU/U dpu s: a--> C++>$ U+> L++> B-> P+> E?> W+++>$ N K W++ O M++>$ V- PS+++ PE++ Y+ PGP t 5 X+ R- tv+ b+> DI D+++ G+ e(+) h--(++) r++ z++ --END GEEK CODE BLOCK-- ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] extend raid volume - new drive
Hi there, Just to clarify; You have two 1TB disk that are mirrored (raid 1)? Normally a mirror can't be extended as the mirror is between block 0 to 100 (for example if 100 was the end of the drive) on one drive with block 0 to 100 on the other (if you have used block level mirror, you could of chosen byte level mirroring?). With RAID 1, mirrors require an even number of disks. You haven't said how large you knew drive (sdc) is? Is it 500GBs or 1000? If for example it was 1000, you would need to buy another 1000GB drive, and set up a second mirror with the two new drives. So now you have two 1TB mirrors and stripe across them (http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29) giving you 2TB of space that is mirrored also for redundancy (then you would have the redundancy of mirroring plus the speed of striping, or near there). You could go the route of turning it into a Raid 5 as mentioned by "D" which would give you a middle man in that its a bit faster than a mirror (but not as fast as a stripe) and you still have some redundancy against a drive failure (but not as much as a RAID 1+0). How is you RAID set up, is it software or hardware? If hardware, what raid controller/card are you using? How much are you looking to extend the storage capacity by? How much does redundancy matter to you? Do you just want speed (i.e. a stripe, RAID 0)? A few more details would be great. James ;) -BEGIN GEEK CODE BLOCK- Version: 3.1 GIT/MU/U dpu s: a--> C++>$ U+> L++> B-> P+> E?> W+++>$ N K W++ O M++>$ V- PS+++ PE++ Y+ PGP t 5 X+ R- tv+ b+> DI D+++ G+ e(+) h--(++) r++ z++ --END GEEK CODE BLOCK-- ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] E-Mail Serving Options
Les Mikesell wrote: > Jason Todd Slack-Moehrle wrote: > >> Hi All, >> >> What are my e-mail serving options? I need to host POP, IMAP and SMTP. >> I must admit that non-windows e-mail hosting has always been a chore >> for me. I remember QMail and QPopper IIRC. >> >> > > For some reasonably small number of users you might like the > appliance-like SME server distribution from http://www.contribs.org. It > is pretty much 'just-add-users' out of the box. I second SME, with one caviat. You cant' have the same user name in two mail domains on one server. You have to play games with aliases for this. This limitation is well documented in the Wiki. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] 5.3 on an EeePC??
Beartooth wrote: > On Mon, 27 Apr 2009 12:24:57 -0700, nate wrote: > > >> Beartooth wrote: >> >>> I have an ASUS EeePC 701 (with 2GB of RAM and an 8 GB card), on >>> which I've installed CentOS on the hard-drive-plus-card. But it can't >>> even use my eth0. >>> >>>Some one on a local LUG, where I had mentioned that other OSs did >>>fine >>> with all the same exact hardware, suggested that CentOS, being designed >>> for stability rather than the bleeding edge, likely lacks drivers; so I >>> need to get some. >>> >>>Anybody know what drivers (for wireless as well as ethernet cable) I >>> need, and how/where to get ones to fit CentOS?? >>> >> Why do you want CentOS on an EeePC ? It's not really intended for that >> purpose, if your having to ask where to get the drivers for it your >> probably not suited for running CentOS on the EeePC. Your better off >> with Fedora, or Ubuntu or something that has broader hardware support. >> > > I have a strong if perhaps irrational preference for the .rpm > family; I have indeed installed and run F8, F9, F10, and Eeedora on this > machine. Unfortunately, until I can afford to replace it with a somewhat > larger netbook, what's left of my eyeballs and fingers limits me to using > it in waiting rooms, and not much of anywhere else. > > Given that limitation, speed of boot becomes a major criterion. > F10 (and also, believe it or not, Pupeee) took *over* ten minutes -- yes, > real sixty-second minutes; it's not a typo -- just to boot. And then had > to find wifi. > WHAT!!??? I just booted mine for the morning, and it was on the login GUI in 50 SECONDS! Once I entered my password it was connected to the network in under 30 SECONDS (and I use WPA-PSK). You have install/setup problems. What services are you running? There may be a number of services that are waiting on the network to come up to check something and are waiting for timeouts, missing that the link is down so don't bother to try (ntp does it right, for example). > > >> I installed Ubuntu 9.04 netbook remix on my EeePC 2G surf yesterday(onto >> a 4G SD card), it was pretty painless although the general UI has too >> much eye candy, so it is choppy. The wiki says future kernel updates >> should address some of the sluggishness. >> > > I've also been trying plain Ubuntu, Eeebuntu, Crunchbang, > DreamLinux, and a couple more. > > I'll run an OS of that ilk if I have to. > > But for fifty-odd years, the Baby Boomers have trodden my heels, > doing all I do a few years later. Some of them, even more than I, will be > wanting a mature RedHat-type OS, well back from the bleeding edge, to > enable them to check their email, etc., rather than thumb antediluvian > magazines in waiting rooms. > I am 58, approaching 59. Sat down in front of my first TeleType (running at 55 Baud) in '66; BASIC was 2 years old. I like stablity, but after a number of years on Centos, and the evolving rate of hardware, I have bit the bullet this year and added both FC9 and FC10 to my platform mix. Of course the first driver was to get the 2.6.27 kernel to get IPsec BEET mode. > What's more, CentOS will be able to oblige them, once it gets up > to something like present Fedora kernels. Why not a little sooner? > That is Redhat's call when they put it into RHEL, ask them. > And just in case, do please tell me where to get this ultra- > exemplary netbook remix, which I have somehow failed to encounter. (I > think all my Ubuntoid OSs so far are 8-based.) > ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] Update notification
CentOS 5.3 New updates available used to be flagged in the (Gnome) desktop notification area, but I don't get them any longer. What could be the problem? yum-updatesd is set up with the default configuration (dbus), and on the machines I changed the notification to email, I do indeed receive these emails. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] extend raid volume - new drive
dnk wrote: > Hi there, I have a system with the following: > > # fdisk -l > > Disk /dev/sda: 80.0 GB, 800 bytes > 255 heads, 63 sectors/track, 9726 cylinders > Units = cylinders of 16065 * 512 = 8225280 bytes > > Device Boot Start End Blocks Id System > /dev/sda1 * 1 13 104391 83 Linux > /dev/sda2 14947175971385 83 Linux > /dev/sda394729726 2048287+ 82 Linux swap / > Solaris > > Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes > 255 heads, 63 sectors/track, 121601 cylinders > Units = cylinders of 16065 * 512 = 8225280 bytes > > Device Boot Start End Blocks Id System > /dev/sdb1 * 1 121601 976760001 fd Linux raid > autodetect > > > Disk /dev/sdd: 1000.2 GB, 1000204886016 bytes > 255 heads, 63 sectors/track, 121601 cylinders > Units = cylinders of 16065 * 512 = 8225280 bytes > > Device Boot Start End Blocks Id System > /dev/sdd1 * 1 121601 976760001 fd Linux raid > autodetect > > Disk /dev/md0: 1000.2 GB, 1000202174464 bytes > 2 heads, 4 sectors/track, 244189984 cylinders > Units = cylinders of 8 * 512 = 4096 bytes > > Disk /dev/md0 doesn't contain a valid partition table > > > Now I just added a new hard drive (sdc). > > I was wondering how to go about (if possible) to add this drive to my > existing partitions with LVM. > > Now I never setup this system (Another person had), and if i am > reading the above right, it appears as though they did not use LVM for > the raid. > > The system has the OS on a standalone drive, the home folder is on the > two raided drives. I was hoping to extend my home folder to take > advantage of my new drive. > > Recommendations? WHat size is the new disk? If it's 1GB, you have many options. If not, there will be trade offs getting it into your system. If 1G, then - add disk to md0 for 3 way mirror. no increase in space, added safety/redundancy, current data kept. - convert to raid5 increase in space, slight reduction in safety/redundancy, current data kept. - convert all to LVM flexible, largest storage, no redundancy, current data kept. - convert to raid0 fast, largest storage, no redundancy, not flexible as LVM, destroys current data. If the third disk in not 1GB, then - convert to any raid available space will be dictated by the smallest device/partition, wastes disk space, same other raid features as above. - convert all to LVM flexible, largest storage, no redundancy, current data kept. - keep md0 as is, add sdc as a separate mount. easy, not flexible storage, reduced safety/redundancy, current data kept. - trade for a 1G disk. -- tkb ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] 5.3 on an EeePC??
Beartooth wrote: > I have an ASUS EeePC 701 (with 2GB of RAM and an 8 GB card), on > which I've installed CentOS on the hard-drive-plus-card. But it can't > even use my eth0. > >Some one on a local LUG, where I had mentioned that other OSs did fine > with all the same exact hardware, suggested that CentOS, being designed > for stability rather than the bleeding edge, likely lacks drivers; so I > need to get some. > >Anybody know what drivers (for wireless as well as ethernet cable) I > need, and how/where to get ones to fit CentOS?? I have the EXACT same hardware, but am running FC10 on mine. Works just great. And I have both suspend and hibernate working. Ethernet and WiFi work with NetworkManager with no problems, so far. As nice it is to stay with Centos across the board, I am moving more into using FC for notebooks. However, I am still reluctant to make the move on a notebook that is my 'workhorse'; I need more stablity for something I count on for my job. FC is for tools. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] 5.3 on an EeePC??
Robert Moskowitz wrote: > >> >> Given that limitation, speed of boot becomes a major criterion. >> F10 (and also, believe it or not, Pupeee) took *over* ten minutes -- yes, >> real sixty-second minutes; it's not a typo -- just to boot. And then had >> to find wifi. >> > > WHAT!!??? > > I just booted mine for the morning, and it was on the login GUI in 50 > SECONDS! > > Once I entered my password it was connected to the network in under 30 > SECONDS (and I use WPA-PSK). > > You have install/setup problems. What services are you running? There > may be a number of services that are waiting on the network to come up > to check something and are waiting for timeouts, missing that the link > is down so don't bother to try (ntp does it right, for example). Now that you mention it, it does sound like sendmail/samba, etc., waiting for DNS on a disconnected network. -- Les Mikesell lesmikes...@gmail.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gary Greene wrote: > On 4/27/09 6:44 PM, "John R Pierce" wrote: > >> David M Lemcoe Jr. wrote: >>> If you are using PERC, it is simply not compatible with Linux, and >>> should never be. It is a terrible piece of hardware. I would recommend >>> using dmraid >> say huh? >> >> Admittedly I'm not up on the newer PERCs, but the older ones I've used >> were mostly LSI Logic/AMI Megaraid hardware, with Dell firmware, and >> seemed pretty damn solid to me. These were ultra320 scsi systems, with >> hotswap drive bays, and battery backed caches. > > PERCs work just fine under Linux (new and old). There are more than a few > people on this list using Dell servers (which a vast majority use PERC > controllers.) They are tested and certified against RHEL, so I can't see a > reason that they wouldn't "just work". > > ___ > CentOS mailing list > CentOS@centos.org > http://lists.centos.org/mailman/listinfo/centos Okay, well to both of you. Maybe I just have heard such bad experiences that I never really cared! haha. Sorry! I heard somewhere that PERC just didn't work, but apparently I am wrong. I've heard bad things with PERC though. Sorry! -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkn24nYACgkQe0Ain3PYkIYA3QCfZrC8pHYTYlfr5dPnBi953WIU IT4Aniwsh3WhnPmk9mUnL4Juxr0Ud4cZ =A0FA -END PGP SIGNATURE- ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Reset audio controller w/o rebooting?
From: Barry Brimer > I have similar problems in CentOS 5. I disable and enable the flash plugin in > firefox, and it seems to be corrected. My problem may be slightly different, > but this is how I 'fix' the problem. Same here, flash locks out the audio... mplayer gives me: Can't open audio device /dev/dsp: Device or resource busy Closing my browser fixes it... Maybe I should try with ALSA or ESD instead of autodetect which seems to choose OSS...? JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] kickstart problems...
From: John Doe > 4. OT: fs corruption ont he USB keys... >I copy the iso file on the key (no error message), then compare it to the > original and >some random differences appear. I noticed in the logs: >"ext2_new_block: Allocating block in system zone - block = 65536" >"ext2_free_blocks: bit already cleared for block 88678" >"ext2_free_blocks: Freeing blocks not in datazone - block = 3003818537, >count = 1" About the corruption problems, I noticed: kernel: attempt to access beyond end of device kernel: sdg2: rw=0, want=27039680368, limit=15746760 kernel: attempt to access beyond end of device kernel: sdg2: rw=0, want=7948148456, limit=15746760 kernel: attempt to access beyond end of device kernel: sdg2: rw=0, want=7948148456, limit=15746760 kernel: attempt to access beyond end of device kernel: sdg2: rw=0, want=10942330464, limit=15746760 kernel: attempt to access beyond end of device kernel: sdg2: rw=0, want=10942330464, limit=15746760 etc... The limit would look correct: 15746760*512=8062341120=8GB The usb-storage seems to have a little problem with the keys geometry... I am not even entirely filling the key; I fill it up to 60% It happens with 2 different (but same model) keys. # fdisk -l /dev/sdg Disk /dev/sdg: 8086 MB, 8086618112 bytes 249 heads, 62 sectors/track, 1023 cylinders Units = cylinders of 15438 * 512 = 7904256 bytes Device Boot Start End Blocks Id System /dev/sdg1 * 1 3 231266 FAT16 /dev/sdg2 41023 7873380 83 Linux Do USB keys need special geometries (not a boot problem)? Or could it be the corruption problem that was reported on the list with the new kernel...? Thx, JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] 5.3 on an EeePC??
On Tue, 28 Apr 2009 07:32:00 -0500, Les Mikesell wrote: > Robert Moskowitz wrote: >> >> >>> Given that limitation, speed of boot becomes a major criterion. >>> F10 (and also, believe it or not, Pupeee) took *over* ten minutes -- >>> yes, real sixty-second minutes; it's not a typo -- just to boot. And >>> then had to find wifi. >>> >>> >> WHAT!!??? >> >> I just booted mine for the morning, and it was on the login GUI in 50 >> SECONDS! >> >> Once I entered my password it was connected to the network in under 30 >> SECONDS (and I use WPA-PSK). >> >> You have install/setup problems. What services are you running? There >> may be a number of services that are waiting on the network to come up >> to check something and are waiting for timeouts, missing that the link >> is down so don't bother to try (ntp does it right, for example). > > Now that you mention it, it does sound like sendmail/samba, etc., > waiting for DNS on a disconnected network. Gentlemen, I thank you both -- and wish I had gotten to this point several weeks back. I'll go give F10 (or maybe F11) another try ASAP. Are you running full F10, or the install from the live CD, or what? Incidentally, it was only about last week that I discovered I could upgrade both the RAM (to the 2 GB it has now) and the SD card (from the 4 GB I had to the 8 GB now). That has of course made everything since seem better. And, btw, somebody on my local LUG found the drivers I needed. I installed them, and this morning the 701 connects just fine -- under CentOS 5.3. -- Beartooth Staffwright, PhD, Neo-Redneck Linux Convert Remember I know precious little of what I am talking about. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] 5.3 on an EeePC??
Beartooth wrote: > On Tue, 28 Apr 2009 07:32:00 -0500, Les Mikesell wrote: > > >> Robert Moskowitz wrote: >> >>> Given that limitation, speed of boot becomes a major criterion. F10 (and also, believe it or not, Pupeee) took *over* ten minutes -- yes, real sixty-second minutes; it's not a typo -- just to boot. And then had to find wifi. >>> WHAT!!??? >>> >>> I just booted mine for the morning, and it was on the login GUI in 50 >>> SECONDS! >>> >>> Once I entered my password it was connected to the network in under 30 >>> SECONDS (and I use WPA-PSK). >>> >>> You have install/setup problems. What services are you running? There >>> may be a number of services that are waiting on the network to come up >>> to check something and are waiting for timeouts, missing that the link >>> is down so don't bother to try (ntp does it right, for example). >>> >> Now that you mention it, it does sound like sendmail/samba, etc., >> waiting for DNS on a disconnected network. >> > > Gentlemen, I thank you both -- and wish I had gotten to this > point several weeks back. I'll go give F10 (or maybe F11) another try > ASAP. Are you running full F10, or the install from the live CD, or what? > F10 from install CD then over net where I have the install repo locally. IE full install. Had to use a USB CD drive and change bios to boot from it. No biggy. > Incidentally, it was only about last week that I discovered I > could upgrade both the RAM (to the 2 GB it has now) and the SD card (from > the 4 GB I had to the 8 GB now). That has of course made everything since > seem better. > Oh, how do you unsoldier the drive? My understanding is this unit has the drive hard wired I have /root and /home on the 8Gb SD card and /boot, /var, and a 2Gb swap on the 4Gb SSD. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] CentOS-announce Digest, Vol 50, Issue 14
Send CentOS-announce mailing list submissions to centos-annou...@centos.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.centos.org/mailman/listinfo/centos-announce or, via email, send a message with subject or body 'help' to centos-announce-requ...@centos.org You can reach the person managing the list at centos-announce-ow...@centos.org When replying, please edit your Subject line so it is more specific than "Re: Contents of CentOS-announce digest..." Today's Topics: 1. CESA-2009:0449 Critical CentOS 5 i386 firefox Update (Karanbir Singh) 2. CESA-2009:0449 Critical CentOS 5 x86_64 firefox Update (Karanbir Singh) -- Message: 1 Date: Tue, 28 Apr 2009 04:57:59 -0400 From: Karanbir Singh Subject: [CentOS-announce] CESA-2009:0449 Critical CentOS 5 i386 firefox Update To: centos-annou...@centos.org Message-ID: <20090428085759.ga19...@tantra.karan.org> Content-Type: text/plain; charset=us-ascii CentOS Errata and Security Advisory 2009:0449 Critical Upstream details at : https://rhn.redhat.com/errata/RHSA-2009-0449.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) i386: 23bb47ba1dd3adb820b15be9f78eee05 firefox-3.0.10-1.el5.centos.i386.rpm c46ff1f49975c534b45bf40a69e63b16 xulrunner-1.9.0.10-1.el5.i386.rpm f3d9a0439df363571b2b354a187c67ec xulrunner-devel-1.9.0.10-1.el5.i386.rpm c4d447dba2f31f2547d51c52c38eded3 xulrunner-devel-unstable-1.9.0.10-1.el5.i386.rpm Source: 2b0828d4347069bf0ee1c3eb82ecb611 firefox-3.0.10-1.el5.centos.src.rpm 3f341a1b28a96b9c395d8baf1b9bf41c xulrunner-1.9.0.10-1.el5.src.rpm -- Karanbir Singh CentOS Project { http://www.centos.org/ } irc: z00dax, #cen...@irc.freenode.net -- Message: 2 Date: Tue, 28 Apr 2009 04:58:00 -0400 From: Karanbir Singh Subject: [CentOS-announce] CESA-2009:0449 Critical CentOS 5 x86_64 firefox Update To: centos-annou...@centos.org Message-ID: <20090428085800.ga19...@tantra.karan.org> Content-Type: text/plain; charset=us-ascii CentOS Errata and Security Advisory 2009:0449 Critical Upstream details at : https://rhn.redhat.com/errata/RHSA-2009-0449.html The following updated files have been uploaded and are currently syncing to the mirrors: ( md5sum Filename ) x86_64: 73e40d34220c5e860ce7e9cff1ba95e2 firefox-3.0.10-1.el5.centos.i386.rpm c77613f857ef63ec7bdb40d1892fc286 firefox-3.0.10-1.el5.centos.x86_64.rpm 9094aa9fe10c50c516058fe8c5f91ffd xulrunner-1.9.0.10-1.el5.i386.rpm 5cc5bc6d93e80a4f9aac5ca96a421a9f xulrunner-1.9.0.10-1.el5.x86_64.rpm c5e55dede6a4c91a47609e56d0e47f23 xulrunner-devel-1.9.0.10-1.el5.i386.rpm b4f100e74474fd4167344fd2604ee4ef xulrunner-devel-1.9.0.10-1.el5.x86_64.rpm 6256d78c34796780191f0203e4038c13 xulrunner-devel-unstable-1.9.0.10-1.el5.x86_64.rpm Source: 2b0828d4347069bf0ee1c3eb82ecb611 firefox-3.0.10-1.el5.centos.src.rpm 3f341a1b28a96b9c395d8baf1b9bf41c xulrunner-1.9.0.10-1.el5.src.rpm -- Karanbir Singh CentOS Project { http://www.centos.org/ } irc: z00dax, #cen...@irc.freenode.net -- ___ CentOS-announce mailing list centos-annou...@centos.org http://lists.centos.org/mailman/listinfo/centos-announce End of CentOS-announce Digest, Vol 50, Issue 14 *** ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] extend raid volume - new drive
On 28-Apr-09, at 2:48 AM, James Bensley wrote: You haven't said how large you knew drive (sdc) is? Is it 500GBs or 1000? If for example it was 1000, you would need to buy another 1000GB drive, and set up a second mirror with the two new drives. So now you have two 1TB mirrors and stripe across them (http://en.wikipedia.org/wiki/Nested_RAID_levels#RAID_10_.28RAID_1.2B0.29 ) giving you 2TB of space that is mirrored also for redundancy (then you would have the redundancy of mirroring plus the speed of striping, or near there). Sorry about that, it was another 1 TB drive. I forgot to include that detail d ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] new install and software raid
Is there a reason why after a software raid install (from kickstart) that md1 is always unclean. md0 seems fine. boot screen says md1 is dirty and cat /proc/mdstat show md1 as being rebuilt. Any ideas? Jerry --- my kickstart -- echo "bootloader --location=mbr --driveorder=$HD1SHORT --append=\"rhgb quiet\" " > /tmp/partition-information echo "clearpart --all --initlabel " >> /tmp/partition-information echo "part --ondisk=$HD1SHORT raid.01 --asprimary --bytes-per-inode=4096 --fstype="raid" --size=2 " >> /tmp/partition-information echo "part --ondisk=$HD1SHORT swap--asprimary --bytes-per-inode=4096 --fstype="swap" --size=4000" >> /tmp/partition-information echo "part --ondisk=$HD1SHORT raid.02 --asprimary --bytes-per-inode=4096 --fstype="raid" --size=1 --grow " >> /tmp/partition-information echo "part --ondisk=$HD2SHORT raid.03 --asprimary --bytes-per-inode=4096 --fstype="raid" --size=2 " >> /tmp/partition-information echo "part --ondisk=$HD2SHORT swap--asprimary --bytes-per-inode=4096 --fstype="swap" --size=4000" >> /tmp/partition-information echo "part --ondisk=$HD2SHORT raid.04 --asprimary --bytes-per-inode=4096 --fstype="raid" --size=1 --grow " >> /tmp/partition-information echo "raid / --bytes-per-inode=4096 --device=md0 --fstype="ext3" --level=1 raid.01 raid.03 " >> /tmp/partition-information echo "raid /home --bytes-per-inode=4096 --device=md1 --fstype="ext3" --level=1 raid.02 raid.04 " >> /tmp/partition-information ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] new install and software raid
- "Jerry Geis" wrote: > Is there a reason why after a software raid install (from kickstart) > that md1 is always unclean. md0 seems fine. > > boot screen says md1 is dirty and > cat /proc/mdstat show md1 as being rebuilt. > > Any ideas? > > Jerry > > --- my kickstart -- > STUFF md0 is probably your boot partition which is smaller and has very little data written to it. md1 on the other hand is probably your / where all software is installed. Unless you have a very high performance disk controller/drives, you'll usually find that it cannot keep up with initial format of the array, then the subsequent dumping of data to it during installation. Upon reboot, it'll simply restart the sync process and finish happily. I've seen this on nearly every md RAID1 system I install on. --Tim ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] USB device not detected (CentOS 4.7)
I recently purchased an I/O Magic USB enclosure for 3.5" IDE hard drive. Has anyone else used one of these? It works fine with Windows, except of course that Windows can't read the ext2 partitions on the disk I put into the enclosure. CentOS4 can't find the device, much less access the drive -- it doesn't show up in "lsusb" output, although the active light on the enclosure is on solid. I have other USB external drives (Maxtor OneTouch and WD MyBook) that work with CentOS4. Suggestions appreciated. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] new install and software raid
Jerry Geis wrote: > Is there a reason why after a software raid install (from kickstart) > that md1 is always unclean. md0 seems fine. > > boot screen says md1 is dirty and > cat /proc/mdstat show md1 as being rebuilt. Immediately after they're constructed, all RAID arrays are dirty and need to be rebuilt. Most likely, md0 completes its rebuild during your installation, but md1 does not. After reboot, md1's rebuild needs to complete. What you're seeing sounds perfectly normal. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not detected (CentOS 4.7)
On Tue, 2009-04-28 at 09:48 -0700, Bart Schaefer wrote: > I recently purchased an I/O Magic USB enclosure for 3.5" IDE hard > drive. Has anyone else used one of these? It works fine with > Windows, except of course that Windows can't read the ext2 partitions > on the disk I put into the enclosure. CentOS4 can't find the device, > much less access the drive -- it doesn't show up in "lsusb" output, > although the active light on the enclosure is on solid. I have other > USB external drives (Maxtor OneTouch and WD MyBook) that work with > CentOS4. check what it says about the drive in dmesg after you plugged it in. Craig -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] Package Updater problems
Hello! I'm afraid that I don't understand redhat's bugzilla -- there's an approx 10-character wide box for reporting the bug and it always claims that that's not a bug. I'm sure I'm missing something. Anyway, here's the problems: Using Centos 5.2 and the "Software Updater/Package Updater/pup", I winnowed the problem updates down to six packages: 1: Updated file packages available 2: Updated gcc43 packages available 3: Updated gcc packages available 4: Updated pam packages available 5: Updated redhat-logos packages available 6: Updated redhat-menus packages available I set it up so that the package updater should only try to handle one update, and I repeated this six times, once per problem update. BTW, it'd really help if there was a button on pup to deselect all updates (and let me click a few on). - 1: Updated file packages available Component: pirut Summary: TBe8ae967a sqlitesack.py:94:_read_db_obj:TypeError: unsubscriptable object Traceback (most recent call last): File "/usr/sbin/pup", line 407, in _apply output = self.applyChanges(self.mainwin) File "/usr/lib/python2.4/site-packages/pirut/__init__.py", line 813, in applyChanges self.checkDeps(mainwin) File "/usr/lib/python2.4/site-packages/pirut/__init__.py", line 550, in checkDeps (result, msgs) = self.buildTransaction() File "/usr/lib/python2.4/site-packages/yum/__init__.py", line 647, in buildTransaction (rescode, restring) = self.resolveDeps() File "/usr/lib/python2.4/site-packages/yum/depsolve.py", line 704, in resolveDeps for po, dep in self._checkFileRequires(): File "/usr/lib/python2.4/site-packages/yum/depsolve.py", line 939, in _checkFileRequires if not self.tsInfo.getOldProvides(filename) and not self.tsInfo.getNewProvides(filename): File "/usr/lib/python2.4/site-packages/yum/transactioninfo.py", line 414, in getNewProvides for pkg, hits in self.pkgSack.getProvides(name, flag, version).iteritems(): File "/usr/lib/python2.4/site-packages/yum/packageSack.py", line 300, in getProvides return self._computeAggregateDictResult("getProvides", name, flags, version) File "/usr/lib/python2.4/site-packages/yum/packageSack.py", line 470, in _computeAggregateDictResult sackResult = apply(method, args) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 861, in getProvides return self._search("provides", name, flags, version) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 43, in newFunc return func(*args, **kwargs) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 837, in _search for pkg in self.searchFiles(name, strict=True): File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 43, in newFunc return func(*args, **kwargs) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 586, in searchFiles self._sql_pkgKey2po(rep, cur, pkgs) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 470, in _sql_pkgKey2po pkg = self._packageByKey(repo, ob['pkgKey']) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 413, in _packageByKey po = self.pc(repo, cur.fetchone()) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 68, in __init__ self._read_db_obj(db_obj) File "/usr/lib/python2.4/site-packages/yum/sqlitesack.py", line 94, in _read_db_obj setattr(self, item, _share_data(db_obj[item])) TypeError: unsubscriptable object Local variables in innermost frame: item: name db_obj: None - 2: Updated gcc43 packages available Component: pirut Summary: TBe8ae967a sqlitesack.py:94:_read_db_obj:TypeError: unsubscriptable object Traceback (most recent call last): File "/usr/sbin/pup", line 407, in _apply output = self.applyChanges(self.mainwin) File "/usr/lib/python2.4/site-packages/pirut/__init__.py", line 813, in applyChanges self.checkDeps(mainwin) File "/usr/lib/python2.4/site-packages/pirut/__init__.py", line 550, in checkDeps (result, msgs) = self.buildTransaction() File "/usr/lib/python2.4/site-packages/yum/__init__.py", line 647, in buildTransaction (rescode, restring) = self.resolveDeps() File "/usr/lib/python2.4/site-packages/yum/depsolve.py", line 704, in resolveDeps for po, dep in self._checkFileRequires(): File "/usr/lib/python2.4/site-packages/yum/depsolve.py", line 939, in _checkFileRequires if not self.tsInfo.getOldProvides(filename) and not self.tsInfo.getNewProvides(filename): File "/usr/lib/python2.4/site-packages/yum/transactioninfo.py", line 414, in getNewProvides for pkg, hits in self.pkgSack.getProvides(name, flag, version).iteritems(): File "/usr/lib/python2.4/site-packages/yum/packageSack.py", line 300, in getProvides return self._computeAggregateDictResult("getProvides", name, flags, version) F
Re: [CentOS] Dell mirror raid boot problems
David M Lemcoe Jr. wrote: > Okay, well to both of you. Maybe I just have heard such bad > experiences that I never really cared! haha. Sorry! I heard somewhere > that PERC just didn't work, but apparently I am wrong. > > I've heard bad things with PERC though. > > Sorry! > > We've got tons of machines with PERC5's and PERC6's running flawlessly with CentOS 4.x and 5.x. It really tends to 'just work'. -- Ryan Pugatch Systems Administrator TripAdvisor ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Package Updater problems
On Tue, Apr 28, 2009 at 01:04:12PM -0400, Charles E Campbell Jr wrote: > Hello! > > I'm afraid that I don't understand redhat's bugzilla -- there's an > approx 10-character wide box for reporting the bug and it always claims > that that's not a bug. I'm sure I'm missing something. > > Anyway, here's the problems: > > Using Centos 5.2 and the "Software Updater/Package Updater/pup", I > winnowed the problem updates down to six packages: > > 1: Updated file packages available > 2: Updated gcc43 packages available > 3: Updated gcc packages available > 4: Updated pam packages available > 5: Updated redhat-logos packages available > 6: Updated redhat-menus packages available > > I set it up so that the package updater should only try to handle one > update, and I repeated this six times, once per problem update. > BTW, it'd really help if there was a button on pup to deselect all > updates (and let me click a few on). If you run 'yum clean all' from a terminal and try again do you get the same error? (run as root) You might try running your update via yum as well -- yum update or just yum update. Ray ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] E-Mail Serving Options
Robert Moskowitz wrote: > Les Mikesell wrote: >> Jason Todd Slack-Moehrle wrote: >> >>> Hi All, >>> >>> What are my e-mail serving options? I need to host POP, IMAP and SMTP. >>> I must admit that non-windows e-mail hosting has always been a chore >>> for me. I remember QMail and QPopper IIRC. >>> >>> >> For some reasonably small number of users you might like the >> appliance-like SME server distribution from http://www.contribs.org. It >> is pretty much 'just-add-users' out of the box. > > I second SME, with one caviat. > > You cant' have the same user name in two mail domains on one server. You > have to play games with aliases for this. This limitation is well > documented in the Wiki. > > Might be worth referring to: http://www.centos.org/docs/5/html/Deployment_Guide-en-US/ch-email.html -- Ryan Pugatch Systems Administrator TripAdvisor ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Update notification
On 4/28/09, lheck...@users.sourceforge.net wrote: > CentOS 5.3 > > New updates available used to be flagged in the (Gnome) desktop > notification > area, but I don't get them any longer. What could be the problem? > > yum-updatesd is set up with the default configuration (dbus), and on the > machines I changed the notification to email, I do indeed receive these > emails. I thought I might have done something that caused me not to receive notifications from PUP or Pirut, after the upgrade from CentOS 5.2 to 5.3 (32 bit).. I am not getting those notification popups in GNOME either! However, on page 16 of the NSA manual about Hardening RHEL 5, they say that "The yum-updatesd service is not mature enough for an enterprise environment.." and they suggest disabling it and replacing with a "cron job that calls yum directly". ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] E-Mail Serving Options
Ryan Pugatch wrote: > Robert Moskowitz wrote: >> Les Mikesell wrote: >>> Jason Todd Slack-Moehrle wrote: >>> Hi All, What are my e-mail serving options? I need to host POP, IMAP and SMTP. I must admit that non-windows e-mail hosting has always been a chore for me. I remember QMail and QPopper IIRC. >>> For some reasonably small number of users you might like the >>> appliance-like SME server distribution from http://www.contribs.org. It >>> is pretty much 'just-add-users' out of the box. >> I second SME, with one caviat. >> >> You cant' have the same user name in two mail domains on one server. You >> have to play games with aliases for this. This limitation is well >> documented in the Wiki. >> >> > > Might be worth referring to: > http://www.centos.org/docs/5/html/Deployment_Guide-en-US/ch-email.html The picture is somewhat different under SME. While the bulk of the system is Centos based, email is a custom mix of qmail and dovecot configured to use maildir storage with some spam/virus checking and hoard webmail thrown in. -- Les Mikesell lesmikes...@gmail.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] E-Mail Serving Options
Les Mikesell wrote: > Ryan Pugatch wrote: >> Robert Moskowitz wrote: >>> Les Mikesell wrote: Jason Todd Slack-Moehrle wrote: > Hi All, > > What are my e-mail serving options? I need to host POP, IMAP and SMTP. > I must admit that non-windows e-mail hosting has always been a chore > for me. I remember QMail and QPopper IIRC. > > For some reasonably small number of users you might like the appliance-like SME server distribution from http://www.contribs.org. It is pretty much 'just-add-users' out of the box. >>> I second SME, with one caviat. >>> >>> You cant' have the same user name in two mail domains on one server. You >>> have to play games with aliases for this. This limitation is well >>> documented in the Wiki. >>> >>> >> Might be worth referring to: >> http://www.centos.org/docs/5/html/Deployment_Guide-en-US/ch-email.html > > The picture is somewhat different under SME. While the bulk of the > system is Centos based, email is a custom mix of qmail and dovecot > configured to use maildir storage with some spam/virus checking and > hoard webmail thrown in. > Sorry, I was just referring to setting up mail under standard CentOS :) -- Ryan Pugatch Systems Administrator TripAdvisor ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not detected (CentOS 4.7)
On Tue, Apr 28, 2009 at 10:01 AM, Craig White wrote: > On Tue, 2009-04-28 at 09:48 -0700, Bart Schaefer wrote: >> I recently purchased an I/O Magic USB enclosure for 3.5" IDE > > check what it says about the drive in dmesg after you plugged it in. Hmm. usb 1-6: new high speed USB device using address 4 scsi7 : SCSI emulation for USB Mass Storage devices Vendor: HDS72251 Model: 6VLAT80 Rev: 0 0 Type: Direct-Access ANSI SCSI revision: 02 SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) sdd: assuming drive cache: write through SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) sdd: assuming drive cache: write through (so far this is correct, it's a 160GB drive in the enclosure) (the leading space on the next line is literally there in dmesg) sdd:SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 ldm_validate_partition_table(): Disk read failed. SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 unable to read partition table Attached scsi disk sdd at scsi7, channel 0, id 0, lun 0 USB Mass Storage device found at 4 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 8 Buffer I/O error on device sdd, logical block 1 (the last three lines then repeat for each of sectors 16-568, logical blocks 2-71) SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 512 Buffer I/O error on device sdd, logical block 64 usb 1-6: USB disconnect, address 4 (that's where I unplugged) ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not detected (CentOS 4.7)
On Tue, 2009-04-28 at 10:58 -0700, Bart Schaefer wrote: > On Tue, Apr 28, 2009 at 10:01 AM, Craig White wrote: > > On Tue, 2009-04-28 at 09:48 -0700, Bart Schaefer wrote: > >> I recently purchased an I/O Magic USB enclosure for 3.5" IDE > > > > check what it says about the drive in dmesg after you plugged it in. > > Hmm. > > usb 1-6: new high speed USB device using address 4 > scsi7 : SCSI emulation for USB Mass Storage devices > Vendor: HDS72251 Model: 6VLAT80 Rev: 0 0 > Type: Direct-Access ANSI SCSI revision: 02 > SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) > sdd: assuming drive cache: write through > SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) > sdd: assuming drive cache: write through > > (so far this is correct, it's a 160GB drive in the enclosure) > (the leading space on the next line is literally there in dmesg) > > sdd:SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > ldm_validate_partition_table(): Disk read failed. > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > unable to read partition table > Attached scsi disk sdd at scsi7, channel 0, id 0, lun 0 > USB Mass Storage device found at 4 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 8 > Buffer I/O error on device sdd, logical block 1 > > (the last three lines then repeat for each of sectors 16-568, logical > blocks 2-71) > > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 512 > Buffer I/O error on device sdd, logical block 64 > usb 1-6: USB disconnect, address 4 > > (that's where I unplugged) if you have items of value on that drive, I would hook it to somewhere you believe it works and back it up. Beyond that, I would reformat the partitions but I suspect that the problem is more severe than a format and mkfs would fix. Craig -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] 5.3 on an EeePC??
Beartooth wrote: > I have an ASUS EeePC 701 (with 2GB of RAM and an 8 GB card), on > which I've installed CentOS on the hard-drive-plus-card. But it can't > even use my eth0. > >Some one on a local LUG, where I had mentioned that other OSs did fine > with all the same exact hardware, suggested that CentOS, being designed > for stability rather than the bleeding edge, likely lacks drivers; so I > need to get some. > >Anybody know what drivers (for wireless as well as ethernet cable) I > need, and how/where to get ones to fit CentOS?? > I wrote a page on the Wiki regarding CentOS 5.2 on the Eee PC (was a 900 model though) : http://wiki.centos.org/HowTos/Laptops/Asus/Eeepc But i admit also that i've not yet updated the page for 5.3 (and neither created a modified initrd.img to include the atl2 kernel module) .. I've updated my 5.2 Eee PC to 5.3 and everything was still working as expected ... it even removed the (previously needed) uvcvideo kernel module, now included in the base kernel. On the other hand, I also admit that i was tempted by F10 on the same machine to compare boot performance and we have to admit also that the 2.6.18-*.el5 kernel was surely not designed to be used on netbook : F10 boots faster and of course has by default everything needed (atl2, madwifi for the Atheros wifi card, newer alsa module for the sound card, better acpi support, etc ...) So running CentOS on the Eee PC is doable and everything is working (wired/wifi/webcam/suspend/hibernate) but real slow in comparison with F10 .. :/ -- -- Fabian Arrotin idea=`grep -i clue /dev/brain` test -z "$idea" && echo "sorry, init 6 in progress" || sh ./answer.sh ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] adding static route via network setup fails
I want to add the following route command route add -net 192.168.2.0/27 gw 192.168.2.3 via the normal network setup. The result should be the following routing table (the first line): 192.168.2.0/27 via 192.168.2.3 dev xenbr1 scope link 192.168.2.0/27 dev eth2 proto kernel scope link src 192.168.2.4 192.168.2.0/27 dev xenbr1 proto kernel scope link src 192.168.2.3 192.168.1.0/24 dev xenbr0 proto kernel scope link src 192.168.1.24 default via 192.168.1.1 dev xenbr0 I found: http://www.cyberciti.biz/faq/redhat-centos-fedora-linux-static-routing/ http://www.centos.org/docs/5/html/5.2/Deployment_Guide/s1-networkscripts- static-routes.html tells me to use sysconfig/route-xenbr1 But whatever syntax I try I get a variety of errors: Bringing up interface xenbr1: Error: an inet address is expected rather than "1"..168.2.3 Bringing up interface xenbr1: Error: an inet prefix is expected rather than "19/27"..2.0 Bringing up interface xenbr1: Error: either "to" is duplicate, or "192.168.2.3" is a garbage. "ringing up interface xenbr1: Cannot find device "xenbr1 route-xenbr1: #192.168.2.0/27 via 192.168.2.3 #GATEWAY0=192.168.2.3 #NETMASK0=255.255.255.224 #ADDRESS0=192.168.2.10 #default 192.168.2.3 dev xenbr1 192.168.2.0/27 via 192.168.2.3 dev xenbr1 (the commented out are from various tries, corresponding to the errors above) This is on a xen kernel. 2.6.18-128.1.6.el5xen Kai -- Kai Schätzl, Berlin, Germany Get your web at Conactive Internet Services: http://www.conactive.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not detected (CentOS 4.7)
On Tue, Apr 28, 2009 at 11:04 AM, Craig White wrote: > if you have items of value on that drive, I would hook it to somewhere > you believe it works and back it up. I already did that. The drive works fine if plugged directly into the IDE chain, or when using the external enclosure with WindowsXP. It only gets flaky this way when using the external enclosure with CentOS. Hence I'm pretty sure it's something to do with the enclosure. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] adding static route via network setup fails
Kai Schaetzl wrote: > I want to add the following route command > route add -net 192.168.2.0/27 gw 192.168.2.3 try any net 192.168.2.0 netmask 255.255.255.224 gw 192.168.2.3 in your /etc/sysconfig/static-routes file Though I'm not sure why you'd want to have a static route that points to a local interface, just set the subnet of the interface to 255.255.255.224 and you don't need a static route. I use that syntax and it works fine.. nate ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] adding static route via network setup fails
Kai Schaetzl wrote: > I want to add the following route command > route add -net 192.168.2.0/27 gw 192.168.2.3 > Assume 192.168.2.3 is reachable via eth0 (eg eth0's IP is 192.168.2.2). Make the file /etc/sysconfig/network-scripts/route-eth0: NETMASK0=255.255.255.224 ADDRESS0=192.168.2.0 GATEWAY0=192.168.2.3 This is all explained in /usr/share/doc/initscripts-8.45.19.EL/sysconfig.txt (or whatever the current version is.) > via the normal network setup. > The result should be the following routing table (the first line): > 192.168.2.0/27 via 192.168.2.3 dev xenbr1 scope link > 192.168.2.0/27 dev eth2 proto kernel scope link src 192.168.2.4 > 192.168.2.0/27 dev xenbr1 proto kernel scope link src 192.168.2.3 > 192.168.1.0/24 dev xenbr0 proto kernel scope link src 192.168.1.24 > default via 192.168.1.1 dev xenbr0 > > I found: > http://www.cyberciti.biz/faq/redhat-centos-fedora-linux-static-routing/ > http://www.centos.org/docs/5/html/5.2/Deployment_Guide/s1-networkscripts- > static-routes.html > > tells me to use sysconfig/route-xenbr1 > > But whatever syntax I try I get a variety of errors: > > Bringing up interface xenbr1: Error: an inet address is expected rather > than "1"..168.2.3 > Bringing up interface xenbr1: Error: an inet prefix is expected rather > than "19/27"..2.0 > Bringing up interface xenbr1: Error: either "to" is duplicate, or > "192.168.2.3" is a garbage. > "ringing up interface xenbr1: Cannot find device "xenbr1 > > route-xenbr1: > #192.168.2.0/27 via 192.168.2.3 > > #GATEWAY0=192.168.2.3 > #NETMASK0=255.255.255.224 > #ADDRESS0=192.168.2.10 > > #default 192.168.2.3 dev xenbr1 > > 192.168.2.0/27 via 192.168.2.3 dev xenbr1 > > (the commented out are from various tries, corresponding to the errors > above) > > This is on a xen kernel. 2.6.18-128.1.6.el5xen > > Kai > > ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] make fails building Perl 5.10.0 on C5.3 x86_64 (new install)
Hello, I tried to build Perl 5.10.0 on x86_64 using defaults $./Configure -des $make - snip last few lines of errors perlvars.h:178: warning: ISO C forbids conversion of function pointer to object pointer type perlvars.h:186: warning: ISO C forbids conversion of function pointer to object pointer type make: *** [globals.o] Error 1 end snip --- I'm not surprised since FC10 has several patches in the perl.spec for x86_64 Looks like I'm not going to get by without digging into what they did. Hope someone here can give me a scouting report. -- Mark ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] adding static route via network setup fails
Robert Moskowitz wrote on Tue, 28 Apr 2009 15:25:00 -0400: > Assume 192.168.2.3 is reachable via eth0 (eg eth0's IP is 192.168.2.2). > Make the file /etc/sysconfig/network-scripts/route-eth0: > > NETMASK0=255.255.255.224 > ADDRESS0=192.168.2.0 > GATEWAY0=192.168.2.3 eth0 does not have an IP no., it is a bridge. xenbr1 has the IP. Now look back in my mail :-) I used your exact syntax, but for route-xenbr. Just to make sure I used route-eth0 and it's not even carried out. Which makes sense, it's not an inet device. Kai -- Kai Schätzl, Berlin, Germany Get your web at Conactive Internet Services: http://www.conactive.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] Reconfiguring yum
Hi there -- I need to reconfigure yum on one of our centos 5.3 systems in order for the automatic updates to work. Currently the error messages that I am getting are shown below: $ sudo yum check-update Loaded plugins: allowdowngrade, changelog, downloadonly, fastestmirror, priorities, protectbase, tsflags, versionlock Loading mirror speeds from cached hostfile * base: mirrors.rit.edu * updates: mirrors.unbornmedia.com * c5-media: * contrib: mirror.atlanticmetro.net * centosplus: mirror.atlanticmetro.net * addons: mirror.highspeedweb.net * extras: mirror.anl.gov file:///media/CentOS/repodata/repomd.xml: [Errno 5] OSError: [Errno 2] No such file or directory: '/media/CentOS/repodata/repomd.x ml' Trying other mirror. file:///media/cdrecorder/repodata/repomd.xml: [Errno 5] OSError: [Errno 2] No such file or directory: '/media/cdrecorder/repodata/ repomd.xml' Trying other mirror. file:///media/cdrom/repodata/repomd.xml: [Errno 5] OSError: [Errno 2] No such file or directory: '/media/cdrom/repodata/repomd.xml ' Trying other mirror. Error: Cannot retrieve repository metadata (repomd.xml) for repository: c5-media. Please verify its path and try again What file(s) do I need to modify in order to fix this issue, and also what are the correct URL's to have in place? Thanks. The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly dispose of the e-mail. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Reconfiguring yum
Kaplan, Andrew H. wrote: > > Hi there -- > > I need to reconfigure yum on one of our centos 5.3 systems in order > for the automatic updates to work. > Currently the error messages that I am getting are shown below: > > $ sudo yum check-update > Loaded plugins: allowdowngrade, changelog, downloadonly, > fastestmirror, priorities, protectbase, tsflags, versionlock > Loading mirror speeds from cached hostfile > * base: mirrors.rit.edu > * updates: mirrors.unbornmedia.com > * c5-media: > why is c5-media enabled? that tells it to look at the CDROM thats mounted in /media/something vi /etc/yum.repos.d/CentOS-Media.repo and remove any line that says Enabled = 1 or similar. ... ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] adding static route via network setup fails
Nate wrote on Tue, 28 Apr 2009 12:21:48 -0700 (PDT): > any net 192.168.2.0 netmask 255.255.255.224 gw 192.168.2.3 > > in your /etc/sysconfig/static-routes file yes, this works, thanks! I have found a better method without adding a route in the meantime, but I wanted to know about this, just in case. > > Though I'm not sure why you'd want to have a static > route that points to a local interface, just set the > subnet of the interface to 255.255.255.224 and you > don't need a static route. That actually does not work. The net is set, of course, I think you would get an error if not. The case is a bit complicated. I want to reach a domU from another machine thru a crossover link and not via the switched network. For that purpose I added a private subnet to all involved NICs and to the domU. That works in one direction but not in the other direction. It also doesn't work from the dom0 itself. When I add this route it all works. Another solution is to use another private subnet for the third NIC in the machine. Originally, NIC2 and NIC3 had both an IP number from the same private subnet and NIC3 seems to have catched all the packets. And the whole thing was only necessary because of this: SUBJECT:[CentOS] eth0 killed when adding virtual interface and multipleNICs are present > > I use that syntax and it works fine.. Indeed, but it's not in the manual :-( I had read about it in a few postings, but it seemed to be obsoleted. I think the route-interface syntax does not work because it all involves an interface. The route add and the static-routes don't specify an interface. Kai -- Kai Schätzl, Berlin, Germany Get your web at Conactive Internet Services: http://www.conactive.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] Yum Update issues
Has anyone else run into this issue when running yum update? [r...@localhost ronb]# yum update Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * rpmforge: fr2.rpmfind.net * base: mirror.anl.gov * updates: styx.biochem.wfubmc.edu * addons: mirrors.tummy.com * extras: ftp.usf.edu Setting up Update Process Resolving Dependencies There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them. --> Running transaction check ---> Package mjpegtools.i386 0:1.9.0-0.6.rc2.el5.rf set to be updated ---> Package perl-SDL.i386 0:2.1.3-2.el5.rf set to be updated --> Processing Dependency: perl(Pod::ToDemo) for package: perl-SDL ---> Package SDL_gfx.i386 0:2.0.19-1.el5.rf set to be updated --> Finished Dependency Resolution perl-SDL-2.1.3-2.el5.rf.i386 from rpmforge has depsolving problems --> Missing Dependency: perl(Pod::ToDemo) is needed by package perl-SDL-2.1.3-2.el5.rf.i386 (rpmforge) Error: Missing Dependency: perl(Pod::ToDemo) is needed by package perl-SDL-2.1.3-2.el5.rf.i386 (rpmforge) I've already run yum clear all, but the problem came back when I ran yum update again. Firefox and xulrunner were also being "held up," but I was able to update them by running yum update firefox. As far as I can see there is no yum-complete-transaction command. Thanks for any pointers. -- RonB -- Using CentOS 5.3 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] eth0 killed when adding virtual interface and multiple NICs are present
JohnS wrote on Mon, 27 Apr 2009 11:09:56 -0400: > If you don't mind when you come to an answer would you please let me > know. I am interested to know. I could not find a real solution. I had to go to another way of creating the network setup for this machine (and maybe others, I will see) and disable the network-bridge script from xen. That new solution is documented on the xen-users mailing-list. Kai -- Kai Schätzl, Berlin, Germany Get your web at Conactive Internet Services: http://www.conactive.com ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Yum Update issues
On Tue, Apr 28, 2009 at 5:10 PM, Ron Blizzard wrote: > Has anyone else run into this issue when running yum update? > > > I've already run yum clear all, but the problem came back when I ran yum > update again. Firefox and xulrunner were also being "held up," but I was > able to update them by running yum update firefox. > > As far as I can see there is no yum-complete-transaction command. > yum-complete-transaction is part of yum-utils. I've seen that error if using third-party repositories or the mirror isn't fully updated ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] USB device not connected (CentOS 5.3)
I just tried this with CentOS 5.3 as well, and got exactly the same symptoms and dmesg output. (As a point of comparison, Ubunu 8.04 on my work laptop is able to access the drive.) Obviously "not detected" is a misapprehension, though I'm puzzled why "lsusb" doesn't show it. The device is there even though the partition table can't be read. -- Forwarded message -- From: Bart Schaefer Date: Tue, Apr 28, 2009 at 10:58 AM Subject: Re: [CentOS] USB device not detected (CentOS 4.7) To: CentOS mailing list On Tue, Apr 28, 2009 at 10:01 AM, Craig White wrote: > On Tue, 2009-04-28 at 09:48 -0700, Bart Schaefer wrote: >> I recently purchased an I/O Magic USB enclosure for 3.5" IDE > > check what it says about the drive in dmesg after you plugged it in. Hmm. usb 1-6: new high speed USB device using address 4 scsi7 : SCSI emulation for USB Mass Storage devices Vendor: HDS72251 Model: 6VLAT80 Rev: 0 0 Type: Direct-Access ANSI SCSI revision: 02 SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) sdd: assuming drive cache: write through SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) sdd: assuming drive cache: write through (so far this is correct, it's a 160GB drive in the enclosure) (the leading space on the next line is literally there in dmesg) sdd:SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 ldm_validate_partition_table(): Disk read failed. SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 unable to read partition table Attached scsi disk sdd at scsi7, channel 0, id 0, lun 0 USB Mass Storage device found at 4 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 0 Buffer I/O error on device sdd, logical block 0 SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 8 Buffer I/O error on device sdd, logical block 1 (the last three lines then repeat for each of sectors 16-568, logical blocks 2-71) SCSI error : <7 0 0 0> return code = 0x1007 end_request: I/O error, dev sdd, sector 512 Buffer I/O error on device sdd, logical block 64 usb 1-6: USB disconnect, address 4 (that's where I unplugged) ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
[CentOS] Yum-security
Since yum-security doesn't seem to work I've created a very rough version of it on my own. It requires expect and yum-changelog to be installed on a machine. It makes the assumption that the CVE number will be in the changelog data for any package with a security patch applied. I have my own rsync'd copy of the 5.3 repository that it check's against (I have around 2 dozen machines that need updating when security patch's come out) so I don't do any serious abuse to someone else's repo. ## #!/bin/bash # Get a complete list of packages requiring updates, remove junk lines #and strip them down to the package.arch name. Loop once for each package. for PKG in `yum check-update | grep -v ^Loaded\ plugins | grep -v ^Loading\ mirror | grep -v \* | grep -v ^$ | awk '{print $1}'`; do # get the changelog delta for this package, XXXxxx is a record separator #that isn't likely to exists allowing awk to process the entire result as #one record and return an unknown number of lines UPDATE=`expect -c "set timeout -1; spawn /usr/bin/yum --changelog update $PKG; expect \"Is this ok\"; send \"N\"" | awk -v RS="XXXxxx" -F"Changes in packages about to be updated:" '{print $2}' | awk -v RS="XXXxxx" -F"Dependencies Resolved" '{print $1}'` # check for the existence of "CVE" in the returned changelog, if it exists #echo it to STDOUT echo ${UPDATE} | grep CVE > /dev/null if [ $? -eq 0 ] then echo " Changelog Delta's for $PKG and it's dependancies " echo "${UPDATE}" fi done ## Comments, suggestions. Am I recreating the wheel? If I run it against an online repo it takes about 15-20 minutes to return and makes entirely to many calls to yum. Using my own repo it only takes about 3 minutes and doesn't cost me any extra bandwidth. - Jacob Bresciani, Systems Administrator Advanced E-commerce Research Systems Inc. 2307-4464 Markham Street Victoria, BC CANADA V8Z 7X8 +1 250 418 5412 (mobile) +1 250 483 3271 (FAX) www.terapeak.com - eBay Marketplace Research www.aers.ca - Advanced E-commerce Analytics -Original Message- From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf Of Kwan Lowe Sent: Tuesday, April 28, 2009 2:45 PM To: CentOS mailing list Subject: Re: [CentOS] Yum Update issues On Tue, Apr 28, 2009 at 5:10 PM, Ron Blizzard wrote: > Has anyone else run into this issue when running yum update? > > > I've already run yum clear all, but the problem came back when I ran yum > update again. Firefox and xulrunner were also being "held up," but I was > able to update them by running yum update firefox. > > As far as I can see there is no yum-complete-transaction command. > yum-complete-transaction is part of yum-utils. I've seen that error if using third-party repositories or the mirror isn't fully updated ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Yum Update issues
On Tue, Apr 28, 2009 at 4:45 PM, Kwan Lowe wrote: > > yum-complete-transaction is part of yum-utils. > > I've seen that error if using third-party repositories or the mirror > isn't fully updated > Thanks for the information. I've downloaded the utility and ran yum-complete-transaction, but it won't clear it out. I guess the problem started when I attempted to install kaffeine on a Gnome Desktop (I've had trouble with vlc, so wanted to try kaffeine. vlc still doesn't work for DVDs (segmentation errors) but mplayer plays DVDs.) Here's what I get if I say no to installing kaffeine: [r...@localhost ronb]# /usr/sbin/yum-complete-transaction Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * rpmforge: apt.sw.be * base: mirror.raystedman.net * updates: mirrors.kernel.org * addons: mirrors.cat.pdx.edu * extras: mirrors.xmission.com There are 2 outstanding transactions to complete. Finishing the most recent one The remaining transaction had 5 elements left to run There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them. --> Running transaction check ---> Package kdnssd-avahi.i386 0:0.1.3-0.1.20060713svn.fc6 set to be updated ---> Package kdelibs.i386 6:3.5.4-18.el5.centos set to be updated ---> Package kaffeine-devel.i386 0:0.7.1-1.2.el5.rf set to be updated ---> Package avahi-qt3.i386 0:0.6.16-1.el5_2.1 set to be updated ---> Package kaffeine.i386 0:0.7.1-1.2.el5.rf set to be updated --> Finished Dependency Resolution PackageArch Version Repository Size Installing: avahi-qt3 i386 0.6.16-1.el5_2.1updates 17 k kaffeine i386 0.7.1-1.2.el5.rfrpmforge 2.8 M kaffeine-devel i386 0.7.1-1.2.el5.rfrpmforge 778 k kdelibsi386 6:3.5.4-18.el5.centos base 18 M kdnssd-avahi i386 0.1.3-0.1.20060713svn.fc6 base 43 k Transaction Summary Install 5 Package(s) Update 0 Package(s) Remove 0 Package(s) Total size: 22 M Is this ok [y/N]: n Exiting on user Command Not removing old transaction files If I try installing kaffeine (even though I no longer want to) yum-complete-transaction downloads the files but gives the following errors when it tries to install them: ... Total size: 22 M Is this ok [y/N]: y Downloading Packages: Running rpm_check_debug Running Transaction Test Finished Transaction Test Traceback (most recent call last): File "/usr/sbin/yum-complete-transaction", line 226, in ? util = YumCompleteTransaction() File "/usr/sbin/yum-complete-transaction", line 116, in __init__ self.main() File "/usr/sbin/yum-complete-transaction", line 196, in main if self.doTransaction() == 0: File "/usr/share/yum-cli/cli.py", line 439, in doTransaction raise yum.Errors.YumBaseError, errstring + '\n' + \ yum.Errors.YumBaseError: Transaction Check Error: file /usr/share/mimelnk/application/x-mplayer2.desktop conflicts between attempted installs of kaffeine-0.7.1-1.2.el5.rf.i386 and kdelibs-3.5.4-18.el5.centos.i386 Error Summary - I'm not quite sure what this is telling me. Looks like some kind of conflict between mplayer and kaffeine? Maybe if I removed mplayer and then ran yum-complete-transaction? The file /usr/share/mimelnk/application/x-mplayer2.desktop doesn't exist. -- which really makes this odd. -- RonB -- Using CentOS 5.3 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Yum Update issues
From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf Of Ron Blizzard Sent: Tuesday, April 28, 2009 4:37 PM To: CentOS mailing list Subject: Re: [CentOS] Yum Update issues On Tue, Apr 28, 2009 at 4:45 PM, Kwan Lowe wrote: yum-complete-transaction is part of yum-utils. I've seen that error if using third-party repositories or the mirror isn't fully updated Thanks for the information. I've downloaded the utility and ran yum-complete-transaction, but it won't clear it out. I guess the problem started when I attempted to install kaffeine on a Gnome Desktop (I've had trouble with vlc, so wanted to try kaffeine. vlc still doesn't work for DVDs (segmentation errors) but mplayer plays DVDs.) Here's what I get if I say no to installing kaffeine: [r...@localhost ronb]# /usr/sbin/yum-complete-transaction Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * rpmforge: apt.sw.be * base: mirror.raystedman.net * updates: mirrors.kernel.org * addons: mirrors.cat.pdx.edu * extras: mirrors.xmission.com There are 2 outstanding transactions to complete. Finishing the most recent one The remaining transaction had 5 elements left to run There are unfinished transactions remaining. You might consider running yum-complete-transaction first to finish them. --> Running transaction check ---> Package kdnssd-avahi.i386 0:0.1.3-0.1.20060713svn.fc6 set to be updated ---> Package kdelibs.i386 6:3.5.4-18.el5.centos set to be updated ---> Package kaffeine-devel.i386 0:0.7.1-1.2.el5.rf set to be updated ---> Package avahi-qt3.i386 0:0.6.16-1.el5_2.1 set to be updated ---> Package kaffeine.i386 0:0.7.1-1.2.el5.rf set to be updated --> Finished Dependency Resolution PackageArch Version Repository Size Installing: avahi-qt3 i386 0.6.16-1.el5_2.1updates 17 k kaffeine i386 0.7.1-1.2.el5.rfrpmforge 2.8 M kaffeine-devel i386 0.7.1-1.2.el5.rfrpmforge 778 k kdelibsi386 6:3.5.4-18.el5.centos base 18 M kdnssd-avahi i386 0.1.3-0.1.20060713svn.fc6 base 43 k Transaction Summary Install 5 Package(s) Update 0 Package(s) Remove 0 Package(s) Total size: 22 M Is this ok [y/N]: n Exiting on user Command Not removing old transaction files If I try installing kaffeine (even though I no longer want to) yum-complete-transaction downloads the files but gives the following errors when it tries to install them: ... Total size: 22 M Is this ok [y/N]: y Downloading Packages: Running rpm_check_debug Running Transaction Test Finished Transaction Test Traceback (most recent call last): File "/usr/sbin/yum-complete-transaction", line 226, in ? util = YumCompleteTransaction() File "/usr/sbin/yum-complete-transaction", line 116, in __init__ self.main() File "/usr/sbin/yum-complete-transaction", line 196, in main if self.doTransaction() == 0: File "/usr/share/yum-cli/cli.py", line 439, in doTransaction raise yum.Errors.YumBaseError, errstring + '\n' + \ yum.Errors.YumBaseError: Transaction Check Error: file /usr/share/mimelnk/application/x-mplayer2.desktop conflicts between attempted installs of kaffeine-0.7.1-1.2.el5.rf.i386 and kdelibs-3.5.4-18.el5.centos.i386 Error Summary - I'm not quite sure what this is telling me. Looks like some kind of conflict between mplayer and kaffeine? Maybe if I removed mplayer and then ran yum-complete-transaction? The file /usr/share/mimelnk/application/x-mplayer2.desktop doesn't exist. -- which really makes this odd. -- RonB -- Using CentOS 5.3 This is caused by a packaging bug. They should not ship the x-mplayer2.desktop file in kdelibs nor in kaffeine, but rather have it in mplayer where it belongs. This should be handled in the %install section for
Re: [CentOS] php-mcrypt from c5-testing is the wrong version
Would you be willing to make the RPM available? Thanks. On Tue, Apr 28, 2009 at 2:56 PM, Joe Pruett wrote: >> I am using the c5-testing repo to fetch PHP 5.2.6 and related >> libraries, required for the LAMP apps that I want to use. php-mcrypt >> still seems to come from the extras repo and is version 5.1.6 and the >> php binary doesn't load this module. >> >> Any ideas on howto get php-mcrypt 5.2.6? > > as i was waiting for the c5-testing repo to catch up with redhat, i went > ahead and built my own. i had to take the php-extras rpm and merge the > php changes between 5.1.6 and 5.2.6 into it. and to get mock to be happy > i had to add the normal extras repo into the mock config so that the > mcrypt libraries were there. > > i hesitate to make my repo public, but i know it is possible to make a new > php-mcrypt based on the upstream code. > ___ > CentOS mailing list > CentOS@centos.org > http://lists.centos.org/mailman/listinfo/centos > -- "The secret impresses no-one, the trick you use it for is everything" - Alfred Borden (The Prestiege) ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Yum Update issues
On Tue, Apr 28, 2009 at 6:44 PM, Gary Greene wrote: > >I'm not quite sure what this is telling me. Looks like some kind of > conflict between mplayer and kaffeine? Maybe if I removed mplayer and then > ran yum-complete-transaction? > >The file /usr/share/mimelnk/application/x-mplayer2.desktop doesn't > exist. -- which really makes this odd. > >-- >RonB -- Using CentOS 5.3 > > > This is caused by a packaging bug. They should not ship the > x-mplayer2.desktop file in kdelibs nor in kaffeine, but rather have it in > mplayer where it belongs. This should be handled in the %install section for > these packages. Thanks for the information. Is there a way to clear out the transaction information, so yum is no longer looking for kaffeine and the kde library files at all? I'll keep trying to Google for a solution. Again, thanks. -- RonB -- Using CentOS 5.3 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Yum Update issues
On Tue, Apr 28, 2009 at 7:49 PM, Ron Blizzard wrote: > > Thanks for the information. Is there a way to clear out the transaction > information, so yum is no longer looking for kaffeine and the kde library > files at all? > > I'll keep trying to Google for a solution. > > Again, thanks. Okay. I got rid of the kaffeine stuff. Found the transaction files in yum and deleted them. I then ran yum-complete-transaction without errors. So that part of it is fixed. I then ran "yum clean all" but am still having dependency issues when I try to update. [r...@localhost ronb]# yum update Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * rpmforge: apt.sw.be * base: mirror.its.uidaho.edu * updates: www.gtlib.gatech.edu * addons: mirrors.tummy.com * extras: mirrors.tummy.com Setting up Update Process Resolving Dependencies --> Running transaction check ---> Package SDL_gfx.i386 0:2.0.19-1.el5.rf set to be updated ---> Package perl-SDL.i386 0:2.1.3-2.el5.rf set to be updated --> Processing Dependency: perl(Pod::ToDemo) for package: perl-SDL ---> Package mjpegtools.i386 0:1.9.0-0.6.rc2.el5.rf set to be updated --> Finished Dependency Resolution perl-SDL-2.1.3-2.el5.rf.i386 from rpmforge has depsolving problems --> Missing Dependency: perl(Pod::ToDemo) is needed by package perl-SDL-2.1.3-2.el5.rf.i386 (rpmforge) Error: Missing Dependency: perl(Pod::ToDemo) is needed by package perl-SDL-2.1.3-2.el5.rf.i386 (rpmforge) I'm guessing I need to find the file that the function(?) that perl(Pod::ToDemo) is found. rpm.pbone has a file called Perl-Pod-ToDemo, but it won't install, saying it needs Perl5 files -- so I tried reinstalling Perl, but it didn't help. I'll keep Googling. -- RonB -- Using CentOS 5.3 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not connected (CentOS 5.3)
Could be a problem with the USB port on the CentOS computer, or if you are using a cable on with that computer, the cable. Craig On Tue, 2009-04-28 at 15:11 -0700, Bart Schaefer wrote: > I just tried this with CentOS 5.3 as well, and got exactly the same > symptoms and dmesg output. (As a point of comparison, Ubunu 8.04 on > my work laptop is able to access the drive.) > > Obviously "not detected" is a misapprehension, though I'm puzzled why > "lsusb" doesn't show it. The device is there even though the > partition table can't be read. > > -- Forwarded message -- > From: Bart Schaefer > Date: Tue, Apr 28, 2009 at 10:58 AM > Subject: Re: [CentOS] USB device not detected (CentOS 4.7) > To: CentOS mailing list > > > On Tue, Apr 28, 2009 at 10:01 AM, Craig White wrote: > > On Tue, 2009-04-28 at 09:48 -0700, Bart Schaefer wrote: > >> I recently purchased an I/O Magic USB enclosure for 3.5" IDE > > > > check what it says about the drive in dmesg after you plugged it in. > > Hmm. > > usb 1-6: new high speed USB device using address 4 > scsi7 : SCSI emulation for USB Mass Storage devices > Vendor: HDS72251 Model: 6VLAT80 Rev: 0 0 > Type: Direct-Access ANSI SCSI revision: 02 > SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) > sdd: assuming drive cache: write through > SCSI device sdd: 321672960 512-byte hdwr sectors (164697 MB) > sdd: assuming drive cache: write through > > (so far this is correct, it's a 160GB drive in the enclosure) > (the leading space on the next line is literally there in dmesg) > > sdd:SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > ldm_validate_partition_table(): Disk read failed. > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > unable to read partition table > Attached scsi disk sdd at scsi7, channel 0, id 0, lun 0 > USB Mass Storage device found at 4 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 0 > Buffer I/O error on device sdd, logical block 0 > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 8 > Buffer I/O error on device sdd, logical block 1 > > (the last three lines then repeat for each of sectors 16-568, logical > blocks 2-71) > > SCSI error : <7 0 0 0> return code = 0x1007 > end_request: I/O error, dev sdd, sector 512 > Buffer I/O error on device sdd, logical block 64 > usb 1-6: USB disconnect, address 4 > > (that's where I unplugged) > ___ > CentOS mailing list > CentOS@centos.org > http://lists.centos.org/mailman/listinfo/centos > -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Yum Update issues
On Tue, Apr 28, 2009 at 8:24 PM, Ron Blizzard wrote: > > I'm guessing I need to find the file that the function(?) that > perl(Pod::ToDemo) is found. > > rpm.pbone has a file called Perl-Pod-ToDemo, but it won't install, saying > it needs Perl5 files -- so I tried reinstalling Perl, but it didn't help. > > I'll keep Googling. > Got it. rpm.pbone.com had a newer perl-Pod-ToDemo file then the one I had found earlier. I downloaded and installed that one and then "yum update" worked without issue. Now I'm trying to figure out why the lack of a perl demo file would kill a perl update? -- RonB -- Using CentOS 5.2 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
On Mon, 2009-04-27 at 18:06 -0700, John R Pierce wrote: > Gregory P. Ennis wrote: > > Everyone, > > > > I was recently given a Dell raid 386 server that had drives that had > > gone bad. I replaced the drives with a couple terrabyte sata Seagate > > drives, and set up the bios for a mirrored raid configuration. > > > > I was able to install Centos 5.2 without difficulty, but when it was > > time to perform the 1st boot it went to grub instead of booting off of > > one of the mirrored drives. > > > > I could not figure out how to boot through grub, so I changed the bios > > to look at both drives unmirrored. At that point I was able to boot to > > one of the drives, and the second drive was not mounted. > > > > The raid logic is within the bios and mother board of the Dell machine. > > Can any of you point me to some literature about making this system work > > as a mirrored raid system. > > > > What model Dell server is this? Surely, this isn't a 386 (16 to 40mhz > from circa 1989?!?) What Dell RAID controller model does it have? > They are pretty much all called PERC something, but there are many > generations. Is this a true raid (controller based, with a battery > backed write cache), or a bogus soft (fake) raid setup? if its the > latter, I'd set it up with linux native raid, and not use the BIOS raid > at all > > Everyone, Thanks for everyone's comments. To make things as clear as I can this is a DELL XPS Gen 2 Series a 32 bit machine using an i386 Centos OS 5.2 that was automatically upgraded to 5.3 by yum. The RAID controller appears to be on the mother board to me. The CPU is an Intel Pentium 4 3.00GHz.BIOS version of A02. In the bios I can turn on RAID on but when the system boots I get a grub prompt. The only way to get the system to boot is to turn off the RAID configuration and boot to one drive. I have not seen anything regarding PERC. The SATA drives are connected directly to the motherboard. I have still not been able to make it work as RAID. Thanks to everyone for your help. This is my first RAID controller. Greg ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
Gregory P. Ennis wrote: > To make things as clear as I can this is a DELL XPS Gen 2 Series a 32 > bit machine using an i386 Centos OS 5.2 that was automatically upgraded > to 5.3 by yum. As another poster noted, in this case you should disable the RAID in the bios and keep it off. If you want RAID then use software raid in linux, or get a real RAID controller, I suggest 3Ware myself but there are other options available as well. nate ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
On Tue, 2009-04-28 at 21:20 -0500, Gregory P. Ennis wrote: > On Mon, 2009-04-27 at 18:06 -0700, John R Pierce wrote: > > Gregory P. Ennis wrote: > > > Everyone, > > > > > > I was recently given a Dell raid 386 server that had drives that had > > > gone bad. I replaced the drives with a couple terrabyte sata Seagate > > > drives, and set up the bios for a mirrored raid configuration. > > > > > > I was able to install Centos 5.2 without difficulty, but when it was > > > time to perform the 1st boot it went to grub instead of booting off of > > > one of the mirrored drives. > > > > > > I could not figure out how to boot through grub, so I changed the bios > > > to look at both drives unmirrored. At that point I was able to boot to > > > one of the drives, and the second drive was not mounted. > > > > > > The raid logic is within the bios and mother board of the Dell machine. > > > Can any of you point me to some literature about making this system work > > > as a mirrored raid system. > > > > > > > What model Dell server is this? Surely, this isn't a 386 (16 to 40mhz > > from circa 1989?!?) What Dell RAID controller model does it have? > > They are pretty much all called PERC something, but there are many > > generations. Is this a true raid (controller based, with a battery > > backed write cache), or a bogus soft (fake) raid setup? if its the > > latter, I'd set it up with linux native raid, and not use the BIOS raid > > at all > > > > > Everyone, > > Thanks for everyone's comments. > > To make things as clear as I can this is a DELL XPS Gen 2 Series a 32 > bit machine using an i386 Centos OS 5.2 that was automatically upgraded > to 5.3 by yum. > > The RAID controller appears to be on the mother board to me. The CPU is > an Intel Pentium 4 3.00GHz.BIOS version of A02. > > In the bios I can turn on RAID on but when the system boots I get a grub > prompt. The only way to get the system to boot is to turn off the RAID > configuration and boot to one drive. > > I have not seen anything regarding PERC. The SATA drives are connected > directly to the motherboard. > > I have still not been able to make it work as RAID. > > Thanks to everyone for your help. This is my first RAID controller. > > Greg > ___ Sorry forgot to add that this was identified in the RAID setup as : Intel RAID for Serial ATA - RAID BIOS v3.5.0.2568 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
On Tue, 2009-04-28 at 19:28 -0700, nate wrote: > Gregory P. Ennis wrote: > > > To make things as clear as I can this is a DELL XPS Gen 2 Series a 32 > > bit machine using an i386 Centos OS 5.2 that was automatically upgraded > > to 5.3 by yum. > > As another poster noted, in this case you should disable the RAID in > the bios and keep it off. If you want RAID then use software raid in > linux, or get a real RAID controller, I suggest 3Ware myself but there > are other options available as well. > > nate > > > ___ Nate, Thanks for your help. Guess this machine does not have a real RAID controller. Appreciate your advise! Greg ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
Gregory P. Ennis wrote: > To make things as clear as I can this is a DELL XPS Gen 2 Series a 32 > bit machine using an i386 Centos OS 5.2 that was automatically upgraded > to 5.3 by yum. > oh, we thought you said a SERVER, such as a Dell PowerEdge, so we went down the wrong bunnytrail :) "XPS Gen 2" could refer to either a Inspiron XPS laptop, or a desktop XPS Gen 2.If its a P4, then its likely the desktop, as the laptop used the Pentium-M. > The RAID controller appears to be on the mother board to me. The CPU is > an Intel Pentium 4 3.00GHz.BIOS version of A02. > > In the bios I can turn on RAID on but when the system boots I get a grub > prompt. The only way to get the system to boot is to turn off the RAID > configuration and boot to one drive. > > I have not seen anything regarding PERC. The SATA drives are connected > directly to the motherboard. > > I have still not been able to make it work as RAID. > > Thanks to everyone for your help. This is my first RAID controller. > no, its not. its not a raid controller. its 'BIOS raid' aka 'fake raid' BIOS fake raid such as that isn't supported by Linux, instead, set the controller for JBOD/ATA mode, and use the built in MD driver mirroring in Linux. see the comments here under "SATA", http://linux.dell.com/storage.shtml#sata the Inspiron XPS Gen 2 laptop has the same ICH6 southbridge IO chip as the Precision Workstation this page mentions, while the Desktop XPS Gen 2 had the previous version ICH5 ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] Dell mirror raid boot problems
On Tue, 2009-04-28 at 19:43 -0700, John R Pierce wrote: > Gregory P. Ennis wrote: > > To make things as clear as I can this is a DELL XPS Gen 2 Series a 32 > > bit machine using an i386 Centos OS 5.2 that was automatically upgraded > > to 5.3 by yum. > > > > oh, we thought you said a SERVER, such as a Dell PowerEdge, so we went > down the wrong bunnytrail :) > > "XPS Gen 2" could refer to either a Inspiron XPS laptop, or a desktop > XPS Gen 2.If its a P4, then its likely the desktop, as the laptop > used the Pentium-M. > > > The RAID controller appears to be on the mother board to me. The CPU is > > an Intel Pentium 4 3.00GHz.BIOS version of A02. > > > > In the bios I can turn on RAID on but when the system boots I get a grub > > prompt. The only way to get the system to boot is to turn off the RAID > > configuration and boot to one drive. > > > > I have not seen anything regarding PERC. The SATA drives are connected > > directly to the motherboard. > > > > I have still not been able to make it work as RAID. > > > > Thanks to everyone for your help. This is my first RAID controller. > > > no, its not. its not a raid controller. its 'BIOS raid' aka 'fake raid' > > BIOS fake raid such as that isn't supported by Linux, instead, set the > controller for JBOD/ATA mode, and use the built in MD driver mirroring > in Linux. > > see the comments here under "SATA", > http://linux.dell.com/storage.shtml#sata > the Inspiron XPS Gen 2 laptop has the same ICH6 southbridge IO chip as > the Precision Workstation this page mentions, while the Desktop XPS Gen > 2 had the previous version ICH5 > > > > ___ John, Thanks much for your help. Sorry for the confusing information. My plan is to use this desktop as a mail server. Appreciate your help Greg ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not connected (CentOS 5.3)
On Tue, Apr 28, 2009 at 6:24 PM, Craig White wrote: > Could be a problem with the USB port on the CentOS computer, or if you > are using a cable on with that computer, the cable. Same cable everywhere. Four different computers (two desktops, two laptops; three custom-built, one an HP; and the HP is the one running CentOS 5.3). Fails on CentOS 4.7 desktop and CentOS 5.3 laptop. Works on Windows XPsp3 desktop and Ubuntu 8.04 laptop. Maxtor OneTouch works on the CentOS 5.3 laptop (in fact, that laptop has its root filesystem on the Maxtor USB). So it sure looks like some specific incompatibility of this I/O Magic drive enclosure with the EL4/EL5 USB drivers. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
Re: [CentOS] USB device not connected (CentOS 5.3)
On Tue, 2009-04-28 at 22:37 -0700, Bart Schaefer wrote: > On Tue, Apr 28, 2009 at 6:24 PM, Craig White wrote: > > Could be a problem with the USB port on the CentOS computer, or if you > > are using a cable on with that computer, the cable. > > Same cable everywhere. Four different computers (two desktops, two > laptops; three custom-built, one an HP; and the HP is the one running > CentOS 5.3). Fails on CentOS 4.7 desktop and CentOS 5.3 laptop. Works > on Windows XPsp3 desktop and Ubuntu 8.04 laptop. Maxtor OneTouch > works on the CentOS 5.3 laptop (in fact, that laptop has its root > filesystem on the Maxtor USB). > > So it sure looks like some specific incompatibility of this I/O Magic > drive enclosure with the EL4/EL5 USB drivers. FWIW, I have an el cheapo USB card reader that won't work on WinXP (2 computers) but works fine on Linux including the same computer via dual-boot. I also had problems with a USB hard disk drive on one computer until I updated the BIOS. Always make sure that computers that exhibit these problems, you would want to update BIOS on them. Basically, USB sucks as a technology and it can be entirely inconsistent. Craig -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean. ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos