Re: [CentOS] how to separate individual logs?

2010-12-01 Thread John Doe
From: hadi motamedi motamed...@gmail.com I even tried to make it as an script file and made it executable but still getting the following error: 'syntax error near unexpected token 'done' Ok, last try... Did you copy/pasted my code? Did you type it? Saying just that there's a syntax error

Re: [CentOS] how to separate individual logs?

2010-12-01 Thread John Doe
From: hadi motamedi motamed...@gmail.com On 12/1/10, John Doe jd...@yahoo.com wrote: Ok, last try... Did you copy/pasted my code? Did you type it? Saying just that there's a syntax error without showing the code you used does not help... Please find below the code that I tried

Re: [CentOS] x86_64 and Thunderbird Trash folder.

2010-12-02 Thread John Doe
From: Jerry Geis ge...@pagestation.com I just ran into something odd, I have x86_64 5.5 running with Thunderbird. I am getting a message about can delete the email as Trash is FULL. The file size is 4G. Whats up with that I have the 64 bit executable running. file

Re: [CentOS] how to separate individual logs?

2010-12-03 Thread John Doe
From: Les Mikesell lesmikes...@gmail.com If the first line of the input file used doesn't match the pattern you'd probably get an error in the redirect since $LOGFILE would not be set. If the data file does not respect the order section+body... he could just add a LOGFILE=garbage.txt at

Re: [CentOS] Yum Updates dependencies missing (rpmforge)

2010-12-06 Thread John Doe
From: Lanny Marcus lmmailingli...@gmail.com There are updates available, for the below multimedia packages (CentOS 5.5, 32 bit), but I'm getting missing dependency errors from yum update for these. --- Package directfb.i386 0:1.2.10-1.el5.rf set to be updated --- Package ffmpeg.i386

Re: [CentOS] DVD drive ownership/permissions group ownership = mail?

2010-12-06 Thread John Doe
From: Dave tdbtdb+cen...@gmail.com I can change the group ownershipp of the DVD drive, but if I log out in again it changes back. Is there a way to make a change permanent? How could I figure out what process is changing this back? ls -la /dev/scd0 brw-rw 1 root mail 11, 0 Nov 12

Re: [CentOS] networking printer

2010-12-06 Thread John Doe
From: ann kok oiyan...@yahoo.ca I would like to ask linux can do the networking printer as window Share it to office environment If yes, any brand name and concern Any documentation also Most entry level business printers are ethernet (standalone). Our 2 years old 200€ color laser printer

Re: [CentOS] Howto batch sign RPM packages?

2010-12-10 Thread John Doe
From: Patrick Lists centos-l...@puzzled.xs4all.nl I need to sign a bunch of RPM packages that have interdepencies: build #1, sign #1, install #1, build #2, sign #2, install #2 etc. Now I don't want to type in a rather long and difficult passphrase every time one of dozens of packages need

Re: [CentOS] sudo doing DNS lookup

2010-12-10 Thread John Doe
From: Steve Clark scl...@netwolves.com I have a confusing problem. I have two centos 5,5 boxes. Both have sudo.i3861.7.2p1-9.el5_5 installed I am using the same sudoers file, but the one on box A keeps trying to do DNS lookups while the one on box B

Re: [CentOS] sudo doing DNS lookup

2010-12-10 Thread John Doe
From: Steve Clark scl...@netwolves.com Without the: Defaults fqdn it hangs for a long time, this is when I don't have connection to the net, if I have connection there is just a slight pause while tries to do the DNS lookup. Did you compare the following files between both servers?

Re: [CentOS] Stripping silent periods from MP3s

2010-12-13 Thread John Doe
From: Keith Roberts ke...@karsites.net I'm on Centos 5.5, and would like to use sox to strip out any periods of silence 5 seconds from a batch mp3 audio files. Googling I found sox, but it does not seem to support mp3 files by default. I don't think it is autodetected at runtime. You

Re: [CentOS] OT: programming language for morons (newbie friendly language in Open Source world)

2010-12-14 Thread John Doe
From: Sven Aluoor alu...@gmail.com I have more than 12 years experience with UNIX system administration, but I am too stupid for programming. My only programming experience is shell scripting. I tried to learn Java, but don't understand it because it is too complicated for my limited

Re: [CentOS] how to install CentOS onto a USB flash drive from Windows?

2010-12-14 Thread John Doe
From: Rudi Ahlers r...@softdux.com Can anyone please point me to a link with instructions on how to install CentOS 5 onto a USB flash drive, preferably from Windows? I would like to create a full running CentOS installation (with minimal packages obviously) that runs off a USB flash drive,

Re: [CentOS] how to install CentOS onto a USB flash drive from Windows?

2010-12-15 Thread John Doe
From: Keith Roberts ke...@karsites.net Not tried that yet, but when using a USB drive for doing a kickstart installation, the USB drive is recognised by anaconda as sda1, and offered as an installation option in the partitioner dialogue. ignoredisk --drives=sda bootloader

Re: [CentOS] centos 5.5 x86_64 - mplayer install problems

2010-12-17 Thread John Doe
From: Keith Roberts ke...@karsites.net I find smplayer is more stable than the mplayer-gui, which is a little bit odd, as it's a third party app, whereas mplayer-gui is from the developers of mplayer itself. I think I remember reading on their mailing list that smplayer was now the

Re: [CentOS] Fixing filenames with directories with spaces in the names

2010-12-28 Thread John Doe
From: Craig White craigwh...@azapple.com for old in `cat $FILENAME`;do echo $old dirname $old new=$(echo $old | sed 's/\*/\-/') done I'm trying to take out some stupid Macintosh things - in this case filenames with asterisks but I have others like tilde's and probably others

Re: [CentOS] perl code to remove newlines

2010-12-30 Thread John Doe
From: ken geb...@mousecar.com Some file this script would need to process could very well be ridiculously huge, which is why I chose to process line-by-line. Secondly, yes, I was already using the general strategy of taking out the newlines (where they're misplaced) and then putting them

Re: [CentOS] amanda backup ssh key

2010-12-31 Thread John Doe
From: bluethundr bluethu...@gmail.com debug2: key: /var/lib/amanda/.ssh/id_rsa ((nil)) debug2: key: /var/lib/amanda/.ssh/id_dsa ((nil)) ... debug1: Next authentication method: publickey debug1: Trying private key: /var/lib/amanda/.ssh/id_rsa debug3: no such identity:

Re: [CentOS] variable in loop

2011-01-03 Thread John Doe
From: S Mathias smathias1...@yahoo.com $ ASDF=hello; a=0; a=$(( 70 - $(echo $ASDF | awk '{print length}') )); echo $a $ASDF$(for i in {1..$a}; do printf .; done) 65 hello. Why doesn't it print: 65 hello. What am i

Re: [CentOS] Anyone using PHP52 packages from iuscommunity.org?

2011-01-05 Thread John Doe
From: robert mena robert.m...@gmail.com I got bit today.I left the enable=1 of ius and it upgraded automatically from the 5.2.15 to 5.2.16. After that I stated getting memory allocation errors. Anyone is getting that? Since I could not find 5.2.15 again I had to switch back to 5.2.10

Re: [CentOS] how to access external USB drive in single user mode

2011-01-06 Thread John Doe
From: Agnello George agnello.dso...@gmail.com how to access external USB drive in single user mode - plug your USB drive - check the server logs (/var/log/messages) to see the device name (/dev/sdXY) assigned to the detected USB drive - Use/create a mount point: /mnt/ZZZ by example - mount

Re: [CentOS] Configuring printers in CentOS 5

2011-01-07 Thread John Doe
From: Glenn Eychaner geycha...@mac.com Could someone please explain to me how to best configure printers in CentOS 5? I've been trying to configure a new printer, which is served by a Mac Mini: If I open a web browser at localhost:631, or system-configure-printers and I configure the

Re: [CentOS] Multiple LUN support

2011-01-07 Thread John Doe
From: Abilio Carvalho abilio.carva...@bbp.ch I have Centos 5.2 and am trying to set up my first tape loader, a Quantum SuperLoader 3. My cat /proc/scsi/scsi outputs the following: Attached devices: Host: scsi0 Channel: 00 Id: 00 Lun: 00 Vendor: transtec Model: PV610F16R1C Rev:

Re: [CentOS] linux batch job sleep problem???

2011-01-07 Thread John Doe
From: mcclnx mcc mcc...@yahoo.com.tw we have Redhat 5.5 on server. Recently we tried to use sleep command on batch job script some sleep work but some not sleep. any one have ideal? #/bin/bash set -v program1 sleep 30 program2 sleep 60 program3 sleep 40 ... Maybe try to replace

Re: [CentOS] Centos installation Vs Disk partitioning

2011-01-10 Thread John Doe
From: Roland RoLaNd r_o_l_a_...@hotmail.com 1. Drive A (320 GB): OS 2. Drive B (1 TB): Mysql + /home 3. Drive C (1 TB): /development + /opt Does that mean no RAID and downtime to recover from backups is acceptable...? JD ___

Re: [CentOS] RAID configuration suggestion???

2011-01-11 Thread John Doe
From: mcclnx mcc mcc...@yahoo.com.tw we have several DELL R900 with PERC 6/E adapter in it. R900 using Redhat Linux. Each R900 have two PERC 6/E adapter and at least two MD1000 connect to it. Configuration 1: PERC 6/E -- two MD1000 PERC 6/E -- empty

Re: [CentOS] /etc/bashrc causing probs..

2011-01-14 Thread John Doe
From: Roland RoLaNd r_o_l_a_...@hotmail.com any idea how to prevent bashrc to execute the below to a no login shell ? or any other advice for that matter. Maybe try: if shopt -q login_shell; then ... fi JD ___ CentOS mailing list

Re: [CentOS] Centos, Samba , WIN7

2011-01-14 Thread John Doe
From: Timothy Kesten centos-...@gmx.de I've fresh installed CentOS 5.5 and realized, that Samba is in version 3.0.33-3. Is it possible to conect WIN7 in a Samba-Domäne with this version? Google for samba windows.7 and click on first answer... JD

Re: [CentOS] Server reboots unexpectebly.

2011-01-14 Thread John Doe
From: compdoc comp...@hotrodpc.com If there aren’t any messages in the logs, then I would have to think this is a hardware issue. Maybe an overheating or power supply problem. These servers have new hardware? Describe your hardware... These should appear in the server logs (IPMI) in the

Re: [CentOS] not able to check in all code into svn which creates problem in deployment

2011-01-19 Thread John Doe
From: Agnello George agnello.dso...@gmail.com i have currently started to deploy code into our production environment from the the dev environment, we deploy code on to the production from the svn , ( i do a svn export ) , some times not code is checked into the svn and it does not throw

Re: [CentOS] Let's talk about HTTPS Everywhere

2011-01-19 Thread John Doe
From: S Mathias smathias1...@yahoo.com Ok. It's a Firefox Add-on: https://www.eff.org/https-everywhere Questions: 1) But: Why can't i find it on the offical Firefox Add-ons site?: https://addons.mozilla.org/en-US/firefox/ maybe because they did not choose to put it there...? maybe they

Re: [CentOS] looking for a package

2011-01-21 Thread John Doe
From: m.r...@5-cent.us m.r...@5-cent.us I'm trying to update a workstation, and it wants to update mpeg2-utils. But that has a dependency of libmpeg2-0.5.1-3, for i386. epel doesn't have it, and I tried looking on rpmfusion.org, and I can only find a very few packages there. Anyone have an

Re: [CentOS] backup script

2011-01-25 Thread John Doe
From: madu...@gmail.com madu...@gmail.com I want to create bash script to have a zip copy from a website running on linux /var/www/htdocs/* local on the same box on different directory I am thinking to do a local backup using crontab (snapshot my web) tar -cvzf /tmp/website-$(date

[CentOS] yum confusion...

2011-02-02 Thread John Doe
Hi, I just installed a new server and my final yum update fails... I have rpmforge and rpmforge-extras, but with yum priorities... # grep enabled /etc/yum/pluginconf.d/priorities.conf enabled = 1 # cat /etc/yum.repos.d/CentOS-Base.repo | grep priority\|^\[ [base] priority=1 [updates] priority=1

Re: [CentOS] yum confusion...

2011-02-03 Thread John Doe
From: Nicolas Thierry-Mieg nicolas.thierry-m...@imag.fr Du you have a priority=XX in rpmforge.repo ? I have no priority in rpmforge.repo... From: Karanbir Singh mail-li...@karan.org I can guess that the rcp_weappers-libs and -devel are not being masked. Try running yum with a -d7 and

Re: [CentOS] User Details

2011-02-03 Thread John Doe
From: James Bensley jwbens...@gmail.com -How to add a new user? $ useradd -bash: useradd: command not found (This is the same for my normal user and when logged in as root) First, normal user not finding useradd is normal. And it would not be able to use it for obvious security reasons...

Re: [CentOS] yum confusion...

2011-02-04 Thread John Doe
Solved by adding 'check_obsoletes=1' to the priorities.conf.. JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] Unable to connect to wireless network

2011-02-04 Thread John Doe
From: Jatin daveyja...@gmail.com I just installed the CentOS 5.5 version on my toshiba laptop. I did the configuration that i had for the wireless settings but still i could not connect to my home wireless network. So someone please guide me on how i can connect my laptop to my wireless

Re: [CentOS] Most efficient/fastest way to see disk usage

2011-02-15 Thread John Doe
From: Fajar Priyanto fajar...@arinet.org To see which directories have changes (added/remove subdir/files) comparing to the previous data. I'm thinking of using ls -laR and diff. But not sure. Maybe something like: find / -exec stat -c %i %a %u %g %s %Y %Z %n '{}' \; before then rerun

Re: [CentOS] DRBD question

2011-02-15 Thread John Doe
From: ann kok oiyan...@yahoo.ca Anyone experienced in DRBD ls it good in using mysql redundant? What is it best to use? Maybe check http://mysql-mmm.org/ JD ___ CentOS mailing list CentOS@centos.org

Re: [CentOS] How can I disable Internet access for programs running in Wine?

2011-02-25 Thread John Doe
From: erikmccaskey64 erikmccaske...@zoho.com I just can find any solution... Dunno if selinux could do this, but you could also try to run wine from a specific user and then use iptables with --uid-owner to block access...? JD ___ CentOS

Re: [CentOS] Cannot %include in CentOS 5.5 kickstart

2011-03-15 Thread John Doe
From: whitivery co55-s...@dea.spamcon.org I've previously used includes in CentOS 4.4 and they worked fine. But in CentOS 5.5, trying to specify a driver disk via an include does not work. Dunno what is going on for you, but this works for me: ... %include /tmp/ks.net ... %pre

Re: [CentOS] perl one-liner issue

2011-03-17 Thread John Doe
From: Joseph L. Casale jcas...@activenetwerx.com To: centos@centos.org centos@centos.org Sent: Wed, March 16, 2011 8:56:41 PM Subject: [CentOS] perl one-liner issue I am trying to deduce the one liner for an rpm I am packaging to edit a php configuration file from within my spec. The line

Re: [CentOS] ssh remote execute awk problem

2011-03-17 Thread John Doe
From: sync jian...@gmail.com There is a problem on executing awk command to remote servers; 1. #!/bin/sh 2. 3. _CMD=ssh root@localhost 4. 5. cpu_num=$($_CMD awk '/processor/{count[proc]++}; END{print count[proc]}' /proc/cpuinfo)“ 6. 7. echo $cpu_num Quote the whole

Re: [CentOS] creating a htpasswd file for certain urls

2011-03-18 Thread John Doe
From: Jason Slack-Moehrle slackmoehrle.li...@gmail.com I am in a kind of fix , i got a website ( beta.somesite.com ) .. that need to be password protected , however there are two URLs that should be allowed to all with out password access. Ona cent os box 5.5 i am running apache . the

Re: [CentOS] Add repo for xfig package

2011-03-21 Thread John Doe
From: hersh parikh hershparik...@yahoo.com From: Nicolas Thierry-Mieg nicolas.thierry-m...@imag.fr xfig and transfig are in centos 5, why don't you just use the regular centos repo? We have tried it says no packages available..if its working for you can you please paste you .conf file here?

Re: [CentOS] Kernel Panic on HP/Compaq ProLiant G7

2011-03-25 Thread John Doe
From: Dave Windsor dave.wind...@us.bosch.com Today, there are not high I/O loads. This server was intended to replace two older HP-UX servers. I had just begun to migrate the workload to the new server when the crashes began to occur. There are some minor, sporadic I/O loads but

Re: [CentOS] CentOS HA problem

2011-03-28 Thread John Doe
From: sync jian...@gmail.com checking for heartbeat / glue_config.h ... No configure: error: Core development headers not found Google for... glue_config.h JD ___ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos

Re: [CentOS] 32-bit compat-gcc on 64-bit CentOS?

2011-03-31 Thread John Doe
From: Alan M. Evans a...@extratech.com What set of packages would that be? Like I said, the header in question is owned by compat-gcc-34, and there is only a 64-bit version available in the repos. Not sure what you meant but there is a 32-bit version...

Re: [CentOS] Centos6: missing link for mysqlclient

2011-09-08 Thread John Doe
From: Helmut Drodofsky drodof...@internet-xs.de I am installing snort from source. Besides of a lot of additional libraries, I needed a link ln -vfs /usr/lib64/mysql/libmysqlclient.so.16 /usr/lib64/libmysqlclient.so Are there reasons not to install with yum install mysql-devel ? I have found many

Re: [CentOS] Please confirm: Centos 6's Anaconda doesn't install i686 RPMs on x86_64 arch

2011-09-09 Thread John Doe
From: Robinson Tiemuqinke hahaha_...@yahoo.com  I just like to confirm whether this is true: on x86_64 arch machines, Centos 6's anaconda/kickstart will install only noarch and x86_64 arches RPMs, and no i686 arch RPMs installed by default.  This seems like exactly different from Centos 5  

Re: [CentOS] Problems with the epel GPG key

2011-09-09 Thread John Doe
From: m.r...@5-cent.us m.r...@5-cent.us I just went to install fail2ban, and it kept failing, complaining about the EPEL GPG key. It was installed... and yum worked, once I did ln -s /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL You did not say on whichCentOS version

Re: [CentOS] Problems with the epel GPG key

2011-09-09 Thread John Doe
On 09/08/2011 06:56 PM, m.r...@5-cent.us wrote: I just went to install fail2ban, and it kept failing, complaining about the EPEL GPG key. It was installed... and yum worked, once I did ln -s /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL Oops, it installed for me but

Re: [CentOS] disk duplication question

2011-09-12 Thread John Doe
From: Jerry Geis ge...@pagestation.com When I take a duplicated disk and stick it in the new box which is different than the master machine of course all seems to work except the network. Is this the correct way to do this? Making a master and being able to stick the duplicated disk in

Re: [CentOS] Issues with successfully completing rsync with msync.centos.org

2011-09-13 Thread John Doe
From: Christopher Hawker cwhawk...@gmail.com I am trying to establish a mirror, and when I execute the rsync command, it only creates the directories and selected files. It does not download the entire iso collection or repo files. And which rsync command? JD

Re: [CentOS] trouble building an rpm

2011-09-13 Thread John Doe
From: Peter Kjellström c...@nsc.liu.se It's not a good idea to build rpms as root (unless in a throw-away vm). Build as user or even better using mock. Am I missing something or building an rpm as a non-root user for security reason won't do much when, in the end, the rpm will be installed

Re: [CentOS] Issues with successfully completing rsync with msync. centos.org

2011-09-13 Thread John Doe
From: Christopher Hawker cwhawk...@gmail.com The rsync command on the CentOS website, on the page that tells you how to setup a mirror. The one with --exclude isos ? JD ___ CentOS mailing list CentOS@centos.org

Re: [CentOS] CentOS 6: file and directory permissions

2011-09-13 Thread John Doe
From: Helmut Drodofsky drodof...@internet-xs.de I find nowhere the explanation of the dot in file permissions like: -rw-r--r--. 1 root root  457 Aug  4 17:27 config I have searched in forums, Red Hat deployment guide, storage administration guide etc  … Google dot in permissions... Results

Re: [CentOS] Issues with successfully completing rsync with msync. centos.org

2011-09-13 Thread John Doe
From: Christopher Hawker cwhawk...@gmail.com I have been using this one: rsync -aqzH --delete msync.centos.org::CentOS /path/to/local/mirror/root If I can, I want to mirror: mirror.optus.net/centos as it is nearer my mirror server and the internet connection for the server is through Optus (in

Re: [CentOS] Flesh Playerproblem

2011-09-14 Thread John Doe
From: Ashish Shaligram ashish8li...@gmail.com I have installed centos 6, i have already installed flesh player, browser ask for flesh player.  how can i solve the problem?  Check that the plugin file is installed. ll /usr/lib*/mozilla/plugins/libflashplayer.so Or replace mozilla with your

Re: [CentOS] Missing ipa-server package on centos6?

2011-09-14 Thread John Doe
From: Armin Herbert armin.herb...@atrics.de I can't seem to find the ipa-server package in centos 6; it is not available on my favourite mirrors, nor do the release notes mention its absence. Has it been overlooked when assembling the distribution? Dunno but CentOS 5 and 6 have the same ipa

Re: [CentOS] Cons of disabling *.i386 and *.i686 in a 64bit Distribution

2011-09-15 Thread John Doe
From: James Nguyen ja...@callfire.com So the premise for this question is that I setup an exclude=*.i368,*.i686 in my yum.conf. While doing a yum update I come across missing package dependencies for instance mkinitrd for the i386 package. What about using multilib_policy=best instead? JD

Re: [CentOS] mount exFAT filesystem on centos

2011-09-19 Thread John Doe
From: MOKRANI Rachid rachid.mokr...@ifpen.fr Is there some simple tool to mount exFAT filesystem on CentOS (2.6.18)? Google says: http://en.wikipedia.org/wiki/ExFAT#Support_on_Other_Platforms JD ___ CentOS mailing list CentOS@centos.org

[CentOS] Kickstart mdraid on two disks, from usb key detected as sda instead of sdc...

2011-09-20 Thread John Doe
Hi, I am trying to adapt my kickstart usb key to optionally auto-setup mdraid on two disks...  But I have one server that keeps attaching the usb key to sda instead of sdc... My kickstart creates the raid devices on sdb and sdc partitions; but then I expect it not to work once the key is

Re: [CentOS] sudo wildcards problem: for every argument a *-wildcard? Better solution?

2011-09-20 Thread John Doe
From: Sven Aluoor alu...@gmail.com  I allow the user tommy to run this command as root sudoCommand: /app/appname/connectors/*/*/current/bin/* $ sudo /app/appname/connectors/zur/namename/current/bin/othername agentsvc --i --u root --sn 1m7command Sorry, user tommy is not allowed to execute

Re: [CentOS] PDF Reader/Editor for CentOS 5.7 (32 bit)?

2011-09-20 Thread John Doe
From: Lanny Marcus lmmailingli...@gmail.com Trying to install xpdf, with yum, I get this dependency error from rpmforge: 1:xpdf-3.02-8.el5.rf.i386 from rpmforge has depsolving problems   -- Missing Dependency: libXm.so.4 is needed by package 1:xpdf-3.02-8.el5.rf.i386 (rpmforge) Error:

Re: [CentOS] sudo wildcards problem: for every argument a *-wildcard? Better solution?

2011-09-21 Thread John Doe
From: Sven Aluoor alu...@gmail.com On Tue, Sep 20, 2011 at 1:48 PM, John Doe jd...@yahoo.com wrote: Tried with -- ? Maybe replace the last * with [! ]* doesn't work. Any other idea? I tried the following in /etc/sudoers:   myuser    ALL=/o*/te* And cat /opt/test   #!/bin/bash   echo

Re: [CentOS] How to update CentOS 5.4 to 5.6?

2011-09-22 Thread John Doe
From: Aleksey Tsalolikhin atsaloli.t...@gmail.com Is there a way to update a CentOS 5.4 server to 5.6 (but not 5.7)? yum update takes me all the way up to 5.7. First, this is normal; yum update will always take you to the most recent 5.x Second, you will miss important security/bug fixes by

Re: [CentOS] w3pw install

2011-09-22 Thread John Doe
From: Tim Dunphy bluethu...@jokefire.com I'm attempting to install the w3pw password wallet on centos 5.6 http://w3pw.sourceforge.net/ The interface works well enough, but for the life of me I can't find the default password for setup or the file in which this is set. Does anyone happen

Re: [CentOS] Installing yesterday's CentOS (or how to install the patch/package set from 3 weeks ago)

2011-09-23 Thread John Doe
From: Aleksey Tsalolikhin atsaloli.t...@gmail.com Let's say your operating policy is no patch updates without testing first in the test environment.  Let's say it takes you 3 weeks to test.  Over the course of the 3 weeks, the repo changes (new packages added, old removed). Is there a way

Re: [CentOS] data recovery

2011-09-26 Thread John Doe
From: Paras pradhan pradhanpa...@gmail.com On Fri, Sep 23, 2011 at 3:17 PM, John R Pierce pie...@hogranch.com wrote: On 09/23/11 12:33 PM, m.r...@5-cent.us wrote: Paras pradhan wrote:  Number  Start   End     Size   File system  Name      Flags    1      17.4kB  134MB   134MB      

Re: [CentOS] disk partitioning: 6.0 install to harddrive using liveCD

2011-09-26 Thread John Doe
From: cen...@trodman.com cen...@trodman.com I'm planning to set up a test Centos 6.0 box (has CDROM, but no DVD) with these partions: Why not use the netinstall or minimal CDs...? JD ___ CentOS mailing list CentOS@centos.org

Re: [CentOS] Problems with Intel Ethernet and module e1000e

2011-09-26 Thread John Doe
From: Volker Poplawski vol...@openbios.org I'm facing a serious problem with the e100e kernel module for Intel 82574L gigabit nics on Centos 6. I had pbms with my Intel 1000e too. Installed elrepo's kmod-e1000e and so far so good... http://elrepo.org/tiki/kmod-e1000e JD

[CentOS] Firewalling outbound connections...

2011-09-26 Thread John Doe
Hi, would anyone know a soft to firewall outbound connections (applications phoning home, etc...). It would detect an unknown (to him) app that tries to connect to the outside world and it would popup a allow/deny request...AppArmor might be a bit overkill... Anyone have any experience with

Re: [CentOS] RTL8111/8168B always 100mbps

2011-09-27 Thread John Doe
From: Muhammad Panji sumodi...@gmail.com I have an onboard Realtek RTL8111/8168B NIC. from lspci -vv : 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02) It is detected, but why the speed is always 100Mbps, already

Re: [CentOS] RTL8111/8168B always 100mbps

2011-09-27 Thread John Doe
From: m.r...@5-cent.us m.r...@5-cent.us I was working on a similar problem (turned out to be our network switch), but *did* find that order of the ethtool command is significant: you *MUST* have autoneg off as the first parameter; that is, try # ethtool -s eth0  autoneg off speed 1000 duplex

Re: [CentOS] RTL8111/8168B always 100mbps

2011-09-27 Thread John Doe
From: Brian Mathis brian.mathis+cen...@betteradmin.com If your first reaction is to disable auto-negotioation, please update your ways.  We are a decade into the 21st century, after all. Sure, I can update my ways. I do want to live into the 21st century!  ^_^ But that does not solve this

Re: [CentOS] RTL8111/8168B always 100mbps

2011-09-27 Thread John Doe
From: Les Mikesell lesmikes...@gmail.com Both sides have to negotiate.  The usual lingering problem is that someone configured the switch not to. All other Windows/linux PCs do work fine at 1000Mbps on the same switch... The other PCs using this Realtek too are Windows. I will test another

Re: [CentOS] [OT] Fetchmail and Mutt help

2011-09-28 Thread John Doe
From: m.r...@5-cent.us m.r...@5-cent.us it would *not* send email; it kept trying the normal SMTP server, even when I set the private IP as default. I had to delete the normal one before it ever tried the IP. Happened to me too; apart from making it default, you have to check that the

Re: [CentOS] add on sata card relabeling drives, installation

2011-09-29 Thread John Doe
From: Bob Hoffman b...@bobhoffman.com When installing with anaconda, the 2 drives located on the add-on sata card are being listed as sda and sdb instead of going to the back of the line. Check in the bios if it proposes a ctrl detection order. JD

Re: [CentOS] Error installing Postfix - Mysql Support

2011-09-30 Thread John Doe
From: Silvio Tadeu silvio.in...@hotmail.com root@server [/tmp]# ldconfig -p | grep libmysqlclient.so.15         libmysqlclient.so.15 (libc6,x86-64) = /usr/lib/libmysqlclient.so.15         libmysqlclient.so.15 (libc6,x86-64) = /usr/lib64/libmysqlclient.so.15 How come an x86_64 lib appears in

Re: [CentOS] trace?

2011-10-10 Thread John Doe
From: Eero Volotinen eero.voloti...@iki.fi 2011/10/10 hadi motamedi motamed...@gmail.com: I have installed an announcement application on my centos 6.0 server that calls for putting specific voice announcement files under /usr/local/srf/bin/prompt to be played in response to certain

Re: [CentOS] trace?

2011-10-11 Thread John Doe
From: hadi motamedi motamed...@gmail.com On 10/10/11, John Doe jd...@yahoo.com wrote: From: Eero Volotinen eero.voloti...@iki.fi 2011/10/10 hadi motamedi motamed...@gmail.com:   I have installed an announcement application on my centos 6.0 server   that calls for putting specific voice

Re: [CentOS] Centos 6.0 , DRBD

2011-10-12 Thread John Doe
From: Marko Weber we...@zackbummfertig.de i am completely confused now. With elrepo u dont mean epel.repo or? How do i enable this elrepo in Centos? Google 'elrepo' and it is the first answer... JD ___ CentOS mailing list CentOS@centos.org

Re: [CentOS] CentOS 6.0 i386 DVD

2011-10-17 Thread John Doe
From: William L. Maltby centos4b...@triad.rr.com Anyway, my life would've (will be) a bit simpler if someone can clue me in to how to get that image onto a DVD using either CentOS 6 or Windows. As stated in the release notes, you need a DVD-R. In my case, k3b failed to write it but regular

Re: [CentOS] haproxy ssl

2011-10-18 Thread John Doe
From: Tim Dunphy bluethu...@jokefire.com I am attempting to load balance SSL web servers using haproxy on centos 5.7. I am using HA-Proxy version 1.4.18 Never used haproxy but maybe you want 'option ssl-hello-chk'... But search for Since haproxy does not handle SSL in their architecture

Re: [CentOS] Missing stuff in /bin

2011-10-21 Thread John Doe
From: Mikko Koivunen mikko.koivu...@gmail.com Having a weird issue with CentOS 6. I lost a lot of stuff in /bin/ (cp,rpm,cat and others) on one host, but that was a development machine and I'm not really sure what happened there. - coreutils vim-minimal are installed according to rpm Do

Re: [CentOS] ssd quandry

2011-10-25 Thread John Doe
From: John R Pierce pie...@hogranch.com On a CentOS 6 64bit system, I added a couple prototype SAS SSDs on a HP P411 raid controller ...           Disk Name: /dev/sdc ... Just wondering how come the array is detected as /dev/sd* instead of the classical /dev/cciss/c0d*... Is the P411 a

Re: [CentOS] ssd quandry

2011-10-25 Thread John Doe
From: John R Pierce pie...@hogranch.com On 10/25/11 2:16 AM, John Doe wrote: Just wondering how come the array is detected as /dev/sd* instead of the classical /dev/cciss/c0d*... Is the P411 a fake raid? no, its a seriously fast pci-e SAS2 hardware raid.  the physical devices don't

Re: [CentOS] openldap missing modules

2011-10-27 Thread John Doe
From: wessel van der aart wes...@postoffice.nl I'm currently setting up an openldap server and included the following lines in my slapd.conf : modulepath /usr/lib/ldap moduleload back_hdb after finishing up my config and i run slaptest on it i get an error saying that the modulepath doesn't

Re: [CentOS] ssd quandry

2011-10-27 Thread John Doe
From: Peter Kjellström c...@nsc.liu.se On Tuesday, October 25, 2011 01:48:13 PM Mogens Kjaer wrote: On 10/25/2011 12:20 PM, John Doe wrote: Guess this new ctrl does not use the cciss module anymore. If it's like a P410i like what I have it uses the hpsa driver. HP is moving from the old

Re: [CentOS] You suggestion for 'big' filesystem management Best Practice?

2011-10-28 Thread John Doe
From: Götz Reinicke goetz.reini...@filmakademie.de The iSCSI RAID we have is about 26TB netto and I'm again faced with the question: How many partitions, which filesystem, which mount options etc. For the User it would be the most simpel thing, to have one big filesystem she/he could fill

Re: [CentOS] Upgrading MySQL

2011-10-31 Thread John Doe
From: Jack Fredrikson jackfredrik...@yahoo.com Upon trying to run django, I get this error: ImproperlyConfigured: MySQLdb-1.2.1p2 or newer is required; you have 1.2.1 If I run yum update mysql I don't upgrade (expected). What do? Why are you trying to update mysql when the error says

Re: [CentOS] Archive mail format?

2011-11-03 Thread John Doe
From: Les Mikesell lesmikes...@gmail.com I have a bunch of old mail spread variously across dovecot maildirs and mbox format files on several machines that are headed for the trash.  Is there anything considered to be a portable archive format for mail messages, and if so are there tools to

Re: [CentOS] what is pirut called under CentOS6?

2011-11-10 Thread John Doe
From: Boris Epstein borepst...@gmail.com I noticed that pirut is no longer part of CentOS6. Does anybody know if there is a different graphical interface to yum that came to replace it? A Google search says:   Pirut was the system level updating tool which PackageKit aims to replace in RHEL 6.

Re: [CentOS] bind slave sync takes long

2011-11-22 Thread John Doe
From: Götz Reinicke goetz.reini...@filmakademie.de I do have two DNS servers running bind 9.7.3. One master, one slave. If I add/update a record on the master, it takes up to more or less 20 hours until that change is transferred to the slave. Maybe check the 'refresh' value...?  See:

Re: [CentOS] CentOS6 yum-plugin-fastestmirror spectacular failure

2011-11-25 Thread John Doe
From: Lars Hecking lheck...@users.sourceforge.net What's going on? Nobody mirroring cr in other parts of the world? Dunno but in the release notes: - Baseurl for the CR repo is set to only use centos.org internal machines, this is to reduce the amount of time we need to spend in seeding and

Re: [CentOS] How to make nodes in my local LAN see each other's names

2011-11-29 Thread John Doe
From: Timothy Madden terminato...@gmail.com The router has the 'DNS relay' option enabled, and all 7 computers use the router as the DNS server, which in turn will forward DNS requests to the ISP DNS server. That way I can understand that simple, plain, default DNS is not enough for my

Re: [CentOS] How to make nodes in my local LAN see each other's names

2011-11-30 Thread John Doe
On Wed, Nov 30, 2011 at 7:54 AM, Timothy Madden terminato...@gmail.com Indeed, my router (D-Link DIR-100) only does DNS relay and nothing more. What about in Network Setting / DHCP Client list reservation? It lists Host Name entries... http://www.scribd.com/doc/10073475/DIR100-Manual-En Page

Re: [CentOS] find most recent file update in directory

2011-12-09 Thread John Doe
From: m.r...@5-cent.us m.r...@5-cent.us John R. Dennison wrote: On Fri, Dec 09, 2011 at 03:15:53PM +0100, Mogens Kjaer wrote: Try something like: find . -type f -printf '%A@ %p\n' | sort -n | tail -1 I believe you want %T@ instead of %A@ (modification time versus access time).  I

  1   2   3   4   5   6   7   8   9   10   >