Re: [CentOS] NetworkManager constantly overwriting /etc/resolve.conf - how to disable?

2009-11-29 Thread Tosh
On 29/11/09 22:43, Rob Kampen wrote:
 Rudi Ahlers wrote:
 Hi all,

 I have a CentOS 5.4 server-only installation, i.e. no X installed, and
 for some odd reason /etc/resolve.conf gets overwritten by
 NetworkManager on a constant basis. I haven't been able to track down
 how often, but I think it's on the hour, or something.
 As I recall there was a thread about this a few weeks ago.
 Please show your /etc/sysconfig/network-scripts/ifcfg-ethX contents.

Add to /etc/sysconfig/network-scripts/ifcfg-ethX
The following 2 lines :
PEERDNS=no
NM_CONTROLLED=no

Line 1 tells the the if commands not to override /etc/resolv.conf
Line 2 tells NetworkManager that it doens't have control over that 
ethernet controller


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: rebuild kmod rpm package from src.rpm

2009-06-11 Thread Tosh
carlopmart wrote:
 Hi all,

I would like to rebuild a kmod.src.rpm package for a specific kernel.
 When I try to do it, this message appears:

 Building target platforms: i686
 Building for target i686
 error: Failed build dependencies:
kernel-xen-devel-i686 = 2.6.18-98.el5 is needed by
 mymodule-kmod-0.1.5-2.i686
   kernel-PAE-devel-i686 = 2.6.18-98.el5 is needed by
 mymodule-kmod-0.1.5-2.i686.

Is it possible to rebuild kmod.src.package only for certain kernel?? i
 don't need to rebuild this module for kernel-xen or kernel-PAE only for
 kernel-i686 ...

Thanks.
Somewhere in your spec file there is a kvariant defined, looks like this
 # Define the variants for each architecture.
 %define basevar 
 %ifarch i686
 %define paevar PAE
 %endif
 %ifarch i686 x86_64
 %define xenvar xen
 %endif

 # If kvariants isn't defined on the rpmbuild line, build all variants for 
 this $
 %{!?kvariants: %define kvariants %{?basevar} %{?xenvar} %{?paevar}}
edit these lines to your needs
in your case I would change it to this and it should work

 # Define the variants for each architecture.
 %define basevar 
 %ifarch i686
 #%define paevar PAE
 %endif
 %ifarch i686 x86_64
 %define xenvar xen
 %endif

 # If kvariants isn't defined on the rpmbuild line, build all variants
 %{!?kvariants: %define kvariants %{?basevar}}

-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT: Windows Vista Tablet PC linux alternative

2009-06-11 Thread Tosh
Sorin Srbu wrote:
 -Original Message-
 From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On
 Behalf
 Of Karanbir Singh
 Sent: Thursday, June 11, 2009 2:04 PM
 To: CentOS mailing list
 Subject: Re: [CentOS] OT: Windows Vista Tablet PC linux alternative

 Would any of you guys know of some kind of linux-based alternative,
 preferrably available on or for CentOS, that can do the same
 hand-writing-on-screen-tricks as Vista Tablet does?
 cellwriter and xournal are what I've been using for a few years now on
 my tc4400, no idea what the windows s/w does, but these two do all that
 I need with the tablet

 Windows Tablet allows for using handwriting on screen and entering it more
 or less automatically to eg Word.

 Thanks for the hints, I'll those up.

The mentioned software by Karanbir :
cellwriter, write letter by letter and convert this to text (like the 
old palm input)
xournal, is a good replacement for onenote, but doesn't have the 
conversion handwriting to text

one more thing, if you install CentOS, you will need to add your stylus 
manually to /etc/X11/xorg.conf, for more info go to 
http://www.thinkwiki.org/wiki/Wacom_Serial_Tablet_PC_Stylus
worked for my Toshiba Portégé M400


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] RealTek 8168B (Rev 02) Issue

2009-06-09 Thread Tosh
Ben Mohilef wrote:
 It is an D945GCLF2 with a 330.
  use the r8169 driver
 That driver has issues with the counters, resolved with the ElRepo and
 Realtek drivers. Ifconfig shows no dropped packets with the latter two
 drivers.
  website, it has been working fine, and I regularly check my tcpdump,
  dmesg even states that it enter promiscuous mode and exits  device
  eth0 entered promiscuous mode  device eth0 left promiscuous mode only

 The dmesg statement comes from a printk statement in the driver. I
 modified the driver to force the register to always load
 rx=AllowMe|AllowAll|AllowBroadcast|AllowMulticast.
 I surrounded it with printk statements so I know that it is entering and
 exiting the rx setting. It acts like this variable is never being
 written to the chip register. Hmmm, I think I need to look at their code
 some more to make sure they ARE writing to the register.

 Despite the kernel messages, the chip does not enter the promiscuous
 mode. If you have a second box talking to a third address, do you see
 that TCP traffic in TCPDump. Another way to check it is using iptraf.

iptraf shows packets, no problems here
So I run on two boxes iptraf and ping from on to another box, it shows 
me the ICMP req and reponse on both boxes
Also when I ping from the router, a linksys, it shows me the ICMP

BUT I found the following information :
even though bugzilla 452761 
(https://bugzilla.redhat.com/show_bug.cgi?id=452761) is solved by kernel 
2.6.18-128, bugzilla 474334 
(https://bugzilla.redhat.com/show_bug.cgi?id=474334) is only solved in 
kernel 2.6.18-141, so may need to use a kernel from Don Zickus before 
you can use them properly http://people.redhat.com/dzickus/el5/


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] RealTek 8168B (Rev 02) Issue

2009-06-08 Thread Tosh
Ben Mohilef wrote:
 The 8168B (02) NIC works well except that it does not go into promiscuous
 mode despite advertising itself in that mode after being so directed with
 ifconfig. Unfortunately, the little box is destined to be an IDS monitor, so 
 that
 function is essential. The board is an Intel Atom  330 run as x86_64, the nic
 is internal.
I presume you are talking about a Atom 230 not a Atom 330, as on the an 
original Intel board with an Atom 330, the D945GCLF2 you can just use 
the r8169 driver, on the D945GCLF with an Atom 230 board you need a 
r8101 driver

Intel D945GCLF2 (Atom 330)
* /etc/modprobe.conf
 alias scsi_hostadapter ata_piix
 alias snd-card-0 snd-hda-intel
 options snd-card-0 index=0
 options snd-hda-intel index=0
 remove snd-hda-intel { /usr/sbin/alsactl store 0 /dev/null 21 || : ; }; 
 /sbi$
 alias eth0 r8169
* lspci output
 01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B 
 PCI Express Gigabit Ethernet controller (rev 02)

Intel D945GCLF (Atom 230)
* /etc/modprobe.conf
 alias scsi_hostadapter ata_piix
 alias snd-card-0 snd-hda-intel
 options snd-card-0 index=0
 options snd-hda-intel index=0
 remove snd-hda-intel { /usr/sbin/alsactl store 0 /dev/null 21 || : ; }; 
 /sbi$
 alias eth0 r8101
 alias eth1 pegasus
* lspci
 01:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. 
 RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 02)


 None solve the promiscuous problem (although they fix the funny
 dropped counter issue).
 [...]
 Anyone have any idea as how to make this chip do the promiscuous mode
 thing other than adding another nic card ?

If it is an original Intel board D945GCLF with the Atom 230, I suggest 
downloading the driver from the Intel website
http://downloadcenter.intel.com/Detail_Desc.aspx?agr=YProductID=2916DwnldID=16242strOSs=39OSFullName=Linux*lang=eng
I compiled the driver manually (at the time elrepo didn't exist) from 
the Intel website, it has been working fine, and I regularly check my 
tcpdump, dmesg even states that it enter promiscuous mode and exits
 device eth0 entered promiscuous mode
 device eth0 left promiscuous mode
only thing I did that wasn't in the manual is manually delete the r8169 
drivers of my kernel, I did have problem when I didn't do this


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS Pulse - The Bi-weekly CentOS Newsletter #0901

2009-06-04 Thread Tosh
Dag Wieers wrote:
 On Tue, 2 Jun 2009, Lanny Marcus wrote:

 On Tue, Jun 2, 2009 at 8:41 AM, Dag Wieersd...@centos.org  wrote:

 I am pleased to announce the first edition of the bi-weekly CentOS
 newsletter which we dubbed CentOS Pulse.
 snip
 Dag: I read the first issue. Great idea! Please post here, each time
 you post a new edition. Lanny

 Lanny,

 The idea was not necessarily mine though. It has been requested a few
 times and just needed to be done. Although I hope that after some time
 we have a group of people contributing and my role will become small or
 taken by others.

 For the announcements, I don't know if this is the right location to send
 them to. We have set up a centos-newsletter mailing list for this purpose
 so people can opt in on these announcements, regardless if they follow
 this mailing list or not.

Great content !

I see a link has been added on the wiki page to the Newsletter, but not 
on the first page, might be useful for novice users to read the Pulse.

One extra suggestion, to make a paper/pdf version (eg magazine/booklet 
style) once a year, with an overview of what CentOS has accomplished 
that year and wants to accomplish in the following year(s)


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Random server reboot after update to CentOS 5.3

2009-05-28 Thread Tosh
JohnS wrote:
 On Wed, 2009-05-27 at 18:03 -0500, Dave Jones wrote:

 I am experiencing the same issue with random reboots after a 5.3
 upgrade.  Sometimes it will go for days without rebooting then today
 it has rebooted 6 times at random times.  I have modified grub.conf to
 go back to 2.6.18-92.1.22.el5xen on my dom0 and my only domU so we
 will see what happens (or hopefully doesn't happen) the next few days.

 I have a 3.0 P4 CPU with HT that does not support 64-bit so it's
 running an i686 kernel.
 ---
   A P4 with HT...? This may not be your problem but I have several P4
 CPUs with HT Enabled. Do you get messages in /var/log/messages/ about
 your cpu temp is above thresh hold and that will throttle back cpu 0 or
 1 constanlty? Also just currious are you using p4-clockmod driver? On
 a reboot that had happened those were the messages I had in my logs.

 JohnStanley

I have heard of HP/Compaq Proliant servers having similar problems, 
random reboot or system hangs, seems te be a kernel bug from upstream, 
take a look at these bugzilla tickets
https://bugzilla.redhat.com/show_bug.cgi?id=494114
https://bugzilla.redhat.com/show_bug.cgi?id=470202

The two problems have been solved as from test kernel 2.6.18-144, 
available at http://people.redhat.com/dzickus/el5/

-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Intel Atom systems?

2009-05-25 Thread Tosh
Karanbir Singh wrote:
 Hi Bill,

 On 05/23/2009 08:37 PM, Bill Campbell wrote:
 Any comments on CentOS 5 on Intel Atom CPUs?

 Something I totally left out in my last email - atleast 2 people have
 reported success using C5 on Atom. I've looked at one of the original
 intel reference platform kits, and things worked pretty much out of the box.

I have a mail server running with an atom 230 processor (intel original 
board), I installed it about a year ago and had to install the nic 
driver 8101 manually

One of our customers has around 20 kiosks with the atom 330 processors 
(intel original board) runs out of the box with centos 5.3

technically there are just old celeron (pentium4 based) processors with 
low energy consumption, so for the operating system it makes no real 
difference, for your electricity bill it does



-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] The law difference between country

2009-04-18 Thread Tosh
Hidetsugu Hiraki wrote:
 Dear Madam or Sir,

 I live in Japan. So I must comply with the nation's law.
 When I install software for Linux, is there any easy way to know
 whether the the installation and use of the software is legal or not?

 Please teach me.

 Hiraki
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

As CentOS is GPLv2 compliant, you can use it freely for your own purpose.
Only if you want to redistribute or use it for commercial purposes that 
you have to keep account with many factors you need to comply with.


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Repo for Abiword

2009-04-14 Thread Tosh
cen...@911networks.com wrote:
 Hi,

 I need to run Abiword on CentOS 5.3, any repository?


If you want to add my repo for all dependencies the install package is 
here :
http://rpm.toshaan.be/repos/el5/x86_64/trpms-1.0-1.el5.x86_64.rpm

I am scheduled to migrate in early July no a new location/server, which 
will be permanent.
In the mean time I have made a temporary repo available to the public 
already.
Also make sure rpmforge is active, or you will have troubles with 
dependencies.

-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Install CentOS directly from usb drive?

2009-04-07 Thread Tosh
Neil Aggarwal wrote:
 Tosh:

 execute the command on the drive /dev/sdc, not the
 mounted partition

 When I do extlinux /dev/sdc, I get the Usage screen.
 The same thing happens if I do extlinux /dev/sdc1

 The only way I could figure was to run extlinux
 on the mounted partition.

 Any ideas?

   Neil

 --
 Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com
 Eliminate junk email and reclaim your inbox.
 Visit http://www.spammilter.com for details.

 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

ok, sorry, I seem to have forgotten again how I did it
I had to make a new one today and indeed I had to use
extlinux -i /mnt/disk/extlinux



-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Install CentOS directly from usb drive?

2009-04-04 Thread Tosh
Neil Aggarwal wrote:
 Tosh:

 1) make the first partition active
  fdisk /dev/sd[c]1 then a, 1 and w to write and quit

 I did this.

 2) format the usb stick with fat or ext3

 I formatted it using mkfs.ext3 /dev/sdc1

  (b) ext3 : you will need to use extlinux work on the stick
  extlinux /dev/sd[c]1

 I mounted the drive and did
 extlinux /media/disk

 4) I extract the isolinux folder from the dvd iso

 I copied all the files from
 http://mirror.centos.org/centos/5/os/x86_64/isolinux/
 to the root directory of the usb drive.

 5) rename all isolinux to (a) syslinux - (b) extlinux

 I renamed the isolinux.bin to extlinux.bin
 and isolinux.cfg to extlinux.cfg

 6) copy the dvd/cd iso(s) to your stick

 I copied the iso to the root directory of the usb drive.

 7) normally you should get the same boot loader as when you
 would pop in
 the cd/dvd, centos install will start loading necessary
 drivers and then
 you will have to chose hard disk install and point to the drive where
 your dvd/cd iso(s) are

 I tried to boot off the usb drive and I get a message that
 it could not boot the operating system.

 Any ideas?

 Thanks,
   Neil

 --
 Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com
 Eliminate junk email and reclaim your inbox.
 Visit http://www.spammilter.com for details.

 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

Ok, I forgot to mention if you decide to use extlinux, you will need to 
rename to extlinux.conf
also, execute the command on the drive /dev/sdc, not the mounted partition
Maybe time to make a script to do this work?

-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Install CentOS directly from usb drive?

2009-04-03 Thread Tosh
Neil Aggarwal wrote:
 Hello:

 I followed the instructions here:
 http://www.centos.org/docs/5/html/5.2/Installation_Guide/ch02s04s01.html
 to put isolinux on a usb drive.  When I boot from the usb drive,
 the installer comes up and I can do a network install.  I have
 to say that is very impressive!

 But, since I have a 4GB usb drive, I am thinking I can
 load the rest of the installation onto the usb drive
 so I do not have to use a network install.

 I searched the Internet but could not find any instructions
 on doing that.

 Can someone point me in the right direction?

 Thanks,   
   Neil

 --
 Neil Aggarwal, (832)245-7314, www.JAMMConsulting.com
 Eliminate junk email and reclaim your inbox.
 Visit http://www.spammilter.com for details.

 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos


I currently use a different method.

1) make the first partition active
fdisk /dev/sd[c]1 then a, 1 and w to write and quit
2) format the usb stick with fat or ext3
3) if you chose
(a) fat : you will need to make syslinux work on the stick
syslinux /dev/sd[c]1
(b) ext3 : you will need to use extlinux work on the stick
extlinux /dev/sd[c]1
4) I extract the isolinux folder from the dvd iso
5) rename all isolinux to (a) syslinux - (b) extlinux
6) copy the dvd/cd iso(s) to your stick
7) normally you should get the same boot loader as when you would pop in 
the cd/dvd, centos install will start loading necessary drivers and then 
you will have to chose hard disk install and point to the drive where 
your dvd/cd iso(s) are
8) anaconda will start and well the rest you know

I have a 16gb stick with CentOS 4 32bit  64bit and CentOS 5 32bit  
64bit to install my systems
There is one problem, if you want to use kickstart, it will want the 
mounted iso files, have not yet figured a way to get around this or to 
get some command to mount the images somewhere

Regards,
Tosh.

-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] installing from pen drive?

2009-04-03 Thread Tosh
sumit agarwal wrote:
 hi

   I have downloaded 7 iso files onto a dvd for 5.2 x64 .
 can i install them using a pendrive or i need to make 7 cds out of them?

 Many thanks,
 Sumit


 

 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

Just follow the instruction I mailed already to Neil Aggarwa
It also works for cd iso images instead of dvd iso images

 I currently use a different method.

 1) make the first partition active
 fdisk /dev/sd[c]1 then a, 1 and w to write and quit
 2) format the usb stick with fat or ext3
 3) if you chose
 (a) fat : you will need to make syslinux work on the stick
 syslinux /dev/sd[c]1
 (b) ext3 : you will need to use extlinux work on the stick
 extlinux /dev/sd[c]1
 4) I extract the isolinux folder from the dvd iso
 5) rename all isolinux to (a) syslinux - (b) extlinux
 6) copy the dvd/cd iso(s) to your stick
 7) normally you should get the same boot loader as when you would pop in the 
 cd/dvd, centos install will start loading necessary drivers and then you will 
 have to chose hard disk install and point to the drive where your dvd/cd 
 iso(s) are
 8) anaconda will start and well the rest you know

 I have a 16gb stick with CentOS 4 32bit  64bit and CentOS 5 32bit  64bit to 
 install my systems
 There is one problem, if you want to use kickstart, it will want the mounted 
 iso files, have not yet figured a way to get around this or to get some 
 command to mount the images somewhere


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] installing centos from usb

2009-04-01 Thread Tosh
Mark Porter wrote:
 Jerry,

 To use kickstart off usb, we just use
 linux ks=hd:sde1:/ourkickstart.cfg
 (Of course, the e will change depending on your drives, on our 10-drive
 systems it is
 linux ks=hd:sdk1:/ourkickstart.cfg)

 And it works great.  We have NOT yet had any success with putting the CD#1
 ISO or the DVD on USB, but we would love to do so, so if anybody knows how,
 it would be great to see it here.

 Thanks,
 Mark

 -Original Message-
 From: centos-boun...@centos.org [mailto:centos-boun...@centos.org] On Behalf
 Of Jerry Geis
 Sent: Tuesday, March 31, 2009 6:19 AM
 To: CentOS ML
 Subject: [CentOS] installing centos from usb

 Are there instructions on how to take the actual ISO install image (not
 a live image),
 put that iso file on a USB thumbdrive  and install from that instead of DVD?

 I would be interested in putting a kickstart file on the USB also. so
 just plug in a USB
 and everything installs just the way I want/need.

 Thanks,

 Jerry
 ___
 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

my current problem is, if you do a normal install without kickstart 
file, you need the iso image, but when using the installation with the 
kickstart file, you need the file structure
I haven't found how to solve this problem yet, but have tried several 
times to get it working, till now no real success.


-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OOo 3 installation

2009-03-02 Thread Tosh
Rajagopal Swaminathan wrote:
 Greetings,

 I tried installing OOo 3.x on an updated Centos 5 desktop (stock OOo
 2.x was there), It had the following problems:

 1. Installation of JRE 1.6.0 step failed citing dependency issues
 (relating to JRE 1.4 being required by OOo 2.x and the such)
 2. after installation, It did run as root ok. but as a user keyboard
 practically freezes during the first run username entry requiring the
 process to be killed.

 I need OOo3 calc for its solver functionality for staff scheduling.

 Any similar experiences? better yet any solutions (a la Go-oo)?

 Thanks in advance.

 Regards,

 Rajagopal

 PS: I use digest mode to read posts in this list. Would appreciate a
 direct reply to my mail with cc to Centos list.
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

if the solver function in gnumeric would work
http://projects.gnome.org/gnumeric/doc/sect-advanced-analysis-solver.shtml
I would go with that, ooo3 is not very stable and easy to compile (it 
took my last build server about 5 hours) on CentOS and with 5.3 imminent 
I would tend to wait as openjdk has been introduced before trying to 
compile ooo3
for gnumeric 1.8 you can just add my temporary repo
http://rpm.toshaan.be/repos/el5/x86_64/trpms-1.0-1.el5.x86_64.rpm
please enable rpmforge
If you need gnumeric 1.9, I can help with compiling, but I tend to like 
a stable spreadsheet

-- 
Toshaan toshli...@gmail.com - http://www.toshaan.be
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] yum update fails

2009-02-08 Thread Tosh
Paolo Supino wrote:
 Hi

 I have a system that I'm trying to run `yum update` on. It fails with
 the following error:
 Running rpm_check_debug
 Running Transaction Test
 Finished Transaction Test


 Transaction Check Error:
 file /usr/share/man/man1/xdelta.1.gz from install of
 xdelta-1.1.4-1.el5.rf conflicts with file from package xdelta-1.1.3-20
 file /usr/share/emacs/site-lisp/psvn.el from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5
 file /usr/share/man/man1/svn.1.gz from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5
 file /usr/share/man/man1/svnadmin.1.gz from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5
 file /usr/share/man/man1/svnlook.1.gz from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5
 file /usr/share/man/man5/svnserve.conf.5.gz from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5
 file /usr/share/man/man8/svnserve.8.gz from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5
 file /usr/share/xemacs/site-packages/lisp/psvn.el from install of
 subversion-1.5.5-0.1.el5.rf conflicts with file from package
 subversion-1.4.2-2.el5

 Error Summary
 -


 How do I resolve this problem?

you are running 64bit, rpmforge doesn't have subversion 32bit in the 
64bit arch
so you will need to uninstall subversion : rpm -e subversion
and install again : yum install subversion
I think it is the same procedure for xdelta

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Internet problem

2009-02-01 Thread Tosh
kmadananteshwar.vb...@gmail.com wrote:
 I am facing the following problems with internet on my acer aspire 2920 
 laptop running centos 5.2 ; whenever I launch mozilla firefox 3 beta 5 it 
 takes at least one and a half hours just to load the homepage 
 http://www.google.com/ig  which in my windows partition takes just under 1 
 second and also my internet connection is a speedy 256 kbps / up to 2 mbps on 
 BSNL in india 
 Does any one have any suggestions and / or solutions ?
Personally I think this will end up being a DNS problem.
Check /etc/resolv.conf and set your DNS settings here.
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] CentOS 5 PPC

2009-01-31 Thread Tosh
dnk wrote:
 There has been some discussion about PPC on this list, and I was
 looking at the CentOS homepage, and it states that support for the PPC
 architecture is in progress.

 Is there actually a V5 (CentOS) PPC download? I have been looking for
 it on the site without luck.

 For example http://mirror.centos.org/centos/5/isos/ only has i386 and
 x86_64.

I have an old G4 with dual processors I want to breath some life into.

 d
to my knowledge there is only a 4.0 beta for ppc
http://vault.centos.org/4.0beta/isos/ppc/

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Installing kernel RHEL-5.3 on CentOS 5.2 (x86_64)

2009-01-14 Thread Tosh
 nate wrote:
 Marcelo M. Garcia wrote:
 Hi

 I tried to install the kernel Red Hat 5.3 x86_64 (2.6.18-128.el5.x86_64)
 with the command:
rpm -Uvh kernel-2.6.18-128.el5.x86_64.rpm
 but there is problem with dependecy: ecryptfs-util  44. How to solve
 problems with depencies when installing a beta kernel?

 I'm trying this kernel to see if I get CentOS working with the wireless
 iw4965. I tried the drivers from Intel, but the compilation failed.

 It seems that ecryptfs-util is filesystem specific, and that's not
 a default filesystem in linux, so you should be safe in forcing the
 rpm to install (--nodeps --force or something).
I can confirm this, just use --nodeps (please read remark below prior to 
doing this, as said use rpm -ivh --nodeps)
I am running it successfully on my desktop.

Akemi Yagi wrote:
 On Tue, Jan 13, 2009 at 4:12 PM, Marcelo M. Garcia
 marcelo.maia.gar...@googlemail.com  wrote:
 Hi

 I tried to install the kernel Red Hat 5.3 x86_64 (2.6.18-128.el5.x86_64)
 with the command:
   rpm -Uvh kernel-2.6.18-128.el5.x86_64.rpm

 DO NOT use the -U option when installing the kernel.  Use -ivh instead.
Yes, the U option would update the kernels, making all other older 
versions of your kernel disappear, if the kernel would not load, you 
will not be able to load in an older version
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Creating an iso image of a audio CD with K3B

2009-01-14 Thread Tosh
Robert Moskowitz wrote:
 Could it be this simple?
 Robert Moskowitz wrote:
 Can you do this?  I have not found the options to get this to happen.
 So far I have seen how to read the Audio CD and make a directory of WAV
 files with a control file for later burning to CD, but I want an iso
 image that I can archive and burn audio CDs to use as they get used up.
 According to:
 http://en.kioskea.net/faq/sujet-1209-creating-an-iso-image-under-linux
 dd if=/dev/hdd of=mycd.iso
 So I figured out that my cdr/dvdr is hdb (k3b tells me so), so I try:
 dd if=/dev/hdb of=mycd.iso
 and get the errors:
 dd: reading `/dev/hdb': Input/output error
 0+0 records in
 0+0 records out
 0 bytes (0 B) copied, 0.0468789 seconds, 0.0 kB/s
 The gnome panel shows the CD icon but the options are only to play the
 CD or eject it.
 I tried a umount /dev/hdb but am told it is not mounted per mtab.
 Any ideas?
yes normally it should be that simple
did you run the command as root?


___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] ASUS PT6 or Intel DX58SO for CentOS?

2009-01-13 Thread Tosh
Chris Boyd wrote:
 I'm looking at setting up a new machine to run CentOS 5 and a few
 VMWare machines to test Windows XP, Vista, and 7.  I'm working with a
 custom PC shop and they've recommended I use either the ASUS PT6 or
 Intel DX58SO.  Any feedback good or bad on either of these?

I run a similar setup with a DQ45EK, one gen before what you are 
recommended, it works perfect out-of-the-box with CentOS 5.2, with the 
new beta 5.3 kernel I do not need any kmod's so all devices are 
recognized directly
http://people.redhat.com/dzickus/el5/
I run a CentOS 5.3beta 64bit xen kernel which works perfect
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] mp3 to wav converter

2009-01-11 Thread Tosh
Robert Moskowitz wrote:
 What is there available for Centos?  Now that Audacity is no longer
 available to us...

Which version of CentOS are you running? (version and architecture please)
I have audacity working perfectly, I do compile it myself, but can make 
it available in an rpm package
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] OT - Consumer MOBO + CPU - CentOS 5 - Xen

2009-01-06 Thread Tosh
Rainer Duffner wrote:
 Tom Brown schrieb:
 Hi

 I want to consolidate some machines at home and so i wonder does anyone
 have any recommendations for a good consumer rather than server mobo+cpu
 combination that would be able to run paravirt and fullvirt quests ?




 Probably depends on how much you want to spend.
 Core7i will blow everything out of the water, even entry-level Xeons, I
 believe
 The boards and CPUs are expensive - but you can add a lot of RAM (six
 sockets instead of four).


 Rainer
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
cheap xeon dual or quad core
go to intel/or you mobo company website and check out compatibility list 
per processor/mobo
a mini itx server with a dual core xeon 4gb ram 150GB velicoraptor 
should be around 550 euro, which imho is good value for money
ps : you will need centos 5.2 or 5.3beta kernels to make most of the 
networking run out of the box (or install kmod)
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] HAL Daemon failure on boot up

2008-12-21 Thread Tosh
Dick Roth wrote:
 I've been having a problem for a while:  when booting, haldaemon will
 fail, leaving me without CD/DVD and floppy drives available.

 Has anyone else had this kind of problem?  If so, can anyone suggest a
 solution?

 Thanks for listening,

 Dick

some more information would be helpful
what version of centos and hal
any fail reports
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Any Alternative for X window System

2008-12-08 Thread Tosh
Filipe Brandenburger wrote:
 Hi,

 On Mon, Dec 8, 2008 at 00:20, karthikeyan subbannan
 [EMAIL PROTECTED]  wrote:
 I have one problem in centos4.4.

 You can update to 4.7 and see if that fixes it. If it's a problem in
 X, it might have been fixed between 4.4 and 4.7, although I would say
 it's very unlikely that the problem is in X.

 When i restart the system it will come down.

 What happens if you don't reboot but only restart your Java application?

 After few hours it will again go to 100%.

 What happens if you reboot but do not start the Java application right away?

 Your Java application is guilty until proven otherwise.

 HTH,
 Filipe
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
which java are you using?
different versions of java react differently
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Web Filter

2008-12-07 Thread Tosh
Joseph L. Casale wrote:
 I've also been using Untangle (untangle.com) and just love it.

 This machine is nearly stock with all the nat/firewall done in a simple
 hand written script, it also serves as an Asterisk PBX so I couldnt use
 an appliance.

 I'm not sure if the latest has all the features OP is seeking, but I've
 been using IPCop for ages with NP (which means I've not really visited
 the site and browsed as I should).

 I suppose but the firewall is adequate. I figure its a toss between DG or
 squid/squidproxy and it looks like the later would do what I need at another
 location with a bigger AD infrastructure much easier so I might be inclined to
 to give it a whirl. Hopefully rpm's exists for squid somewhere...

 Thanks for all the suggestions!
 jlc
 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
squid is standard in centos so just yum install
or you could use privoxy it has a lot of ad blocking features enabled by 
default and is in also in centos
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] New to Centos and have question about updating packages

2008-12-07 Thread Tosh
Darrell Betts wrote:
 I have been using Freebsd for along time. I have a client of mine that
 wants me to use Centos for his email server and web server. Anyway
 with Freebsd to update the packages file you use the following commands.
 portsnap fetch fetches all the current port trees
 portsnap update adds all the new ports to the tree on the server
 portupgrade -arR will install all the ports that are installed on the
 server.
Now my question is what are the commands for Centos to fetch ,update
 and install, all the packages installed on the server. I would like to
 use Yum. Any help would be great.

 Thanks

 Darrell Betts
 [EMAIL PROTECTED]
 ---
 Looks like I Picked the Wrong Week to Stop Sniffing Glue.
 -- Steve McCroskey --

 Live ATC Feed from Toledo Express Airport 
 http://audio.liveatc.net:8012/ktol.m3u




 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos
simply yum update, this compares your packages with the package server 
(repo) and downloads and updates all packages to the latest version
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Sound problem in Dell inspiron 1525

2008-12-03 Thread Tosh
Ern jura wrote:
 After installing CentOS 5.2 on my Dell inspiron 1525 laptop, the sound
 was inactive, I then installed Alsa-Driver, Alsa-utils, Alsa-plugins and
 Alsa-libs the ATrpms site. The speakers then work fine, but when I plug
 in headphones, the sound begins to fade out and eventually becomes
 completely quiet. I have checked the Volume Manager and nothing is muted
 including the Headphones volume, when I unplug the headphones the
 speakers are also quiet. The sound card is a HDA-INTEL. Any suggestions
 and solutions?

 NOTE: THE SPEAKERS WORK FINE, THE PROBLEM ONLY OCCURS THE MOMENT I PLUG
 IN HEADPHONES. HOW CAN I USE HEADPHONES?


 

 ___
 CentOS mailing list
 CentOS@centos.org
 http://lists.centos.org/mailman/listinfo/centos

check your modprobe.conf, my thinkpad works perfect with intel hda sound
or post your lspci output
here is my /etc/modprobe.conf for sound
 alias snd-card-0 snd-hda-intel
 options snd-card-0 index=0
 options snd-hda-intel index=0
 remove snd-hda-intel { /usr/sbin/alsactl store 0 /dev/null 21 || : ; }; 
 /sbin/modprobe -r --ignore-remove snd-hda-intel
here is my lspci output
 00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition 
 Audio Controller (rev 02)
 00:1b.0 0403: 8086:27d8 (rev 02)

PS you do not need atrpms for this driver




___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos