Re: [CentOS] Asymmetric encryption for very large tar file

2014-12-19 Thread John Doe
From: Kai Schaetzl mailli...@conactive.com

 I would rather work on single files or tars on directory basis. Using a 
 single big file creates a very large single point of failure.
 Or use an encrypted file system (of course, also a single point of 
 failure, but probably better handling).


Afio is supposed to have better error handling than tar, and other nice options 
like pgp.

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


Re: [CentOS] need guidance on getting started...again

2014-12-15 Thread John Doe
From: Darr247 darr...@gmail.com

 And logging in as root for everyday tasks is generally discouraged, as well.
 Most admins will edit their /etc/sudoers file to give themselves sudo 
 access, so they could run
 [username@machinename ~]$ sudo yum install man-1.6f* man-pages-3.22-*
 (which will then prompt for the user's password, not the root password) 
 instead of logging in as root.


I must be a bad admin because I rarely use sudo (only to limit 

some access to some commands to some users).

That would make me prepand 99% of my daily commands with sudo.
After a while, that gets annoying...
IMHO, this rule is good for users/workstations, not admins/servers.

And even on my workstation I have a dedicated root window where I do root stuff.


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


Re: [CentOS] Yum installed perl on CentOS 5.11 64 bit

2014-11-24 Thread John Doe
From: Niamh Holding ni...@fullbore.co.uk

 Is 4:perl-5.8.8-43.el5_11.x86_64 really dependent on the 32 bit  perl.i386
 4:5.8.8-43.el5_11 as yum is suggesting, or has something got mixed up on
 the system?
 
 yum install perl
 Loaded plugins: fastestmirror
 Loading mirror speeds from cached hostfile
 * base: repo.bigstepcloud.com
 * epel: mirror.bytemark.co.uk
 * extras: mirrors.vooservers.com
 * rpmforge: mirror.vit.com.tr
 * updates: anorien.csc.warwick.ac.uk
 Setting up Install Process
 Package 4:perl-5.8.8-43.el5_11.x86_64 already installed and latest version
 Resolving Dependencies
 - -- Running transaction check
 - --- Package perl.i386 4:5.8.8-43.el5_11 set to be updated
 - -- Finished Dependency Resolution


It says set to be updated, so the i386 version was already installed... no?

grep exactarch /etc/yum.conf

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


Re: [CentOS] Installing old version of firefox

2014-11-17 Thread John Doe
From: Larry Martell larry.mart...@gmail.com

 I need to install firefox version 24.3.0 on centos version 6.5. Anyone
 know how I can do that? I tried downloading that version directly and
 it fails with:
 XPCOMGlueLoad error for file /usr/local/lib64/firefox/libxul.so:
 libXrender.so.1: cannot open shared object file: No such file or directory
 Couldn't load XPCOM.

Copy/symlink the lib into firefox directory...?

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


Re: [CentOS] Network menu doesn't appear on system menu on CentOS 6.6

2014-11-12 Thread John Doe
From: Gilbert Sebenste seben...@weather.admin.niu.edu

 On Mon, 10 Nov 2014, Frank Cox wrote:
  yum install nm-connection-editor
 Yeah, I'm having a tough day, THAT is where it should be found,
 but isn't, under Gnome, on this one machine. Typing what you did above
 gave me an error of no such package. I then tried yum install
 *connection* and yum install *editor* and nothing came up that matches
 what I need.

# rpm -qf /usr/bin/nm-connection-editor
NetworkManager-gnome-0.8.1-75.el6.x86_64

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


Re: [CentOS] updating pandoc and converting to UTF-8

2014-11-07 Thread John Doe
From: Jason T. Slack-Moehrle slackmoeh...@gmail.com

 I need to run pandoc. (http://johnmacfarlane.net/pandoc/installing.html)
 How can I update to the latest? Yum doesn't have anything more that I can
 see.

The page says: If the version in your repository is too old, use the 
instructions below under All platforms
Or upgrade to CentOS 7 maybe... it seems to have 1.12.x

 Also, is there a tool like 'iconv' on OS X where I can convert between
 encodings? It seems when moving this from OS X to Linux I am getting a few
 encoding errors when building my project.

iconv is/should already be installed...
  /usr/bin/iconv

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


Re: [CentOS] Setting up NFS on Centos 6.6

2014-11-06 Thread John Doe
From: c...@qgenuity.com c...@qgenuity.com

 FATAL: Module nfsd not found.
 FATAL: Error running install command for nfsd
 Starting NFS services:  exportfs: internal: no supported addresses in
 nfs_client

uname -r
locate nfsd.ko
grep -v ^# /etc/sysconfig/nfs 
cat /etc/exports 


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


Re: [CentOS] Bounced email processing

2014-11-05 Thread John Doe
From: Hugh E Cruickshank h...@forsoft.com
 We are looking for a way to automate the handling of bounced emails.
 I have spend some time looking an scan find one open source package,
 bounceHammer, and one commercial package, BoogieTools.
 Does any comments on the effectiveness of either package?
 Any suggestions on other packages?

If you just need something simple and know a bit php, you could try...

---
if ($mbox = imap_open({imap.domain.com:993/ssl}FOLDER, $email, $passwd,
  OP_READONLY+OP_DEBUG)) {
  $sorted_mbox = imap_sort($mbox, SORTARRIVAL, 0);
  $status = imap_status($mbox, {imap.domain.com:993/ssl}FOLDER,
SA_MESSAGES+SA_UNSEEN);
  $msgs_total = $status-messages;
  if ($msgs_total == 0) { print No mails...\n; exit(1); }
  for ($i=0; $i$msgs_total; $i++) {
#print imap_fetchheader($mbox, $sorted_mbox[$i]);
$body = imap_body($mbox, $sorted_mbox[$i]);
foreach (explode(\n, $body) as $line) {
  ...
}
#imap_setflag_full($mbox, $i, \\Seen);
  }
#imap_expunge($mbox);
imap_close($mbox);
---

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


Re: [CentOS] Right way to install phpMyAdmin through Nginx and PHP-FPM

2014-10-30 Thread John Doe
From: reynie...@gmail.com reynie...@gmail.com

location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $root$fastcgi_script_name;
}
 ...
 nginx: [emerg] unknown root variable
 nginx: configuration file /etc/nginx/nginx.conf test failed

Maybe you meant to use '$document_root' ...

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


Re: [CentOS] Change default font size in terminal

2014-10-21 Thread John Doe
From: Yawei Guo ywguo...@gmail.com

 I want to change default font size in terminal. The size is too small for a
 1920x1080 screen. Thank you very much.

In the terminal profile preferences menu, change the font size...

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


Re: [CentOS] rsync question: building list taking forever

2014-10-20 Thread John Doe
Are you allowed to temporarily run an ssh tunnel (or stunnel) on your jumpbox?
So connecting from host1 to jumpbox on port XXX would be tunneled to ssh port 
on host2...

Or with netcat (if you can mkfifo)?
  mkfifo backpipe
  nc -l 12345 0backpipe | nc host2 22 1backpipeBut you will have to trick ssh 
into accepting your jumpbox fingerprint...

JD

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


Re: [CentOS] arsh...@gmail.com has indicated you're a friend. Accept?

2014-10-10 Thread John Doe
From: arsh...@gmail.com arsh...@gmail.com

 arsh...@gmail.com wants to follow you.

Ah, automated address book pilfering...   Such a great innovation...
Would you like to SPAM all your contacts...  Yes/No?

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


Re: [CentOS] massive load caused by smartvd

2014-10-06 Thread John Doe
The thing is... you need to find how it got in and patch, otherwise it will be 
back on your brand new server...

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


Re: [CentOS] Centos laptop support

2014-10-02 Thread John Doe
My asus laptop booted linux fine... until the motherboard fried though.

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


Re: [CentOS] gpg can't decrypt message

2014-10-02 Thread John Doe
From: Valeri Galtsev galt...@kicp.uchicago.edu

 Cryptologists (or mathematicians) - you have last word ! (after which we -
 all us others - will shut up ;-)

No, the FBI director has the last word: Do not side with paedophiles and 
terrorists and stop using encryption! Think of the children!

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


Re: [CentOS] [CentOS-announce] Release for CentOS-5.10 i386 and x86_64

2014-09-30 Thread John Doe
From: John R Pierce pie...@hogranch.com

 I gather this hasn't fnished propagating?  I tried two mirrors and got 
 'no updates'.

On the mirrors I checked, 5.11 folder was there but the '5' symlink was still 
pointing to 5.10
I guess they wait to be sure that 5.11 is fully synced?

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


Re: [CentOS] firefox: annoyance

2014-09-25 Thread John Doe
From: Johan Vermeulen jvermeu...@cawdekempen.be

 op 25-09-14 13:46, mark schreef:
  Yup, forgot that: no tool bar at all, no menus
 
  mark
 
 Then maybe you are stuck in full-screen mode? Press f11 to exit that.
 
 grts, Johan

You can press the Alt key to show the menu.

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


Re: [CentOS] Critical update for bash released today.

2014-09-25 Thread John Doe
If I understood correctly, the current fix is incomplete and another fix is 
planned?
Also, in the advisory, RH says that after the update, servers need to be 
rebooted...  Really?
Aside from cgi/php, just closing all shells isn't enough?


Thx,
JD

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


Re: [CentOS] CentOS 6 and android connectivity (Nook)

2014-07-29 Thread John Doe
From: m.r...@5-cent.us m.r...@5-cent.us
 So, I got my wife a Nook for her b'day. I just plugged it into my system,
 CentOS 6.5, and what I see is /media/NOOK, and it shows 257k or so - yes,
 k, not m or g. It's *not* seeing any directories, etc, and the small thing
 I'm guessing is firmware, since even when I try mount -o remount -rw, it
 is still r/o.

 Googling, I see mentions of fsmtp, I think it was, and yum shows some mtp
 libs, but I don't see anything that looks like a driver. Any suggestions
 (otherwise, I need to zip up the ebooks we want on her Nook, and take them
 downstairs to her's and the kid's system, Lose 8, er, Win8.

Maybe this will helps (not sure)...
http://blogs.ukoln.ac.uk/ukolndev/2013/06/05/getting-mtp-devices-to-work-on-linux-nook-hd/

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


Re: [CentOS] Convert bare partition to RAID1 / mdadm?

2014-07-28 Thread John Doe
From: Benjamin Smith li...@benjamindsmith.com

 Thanks for your feedback - it's advice I would have given myself just a 
 few years ago. We have *literally* in the range of one hundred million 
 small PDF documents. The simple command
 
 find /path/to/data  /dev/null
 
 takes between 1 and 2 days, system load depending. We had to give up on 
 rsync for backups in this context a while ago - we just couldn't get a 
 daily backup more often then about 2x per week.

What about:
1. Setup inotify (no idea how it would behave with your millions of files)

2. One big rsync
3. Bring it down and copy the few modified files reported by inotify.

Or lsyncd?


JD

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


Re: [CentOS] exim-mysql without MySQL support from epel

2014-07-23 Thread John Doe
From: Fosforo fosf...@gmail.com
 The .so seems to be included:
 # locate lookup | grep mysql
 /usr/lib64/exim/4.72-5.el6/lookups/mysql.so
 but no suppport builtin in the binary:

If it is a module, isn't it normal that it is not built-in?
What is your error message...?
It just works here, with a conf like:

  hide mysql_servers = .../.../...

  CHECK_ACCESS = ${lookup mysql \
  {select ... from ... where ... = 
'${quote_mysql:$local_part}'} \
  {$value}fail}

  ...

  localuser_virtual:
    driver = accept
    condition = CHECK_ACCESS
    retry_use_local_part
    transport = local_delivery_virtual

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


Re: [CentOS] [Samba] Samba 4.1.7 + CentOS 6.5 - Home's directory mounting in W7 + Roaming of Profils

2014-06-05 Thread John Doe


From: Pascal Blétard paddel...@hotmail.com

 1) Is it possible to configure Samba (4.1.7) directly from GNU/Linux (CentOS 
 6.5) for automatically mount the user's home directory to H: 
 when he connects to the domain ?

This worked for me:

/etc/samba/smb.conf
  logon script = logon.bat
  logon path = \\%L\Profiles\%U
  logon home = \\%L\%U
  logon drive = h:

  [netlogon]
   path = /home/SAMBA/netlogon/
   browseable = no
   read only = yes
   write list = Administrator root @smb-admin

/home/SAMBA/netlogon/logon.bat
  net use H: \\FILER\home
  net time \\FILER /set /yes

JD

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


Re: [CentOS] Newer version of FfMpeg

2014-05-26 Thread John Doe
From: Lists li...@benjamindsmith.com

 We're trying to build a rich media website, and will need to re-encode 
 the video content with ffmpeg. Unfortunately, the ffmpeg version that 
 comes with the most common repos are rather out of date. As in 0.6.5 vs 
 2.21 being the most current version. However, ffmpeg looks to be a 
 pretty thorny thing to compile with all the options we need. It appears 
 that the FFMPEG with rpmfusion for Fedora is pretty current, 2.1.4.
 
 Is there a repo out there that anybody knows of that has a relatively 
 current version of ffmpeg out for Centos 6?

The thing is, as soon as you will get an issue, the devs will tell you to 
compile the latest version.
Also, if you plan on using external codecs (like vpx, h265...), you will need 
the matching (not too old) libs when you compile ffmpeg.

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


Re: [CentOS] Centos backup tools

2014-05-19 Thread John Doe
From: Fred Smith fre...@fcshome.stoneham.ma.us

 Looking for suggestions on backup software I can use.

You could also have a look at bacula...

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


Re: [CentOS] BIND Log file entries

2014-05-02 Thread John Doe
From: James B. Byrne byrn...@harte-lyne.ca

 The CentOS list uses Mailman (2.1.12) and as another has pointed out, recent
 changes to DMARC enforcement at Yahoo, AOL, and now apparently Google, causes
 DKIM signed email forwarded though mailman to fail the authentication checks
 relating to DKIM.  This is either treated as suspicious (as is apparently the
 case with Google) or rejected outright, as is the case with Yahoo and AOL.

I use yahoo mail for my mailing lists and I only lost around 5 of them 
(disabled 

because of bounced messages) out of 22.
And, as you guessed, CentOS ml seems unaffected so far.

JD

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


Re: [CentOS] Support for ECDSA in OpenSSL?

2014-04-25 Thread John Doe
From: Robert Moskowitz r...@htt-consult.com

 Does the version of OpenSSL on Centos 6.5 support ECDSA keypairs?

Google finds:

ECDSA Support in OpenSSL
Elliptic Curve Digital Signature Algorithm (ECDSA) is a variant of the Digital 
Signature Algorithm (DSA) which uses Elliptic Curve Cryptography (ECC). Note 
that only the nistp256 and nistp384 curves are supported.

https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/6.5_Release_Notes/bh-chap-security.html

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


Re: [CentOS] Logrotate errors

2014-04-09 Thread John Doe
From: C. L. Martinez carlopm...@gmail.com

 destination /srv/www2/logs/viewer.log-20140409 already exists, skipping 
 rotation

I'd think logrotate does not expect to find an already existing half-rotated 
file?
Maybe this file is supposed to be compressed '.gz'?
Can you show ls -l /srv/www2/logs/viewer.log* ?

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


Re: [CentOS] {CentOS} HDD Problem....

2014-04-07 Thread John Doe
From: Eddie O'Connor eoconno...@gmail.com

 Okso after installing smartmontools on my CentOS machine...and
 connectiing this drive externally...i got positive reports from both the
 short and long tests...so the drive can obviously be seenbut 
 when I
 look for it in the /dev/ directory...it doesn't show up.I'm about to
 give the fdisk command line tools anonther shotit allows me to format
 the drive...and to give it a file system...(ext4)but it doesn't
 automaticcaly mount, nor can I format the drive using the Disk Utility in
 CEntOS.I'm going to give D.B.A.N one more try since I was able to
 format it from the smartctl command linehopefully it will clear
 whaever is locked up.

Is it USB powered?  If so, maybe try another USB port...
Did you check /var/log/messages for detection messages?

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


Re: [CentOS] High load average, low CPU utilization

2014-03-28 Thread John Doe
From: Matt Garman matthew.gar...@gmail.com

 I did a little research on the loadavg number, and my understanding is that
 it's simply a function of the number of tasks on the system.  (There's 
 some fancy stuff thrown in for exponential decay and curve smoothing and 
 all that, but it's still based on the number of system tasks.)

Any USB device?
Each time I access USB disks, load goes through the roof.

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


Re: [CentOS] The letter ש or a button in hebrew is by default dosn't write the requested letter.

2014-03-27 Thread John Doe
From: Eliezer Croitoru elie...@ngtech.co.il

 I have been running CentOS and I have found out that there is a key that 
 is not defined well.
 The a or ש which actually causes by a button press to a 
 sing which is called new shekel or Shekel Chadash which is two 
 letters together.
 
 What can I do to fix it? maybe someone have seen this in the past?

Maybe try:
http://physics.technion.ac.il/~ym/keyboard.html

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


[CentOS] (no subject)

2014-03-21 Thread John Doe
Hey,

  kernel: rsync invoked oom-killer: gfp_mask=0x200da, order=0, oom_adj=0, 
oom_score_adj=0
  ...
  kernel: Out of memory: Kill process 27974 (mysqld) score 361 or sacrifice 
child
  kernel: Killed process 27974, UID 27, (mysqld) total-vm:3804672kB, 
anon-rss:2890828kB, file-rss:3324kB

rsync whines he wants more RAM and... mysql gets killed...
That makes me a bit sad!
And from my nagios graphs, at that time, ram usage was only 75% (4.5GB/6GB) and 
swap usage 0.3% (/2GB)!
I cannot believe an rsync suddenly needed 1.5GB+2GB and was not satisfied...
And even after the out of memory, the graphs show no swap usage change at all.
Anybody would have an idea about this fake out of memory?

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


Re: [CentOS] Desktop behaviour - click to raise

2014-03-19 Thread John Doe
From: Lars Hecking lheck...@users.sourceforge.net

 John Doe writes:
  Maybe try to switch on auto-raise to see if it changes anything...
 
 That's an awful feature but yes, it works as expected.
 
 There seem to be differences between releases of CentOS5. The bulk of the
 machines here are still on 5.4. I wiped a particular user home dir and
 logged into a 5.4 machine, which works as it should. Logging the same
 user into CentOS 5.10 (on a different machine, of course, but same hw),
 results in the observed behaviour.

I am on 5.10 and it works fine.
Maybe if you search raise in gconf-editor you will find something...

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


Re: [CentOS] Linux malware attack

2014-03-19 Thread John Doe
From: Steve Clark scl...@netwolves.com

 I didn't see anything about how the machines got infected. Did I miss 
 something?

From what I understood, it is no brand new vulnerability...
It is just bad guys who simply got some servers logins/passwds and installed 
their malware...

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


Re: [CentOS] Desktop behaviour - click to raise

2014-03-18 Thread John Doe
From: Lars Hecking lheck...@users.sourceforge.net

 My C5, default Gnome desktop has recently changed behaviour, and I can't
 figure out how to restore the previous behaviour.
 Previously, clicking anywhere into a window raised it. Now, for the past
 few days, only clicking title bar or borders raises them.

Maybe try to switch on auto-raise to see if it changes anything...

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


[CentOS] Advanced Fat32 mount in /etc/fstab

2014-03-13 Thread John Doe
Hi, my name is Steven.
I am trying to figure out the mount command to put into /etc/fstab;

Basically I want a FAT32 partition mounted,
but I want specific user/group ownership for a normal
user of the mountpoint and all directorys/files in it.


I currently have this in /etc/fstab:

/dev/sda8 /home/steven/sda8 vfat 
locale=en_US.utf8,windows_names,uid=500,gid=501,umask=0022,noatime 0 0


but i get the following:

[root@centos steven]# mount /dev/sda8
mount: wrong fs type, bad option, bad superblock on /dev/sda8,
   missing codepage or helper program, or other error
   In some cases useful info is found in syslog - try
   dmesg | tail  or so
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Advanced Fat32 mount in /etc/fstab

2014-03-13 Thread John Doe
dmesg says: 

FAT: Unrecognized mount option locale=en_US.utf8 or missing value
FAT: Unrecognized mount option locale=en_US.utf8 or missing value
FAT: Unrecognized mount option locale=en_US.utf8 or missing value




On Thursday, March 13, 2014 6:25 PM, Ljubomir Ljubojevic cen...@plnet.rs 
wrote:
 
On 03/13/2014 08:31 PM, John Doe wrote:
 vfat locale=en_US.utf8

Try just utf8

Example:
UUID=12102C02102CEB83  /media/windows  vfat 
auto,users,uid=1000,gid=100,dmask=027,fmask=137,utf8  0  0


-- 
Ljubomir Ljubojevic
(Love is in the Air)
PL Computers
Serbia, Europe

StarOS, Mikrotik and CentOS/RHEL/Linux consultant

___
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] CentOS 5 + Quagga + SELinux

2014-03-07 Thread John Doe
From: SilverTip257 silvertip...@gmail.com

 On Wed, Mar 5, 2014 at 10:19 AM, Daniel J Walsh dwa...@redhat.com wrote:
  man zebra_selinux
 ~]# man zebra_selinux
 No manual entry for zebra_selinux

This man page seems to be in selinux-policy-doc package for CentOS 6...
  # yum whatprovides \*zebra_selinux\*
  ...
  selinux-policy-doc-3.7.19-231.el6.noarch : SELinux policy documentation
  Repo    : base
  Matched from:
  Filename    : /usr/share/man/man8/zebra_selinux.8.gz

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


Re: [CentOS] Latest openswan update does no longer connect to Cisco VPN 3000 Series

2014-03-07 Thread John Doe
From: Radu Radutiu rradu...@gmail.com

 Does anyone else noticed problems after updating openswan to
 openswan-2.6.32-27.2.el6_5.i686 ?

Not the solution but here is what was fixed:

# rpm -qp --changelog openswan-2.6.32-27.2.el6_5.x86_64.rpm
* Thu Feb 06 2014 Paul Wouters pwout...@redhat.com - 2.6.32-27.2
- Resolves: rhbz#1050337 (CVE-2013-6466 refix for delete/notify code)

* Wed Jan 22 2014 Paul Wouters pwout...@redhat.com - 2.6.32-27.1
- Resolves: rhbz#1050337 (CVE-2013-6466)

https://access.redhat.com/security/cve/CVE-2013-6466

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


Re: [CentOS] Replace failed disk in raid

2014-03-05 Thread John Doe
From: Nikos Gatsis - Qbit ngat...@qbit.gr

 How can I stop swap and remove partition?
 After replacing the faulty disk and rebuilt how I start swap again?

# apropos swap | grep '(8)'

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


Re: [CentOS] where can download CENTOS 5.X????

2014-03-05 Thread John Doe
From: mcclnx mcc mcc...@yahoo.com.tw

 CENTOS.org can web page design.  I can not find anywhere to download CENTOS 
 5.X 
 version.
 Can anyone point me to the location?

On the CentOS homepage, click on Get CentOS Linux Now.
Then click on the alternative downloads link...

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


Re: [CentOS] Pipe into logger duplicates messages in /var/log/messages

2014-03-04 Thread John Doe
From: Alexander thahart...@gmail.com

 However the following command :
 echo HI  logger -t test
 Resulted in the message appearing twice in /var/log/messages on my CentOS 6
 system.

Tested on CentOS 5.10 32bits/64bits and 6.5 64bits and I only get one 
appearance...
Did you modify /etc/syslog.conf ?
Maybe there are two entries repeating the same facility?

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


Re: [CentOS] CentOS 6.5 install

2014-03-04 Thread John Doe
From: Kenny Noe knoe...@gmail.com

 Well shoot!  Thanks for the link.  Definitely explains allot!  I'm going to
 update the box with the latest HP SPP and double check the updated driver
 is available.
 With this RAID controller and 4x 1TB are there any recommendations on the
 best way to install CentOS?  Should I skip the controller, config disk as
 JBOD and RAID from there?  I'd like to get the OS on a RAID but should I
 just build the OS on one disk and then RAID the remaining three?

If you use HP's fakeraid driver:
- you can use HP raid tools.
- your disks will be smartarray compatible, you can plug them on a real smart 
array they will just work.
- you are dependent on HP to release new drivers for the new OS releases on 
time...
- HP new policy: out of warranty, no more updates (except security?) for you...

if you use AHCI + mdraid:
- simple, standard, etc...
- not smartarray compatible.

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


Re: [CentOS] CentOS 6.5 install

2014-03-03 Thread John Doe
From: Kenny Noe knoe...@gmail.com

 I can RAID all the disk using the HP Array Config tool.
 I can load CentOS.  The installer sees all 4 disks but the LVM recognizes a
 3TB volume)

Shouldn't CentOS only see 1 disk (the RAID logical disk made out of your 4 
physical disks)?

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


Re: [CentOS] OT: Howto to capture taskset output command

2014-02-26 Thread John Doe
From: C. L. Martinez carlopm...@gmail.com

 I am trying to set processor affinity for a specific process using a
 shell script without result. Script:
 
 #!/bin/sh -x
 
 cpu_affinity_ok=2
 cpu_affinity=taskset -p -c `cat /tmp/test.pid` | awk '{print 
 $6}'
 
 if [ -f /tmp/test.pid ]; then
     if [ $cpu_affinity == $cpu_affinity_ok ]; then
        exit 0
      else
         taskset -p -c 2 `cat /tmp/test.pid`
      fi
 fi
 
 This script doesn't works:
 
 As you can see, function compare under if statement doesn't 
 works ...

This works for me:

function cpu_affinity() {
  taskset -p -c $1 | awk ' { print $6 } '
}

and

PID=`cat /tmp/test.pid`
if [ $(cpu_affinity $PID) -eq $cpu_affinity_ok ]; then

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


Re: [CentOS] Need help resolving yum update issues on mixed architecture system

2014-02-25 Thread John Doe
From: Alfred von Campe alf...@von-campe.com

 I have been using 32-bit CentOS since the 4.X days without a real need for 
 64-bit, but in preparation for CentOS 7, I have installed 64-bit CentOS 6 on 
 a 
 test system to qualify all our builds.  However, in order to build some of 
 our 
 current 32-bit applications, I had to install some i686 packages, including 
 glib.
 
 Now when I try to do a yum update on this test system, I get the 
 dreaded Error:  Multilib version problems found. issue.  I have 
 tried following the instructions from yum (--exclude=glib.i686, yum check, 
 etc.) 
 to resolve this to no avail.  What is the best way to proceed with the yum 
 update so that all (64-bit and 32-bit) packages are updated?

Maybe try 'protected_multilib' in yum.conf (see man).

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


Re: [CentOS] Need help resolving yum update issues on mixed architecture system

2014-02-25 Thread John Doe
From: Alfred von Campe alf...@von-campe.com

 Thanks for the hint.  Upon closer inspection, the issue was with glib from 
 rpmforge, so doing a yum update --disablerepo=rpmforge\* makes 
 it work.

You Should set up repos priorities...

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


Re: [CentOS] Strange Samba Issue

2014-02-10 Thread John Doe
From: Jeff Allison jeff.alli...@allygray.2y.net

 Now when I browse these folders on the console I can see the files. when I
 sftp on the command line from another box I can see these files.
 But when I browse via samba or using a gui sftp client quite a lot of these
 files are missing...

Filenames encoding maybe...?

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


Re: [CentOS] Raid on centos

2014-02-07 Thread John Doe
From: Jeff Allison jeff.alli...@allygray.2y.net

 Ok I've a HP mircoserver that I'm building up.
 It's got 4 bays for be used for data that I'm considering setup up woth
 softwere raid (mdadm)
 I've 2 x 2TB 2 x 2.5 TB and 2 x 1TB, I'm leaning towards usig the 
 4 2.x TB is a raid 5 array to get 6TB.

Just a reminder that (at least in the Gen8) bays 1+2 are 6G, but 
bays 3+4 are 3G.  So you might lose a tiny bit of speed if you 
pair them in a RAID5.

For the migration, to make it clean and simple, I would just copy the 
data temporarily on USB external disks; which I would use anyway for backups.

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


Re: [CentOS] what is: ImageDecoder

2014-02-05 Thread John Doe
From: Fred Smith fre...@fcshome.stoneham.ma.us

 On Tue, Feb 04, 2014 at 07:43:27AM -0800, John Doe wrote:
  Maybe webkit's ImageDecoder function...
 Firefox uses WebKit

Ok, maybe I need some vacations...
Last try, from the source mozilla-release/image/src/RasterImage.cpp:

RasterImage::DecodePool::DecodePool()
 : mThreadPoolMutex(Thread Pool)
{
  if (gMultithreadedDecoding) {
    mThreadPool = do_CreateInstance(NS_THREADPOOL_CONTRACTID);
    if (mThreadPool) {
  mThreadPool-SetName(NS_LITERAL_CSTRING(ImageDecoder));
  uint32_t limit;
  if (gDecodingThreadLimit = 0) {
    limit = std::max(PR_GetNumberOfProcessors(), 2) - 1;
  } else {
    limit = static_castuint32_t(gDecodingThreadLimit);
  }

  mThreadPool-SetThreadLimit(limit);
  mThreadPool-SetIdleThreadLimit(limit);

  nsCOMPtrnsIObserverService obsSvc = 
mozilla::services::GetObserverService();
  if (obsSvc) {
    obsSvc-AddObserver(this, xpcom-shutdown-threads, false);
  }
    }
  }
}

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


Re: [CentOS] what is: ImageDecoder

2014-02-04 Thread John Doe
From: Fred Smith fre...@fcshome.stoneham.ma.us

 I'm suddenly noticing multiple threads named ImageDecoder 
 showing up in the output of top (when threads are turned 
 on with H).
 I've no clue what this is, and haven't found out much about it by
 searching.
 Can someone tell me what it is, and if it's doing anything useful or 
 just wasting cycles?

From which process...?  java?

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


Re: [CentOS] what is: ImageDecoder

2014-02-04 Thread John Doe
From: Fred Smith fre...@fcshome.stoneham.ma.us

 so, Firefox has spawned a ton of child threads, and some of them appear
 in top as Image Decoder #x. I dunno WHY they have a strange name,
 but at least I now know where they came from.

Maybe webkit's ImageDecoder function...

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


Re: [CentOS] Recent version of Latex

2014-01-31 Thread John Doe
From: Patrick Begou patrick.be...@legi.grenoble-inp.fr

 I've tried to use texlive-2013-0.1.20130608_r30832.fc19.src.rpm but I 
 can't build it! I fall in a sort of circular dependancy:

Maybe read this conversation:
  https://lists.fedoraproject.org/pipermail/devel/2013-July/184862.html
Good luck!

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


Re: [CentOS] Antwort: Re: netcdf

2014-01-30 Thread John Doe
From: dip patel dip.patel6...@gmail.com

 or  i m also want to run cent os with my window 8 socan u please provide a
 direct download link for centos 6.5 or ftp link for download it?

On the CentOS website homepage there is a BIG and bright orange button 
that says Get CentOS Linux Now.  Maybe try to click on it...

 i had used all the resources as below and when i had all the untar 
 in a directories and then ./configure the netcdf file so it fives 
 x lib developer is missing and some x11 library is also missing 
 etc so please help me...

If you miss dev libraries... install them.
By example: yum install libX11-devel

If you need to find which package provides a given file:
yum whatprovides \*FILENAME

Also, if you want detailed answers, ask detailed questions.

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


Re: [CentOS] Recent version of Latex

2014-01-28 Thread John Doe
From: Patrick Begou patrick.be...@legi.grenoble-inp.fr

 I've moved most of my user's PCs from OpenSuse (11.x, unmaintainend now) 
 to CentOS 6.4. On my old OpenSuse latex was texlive-latex-2010 and 
 current version on CTAN is texlive-2013.
 But on CentOS 6.4 I've only the old texlive-latex-2007 and several sty files 
 available on my previous config are not available now and users cannot 
 compile 
 their previous documents.
 Is there a Yum repo from where I can install a more uptodate latex 
 environment 
 for CentOS6.4 ?

Maybe try to recompile a fedora srpm...?
 
http://download.fedoraproject.org/pub/fedora/linux/updates/19/SRPMS/texlive-2013-0.1.20130608_r30832.fc19.src.rpm
 
http://download.fedoraproject.org/pub/fedora/linux/releases/19/Everything/source/SRPMS/texlive-2012-22.20130427_r30134.fc19.src.rpm

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


Re: [CentOS] Booting Software RAID

2014-01-27 Thread John Doe
From: Matt matt.mailingli...@gmail.com

 I am thinking I will not have much I/O traffic on the SSD hopefully
 extending its lifespan.  If it dies I will just need to reinstall
 Centos on a replacement SSD.  My critical files will be in /vz that I
 need backup on and I think RAID1 will give me double read speed on
 that array.  Trying to balance cost/performance/redundancy here.

Not sure if it is still the case but if my memory is correct, some time ago, RH 
was advising against using mdraid on ssds because of the mdraid surface scans 
or resyncs.
I cannot find the source anymore...

JD

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


Re: [CentOS] Can't install Python i686 on x86_64 system (centos 6.5)

2014-01-23 Thread John Doe
From: mag3690 mag3...@gmail.com

 I was trying to update CentOS 6.4 to 6.5,and the yum updated failed with the
 following information.
 -- Processing Conflict: python-devel-2.6.6-51.el6.x86_64 conflicts python 
 
 2.6.6-51.el6
 -- Finished Dependency Resolution
 Error: python-devel conflicts with python-2.6.6-37.el6_4.i686
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles –nodigest
 
 How can we have both 32 bit and 64 bit python devel on 64 bit machine.

Where does that python-2.6.6-37.el6_4.i686 package come from...?  Scientific 
Linux?

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


Re: [CentOS] Repodata filename problem in CentOS-6.5-x86_64-bin-DVD1.iso ?

2014-01-23 Thread John Doe
From: Emmanuel Noobadmin centos.ad...@gmail.com

 checking the USB drive as well as the downloaded ISO shows that the
 file is named
 repodata/0dafccfdbf892f02acca8267ade4bdcee7280a682e65dc7e29145f3341fd7a8c
 It seems that the filenames are truncated after the first dash e.g.
 b4e0b9342ef85d3059ff095fa7f140f654c2cb492837de689a58c581207d9632 should be
 b4e0b9342ef85d3059ff095fa7f140f654c2cb492837de689a58c581207d9632-c6-x86_64-comps.xml

My ISO seems fine...
83221db52687c7b857e65bfe60787838  CentOS-6.5-x86_64-bin-DVD1.iso
# mount -o loop CentOS-6.5-x86_64-bin-DVD1.iso /mnt/cdrom
# ls /mnt/cdrom/repodata/
0dafccfdbf892f02acca8267ade4bdcee7280a682e65dc7e29145f3341fd7a8c-primary.sqlite.bz2
495d3964f864fbab835ea1afb8a5272352cd12ded13d607205109fefaddd0ab6-primary.xml.gz
594d4bb4a79ed01d66635adbcf76c45ca4a85b30fc3e3c3c28316e64f0a83f21-filelists.sqlite.bz2
5af8199bd0ffb441c34ef946582d0d06c1ad770755e631690771e0bceb0ad222-other.xml.gz
6ac72f497df511cc2dc584eaa59779884fc572c1618e7c62dbd631ab8babf53d-filelists.xml.gz
TRANS.TBL
b4e0b9342ef85d3059ff095fa7f140f654c2cb492837de689a58c581207d9632-c6-x86_64-comps.xml
ca525c73086186bfcb81ad9edd45796026dac7e4e50524e0f2daf901532aaf66-c6-x86_64-comps.xml.gz
fdd542ef36b0cde54ee0521fae90b98911db06483163aa1c049995b6d109349b-other.sqlite.bz2
repomd.xml

I did not follow the previous thread but are you putting the iso file on the 
key or are you extracting the iso content to a folder on the key...?

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


Re: [CentOS] mounting CDROM without mapaping UC to LC

2014-01-20 Thread John Doe
From: Fred Smith fre...@fcshome.stoneham.ma.us

 this is surely a newbie question, so I should know the answer, but
 I'm fighting with mounting a CD such that filenames are NOT mapped to
 lowercase (I need to use its on-board tools for accessing files on it
 while mounted on Centos 6.5, and those tools assume uppercawse, since
 they assume the entire world runs Windoze.)
 
 but despite my best efforts, it keeps being mounted with UC-LC mapping
 enabled. here's what I've been trying:
 
 mount -t iso9660 -o
 norock,remount,ro,nosuid,nodev,uhelper=udisks,uid=500,gid=500,iocharset=utfi,mode=0400,dmode=0500
  
 /dev/sr0 /mnt/cd
 
 and even this:
 
 umount /mnt/cd mount -t iso9660 -o
 norock,ro,nosuid,nodev,uhelper=udisks,uid=500,gid=500,iocharset=utfi,mode=0400,dmode=0500
  
 /dev/sr0 /mnt/cd
 
 I've also tried using nojoliet both with and without norock, and also
 map=normal, all to no avail.

Tried 'check=relaxed' ?


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


Re: [CentOS] libapreq2

2014-01-15 Thread John Doe
From: Dwayne Hottinger dhottin...@harrisonburg.k12.va.us

 Is there no package for libapreq2 anymore?  Im trying to get netdisco setup
 on a new centos 6.5 server and cant find any package that provides this
 module.

There is one in epel...

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


Re: [CentOS] Advice in Time Sync

2014-01-15 Thread John Doe
From: John R Pierce pie...@hogranch.com

  How to set up timing if NTP was block by ISP?
 your ISP doesn't have their own timeserver you can access??
 I've never heard of an ISP blocking ntp protocol, unless they are 
 blocking /everything/ but web and email via proxy, whereupon they aren't 
 really an internet service provider, they are just a web-n-mail service 
 provider.

Maybe related to the (recent?) DDOS using ntp servers...?

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


Re: [CentOS] apache - upload files bigger than 2Go

2014-01-14 Thread John Doe
From: MOKRANI Rachid rachid.mokr...@ifpen.fr

 I need to upload  files larger than 4.4Gb (iso DVD) on CentOS (5.5 x64)
 http server (httpd-2.2.3-43.el5.centos)    

Maybe try the answer there:
http://stackoverflow.com/questions/13574542/4gb-http-file-uploads-using-jquery-file-upload-apache-and-php

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


Re: [CentOS] Can we trust RedHAt encryption tools?

2014-01-14 Thread John Doe
From: Liam O'Toole liam.p.oto...@gmail.com

 That sounds worrying. Could you elaborate, or provide a citation?

Remember this?
http://nakedsecurity.sophos.com/2013/12/09/serious-security-google-finds-fake-but-trusted-ssl-certificates-for-its-domains-made-in-france/
The whole SSL certificates system is not to be trusted if (some of) the guys 
who manage it are corrupt.

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


Re: [CentOS] Why does 'mysql' user has /bin/bash shell?

2014-01-09 Thread John Doe
From: Mihamina Rakotomandimby miham...@rktmb.org

 Default MySQL installation on CentOS sets /bin/bash as shell.
 I'm on a user cleanup task where I want reduce unneeded privileges to users.

Its password should be locked.
So you cannot login as mysql but you can su - mysql or run scripts as mysql.
I do not know if any of the standard tools needs a shell though.

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


Re: [CentOS] CentOS on HP DL360e with B120i

2014-01-08 Thread John Doe
From: John R Pierce pie...@hogranch.com

 On 1/7/2014 10:39 AM, Tony Mountifield wrote:
  I am trying to install CentOS5 on a new HP DL360e G8 with B120i disk
  controller. It appears that a proprietary HP driver is needed for it.
 
 fwiw, centos 6.recent should recognize that controller, I know it 
 supports the P420i thats in the DL??0p Gen8 systems.

AFAIK, B120i is a fake raid that needs an hp driver...

/begin_rant
The same that is in the microserver g8 I sadly just bought...
Sadly because: fake raid, no driver for 6.5 (yet) = kernel panic on 6.5.
And, the icing on the cake: if you use AHCI instead, the so called super silent 
server sounds like an hair drier (drives temperature is only reported by the 
RAID drivers, so without RAID, they force the fan to a set speed... apparently 
close to 5 times the average speed: 6% = 30%)!
HP response: do not use AHCI... product works as expected...
/end_of_rant

Good: hp raid utilities and compatible with other hardware hp raid controllers 
if you upgrade later.
Bad: install annoyances, dependance on driver to be up to date with OS release, 
and AHCI + mdraid is more portable?

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


Re: [CentOS] Forward http traffic

2014-01-08 Thread John Doe
From: Nikolaos Milas nmi...@noa.gr

 Actually, I don't want load balancing; I want incoming http traffic (to 
 port 8080) to be forwarded to *ALL* defined target IP addresses.

Could you describe the traffic exchange you expect...?
1. http request to 8080.
2. request is forwarded to n servers on 80.
3. n servers give n answers to the firewall/proxy.
4. 1 request and n answers...?

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


Re: [CentOS] Can we trust RedHAt encryption tools?

2014-01-07 Thread John Doe
After all the news about backdoors, planted bugs or weakened standards in 
apps, in routers, hardware firmwares, etc... these days, can we trust anything?
Can we trust the bios?

Can we trust the compiler not to stealthily inject a backdoor in the compiled 
version of a clean code?Given that most entries from the The International 
Obfuscated C Code Contest (http://www.ioccc.org/) 

looks (at least to me) like magic and any average dev would not (be able to) 
see evil code in the middle of it...And it is not only an NSA/USA thing, since 
it seems many countries are cooperating or doing the same...

By example, in the middle of the Snowden revelations, France just passed a 
blanket spying law (without judicial supervision)!

Anyway, I think that having a 100% trustable environment is more and more an 
utopia.


What? Pessimistic? Me? Yep!

JD

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


Re: [CentOS] Simple question on USB flash drive naming

2014-01-07 Thread John Doe
From: James B. Byrne byrn...@harte-lyne.ca

 I have a USB key that when inserted into a port on my CentOS-6.5 system
 maounts as this:
 
 /dev/sdb1 /media/22d773e3-8502-4196-b45f-388380dcee48 ext2
 rw,nosuid,nodev,uhelper=udisks 0 0
 
 What is the mechanism to give this thing a more human usable mount name /
 volume name?

Just to check... does tune2fs show a volume name...?
# tune2fs -l /dev/sdb1

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


Re: [CentOS] FF 24 is borked: One must have tabs, like it or not!

2014-01-07 Thread John Doe
From: Robert Heller hel...@deepsoft.com

 I just did a yum update on my CentOS 5.10 desktop machine and it installed FF 
 24.  And tabs have appeared and cannot be [really] removed!  Arg!!!  *I HATE 
 TABS!*  (Yes I did installed the hide tabs when there is only one 
 tab 
 plugin, but that is not really a complete solution.)
 
 In the Mozilla support forum thread relating to this 
 (https://support.mozilla.org/en-US/questions/968331) there is mention of 
 SeaMonkey which has better control of tabs and I was wondering: is there a 
 supported version of SeaMonkey that will install under RHEL5 / CentOS5?  
 Specificly, I am looking for RPMs for SeaMonkey, rather than the tarball 
 install.

Tried browser.tabs.autoHide in about:config?
Otherwise, seamonkey is in epel...

JD

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


Re: [CentOS] Postfix Autoresponder (CentOS 6.5 x64)

2013-12-26 Thread John Doe
From: JEWEL AHMMED li...@jewelahmmed.me

 Can any expert tell me, or give me any tutorial link?
 How can I Set Up Postfix Autoresponder for my email account?
 I am new in Linux  Now I am using CentOS 6.5 x64

http://lmgtfy.com/?q=postfix+autoresponder

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


[CentOS] New thunderbird and ligntning on CentOS 5...

2013-12-26 Thread John Doe
Hey,

anybody found a way to run the new Thunderbird Lightning calendar addon on 
CentOS 5...?
From my debugging, it seems like the lightning addon is compiled with a newer 
version of glibc...

  Failed to load native module at path '.../Linux_x86-gcc3/libcalbasecomps.so': 
(80004005) /lib/libc.so.6: version `GLIBC_2.7' not found 
Tried older versions, 2.6 and 2.5b2, but they seem not compatible with TB 24:
  Failed to load native module at path '.../Linux_x86-gcc3/libcalbasecomps.so': 
(80004005) /usr/lib/thunderbird/libxul.so: version `xul23.0' not found
I guess I need to reinstall my worsktation to CentOS 6 soon...


Thx,
JD

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


Re: [CentOS] New thunderbird and ligntning on CentOS 5...

2013-12-26 Thread John Doe
From: ken geb...@mousecar.com

 On 12/26/2013 09:28 AM John Doe wrote:
  anybody found a way to run the new Thunderbird Lightning calendar addon on 
 CentOS 5...?
 
 Seems this thread talks about that.

Oh, I missed that thread.

Thx ken,
JD
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Why I get this message You have new mail in /var/spool/mail/root ?

2013-12-23 Thread John Doe
From: Norah Jones nh.jone...@gmail.com

 Why I get this message   You have new mail in /var/spool/mail/root   
 in CentOs?
 My queries are the following -
 1.  Why this is generated ?

Because a mail was sent to the root user...

 2. How to disable this ?

   MAILCHECK
  Specifies how often (in seconds)  bash  checks  for  mail.   The
  default  is  60 seconds.  When it is time to check for mail, the
  shell does so before displaying the  primary  prompt.   If  this
  variable  is  unset,  or  set  to  a  value that is not a number
  greater than or equal to zero, the shell disables mail checking.


 3. Is this system generated ?

Read the mail and see who sent it.

 4. Is this message gain any importance ?

Read the mail and see if it is important...

If you want mail for root to go to another user, edit /etc/aliases

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


Re: [CentOS] duplicate packages on connection reset

2013-12-16 Thread John Doe
From: Adrian Sevcenco adrian.sevce...@cern.ch

 if i try to remove them, yum tries to uninstall all
 system (447 packages 1.4 gb)!!

What about a simple rpm -e PKG ?

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


Re: [CentOS] What is eating up Swap

2013-12-16 Thread John Doe
From: Stephen Harris li...@spuddy.org

 Having pages in swap is not indicative of a problem; what's more
 important is the level of swap _activity_.  See vmstat output, for
 example, to determine how much swap activity is occuring.  If that's
 zero then you're not throwing new pages out to swap.

Maybe unrelated but we ran into some NUMA memory allocation per cpu 
problem with our mysql servers.
The swap would be used (up to 100%) while there was plenty of free RAM.
Prefixing mysqld with numactl --interleave all seemed to fix it...

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


[CentOS] 7.0 largely estimated release date...

2013-12-16 Thread John Doe
Hey,

I have a new laptop for which CentOS 6.5 says hardware not supported, but it 
still seems to work.
So I was happy to hear about the beta and naively planning to wait until 7.0 to 
install it...
But, seeing that RHEL 6 beta-stable took around 6 months, and add to that the 
CentOS hard work...
Do you think we are talking about an autumn 2014 release?


Thx,
JD

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


Re: [CentOS] Automatic network speed test and reporting

2013-12-13 Thread John Doe
From: Frank Cox thea...@melvilletheatre.com

 The ISP that I do some occasional work for is planning to roll out a new and 
 much faster Internet service, and as such they will be coming here on Monday 
 to 
 upgrade my connection so I can test and play with it for a few weeks before 
 they 
 roll it out for the general public.
 
 It would be convenient if I could set up a cron job that would run some sort 
 of 
 an upload/download speed test from me back to one of their central office 
 servers (or somewhere else in the big scary world, I suppose, though I 
 suspect 
 they will be more interested in the connection from here to another point on 
 their own network) on a regular basis throughout the day, and then generate a 
 nice report of some kind that I could then email to the technical services 
 folks.

Apart from uploading/downloading a big file and many small files on one of 
their 
servers and timing it every hour/minutes, maybe have a look at:
http://sd.wareonearth.com/~phil/net/ttcp/

JD

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


Re: [CentOS] mkbootdisk error????

2013-12-13 Thread John Doe
From: mcclnx mcc mcc...@yahoo.com.tw

 #mkbootdisk --verbose --iso --device /tmp/boot.iso 2.6.18-371.1.2.el5
 Installing isolinux... cp: cannot stat `/usr/lib/syslinux/isolinux.bin': No 
 such file or directory

Dunno why it looks in /usr/lib but isolinux.bin is in /usr/share/syslinux/
But you can solve it by copying or linking the file...
  ln -s /usr/share/syslinux/isolinux.bin /usr/lib/syslinux/

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


Re: [CentOS] CentOS6 xinetd failure

2013-12-10 Thread John Doe
From: Lars Hecking lheck...@users.sourceforge.net

 One thing I have noticed on CentOS6 is that rsync via xinetd never
 works after a reboot. It always takes an additional, post-reboot
 service xinetd restart to get it going. That has been the same for
 all revisions up to and including 6.5, and I've seen it on more than
 just machine.
 
 While I don't see such a message on other problem machines, the latest
 reboot gave me a clue:
 
 Dec  9 23:28:36 host xinetd[21131]: bind failed (Address already in use 
 (errno = 
 98)). service = rsync
 Dec  9 23:28:36 host xinetd[21131]: Service rsync failed to start and is 
 deactivated.
 
 Is there any way to debug this? I suspect it needs to be debugged
 during reboot since the service starts up fine later.

Address already in use = check what is listening on port 873?
In the rsync xinetd conf it says IPv6 here...

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


Re: [CentOS] making a script into a service

2013-12-09 Thread John Doe
From: Larry Martell larry.mart...@gmail.com

 We have a python script that is currently run from cron. We want to
 make it into a service so it can be controlled with service
 start/stop/restart. Can anyone point me at site that has instructions
 on how to do this? I've googled but haven't found anything.

http://fedoraproject.org/wiki/Packaging:SysVInitScript

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


Re: [CentOS] 64bit centos and wine

2013-12-06 Thread John Doe
From: Igor Littig igor.lit...@gmail.com

 But when I'm installing  libstdc++.i686 I'm getting the 
 error
 Protected multilib versions: libstdc++-4.4.7-4.el6.i686 !=
 libstdc++-4.4.7-3.el6.x86_64
 
 Does anybody have ideas how can I work around this problem ?

man yum.conf
  protected_multilib  Either ‘1’ or ‘0’. This tells yum whether or
  not it should perform a check to make sure that  multilib  pack-
  ages  are  the  same version. For example, if this option is off
  (rpm behaviour) pkgA-1.x86_64 and pkgA-2.i386 can  be  installed
  at  the same time. However this is very rarely desired.  install
  only packages, like the kernel, are  excempt  from  this  check.
  The default is ‘1’.

As you can see, the libs versions in your error message are different...
$ rpm -q libstdc++
libstdc++-4.4.7-4.el6.x86_64
libstdc++-4.4.7-4.el6.i686

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


Re: [CentOS] Dragging app between workspaces not working

2013-12-06 Thread John Doe
From: Wes James compte...@gmail.com

 Yes, I know...  I had gotten used to dragging the apps in the many panes,
 but the corner trick will have to do.

I often use ctrl+alt+shit+arrows to move the workspaces under the window.
But I do not use compiz, so I do not know if it works with it...

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


Re: [CentOS] To discard... or not to discard...

2013-12-05 Thread John Doe
From: Leon Fauster leonfaus...@googlemail.com

 Am 04.12.2013 um 19:20 schrieb Akemi Yagi amy...@gmail.com:
  On Wed, Dec 4, 2013 at 9:20 AM, Leon Fauster 
 leonfaus...@googlemail.com wrote:
  Am 04.12.2013 um 17:08 schrieb John Doe jd...@yahoo.com:
  I just recently read a post about SSD triming (discard vs fstrim):
 http://www.howtogeek.com/176978/ubuntu-doesnt-trim-ssds-by-default-why-not-and-how-to-enable-it-yourself/So
  
 far I used discard on all my SSDs.
  Now I am wondering if it is really worth it to switch them all to a 
 crontabed fstrim...
  Anyone made the switch yet?
 https://access.redhat.com/site/documentation/en-US/Red_Hat_Enterprise_Linux/6/html-single/Storage_Administration_Guide/#idm34358800
  Red Hat recommends batch discard operations ... (fstrim)
  In addition to the RH doc referenced by LF, I found this web page useful:
 http://blog.neutrino.es/2013/howto-properly-activate-trim-for-your-ssd-on-linux-fstrim-lvm-and-dmcrypt/

Ok, so I guess I will have to switch everything to fstrim (until discard+sata 
is better implemented).

Thanks for the info,
JD
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] SOHO colour laser printer recommendations

2013-12-04 Thread John Doe
From: Ned Slider n...@unixmail.co.uk

 I'd really appreciate some recommendations for colour laser printers for 
 use with CentOS. It's for light home use with CentOS 5 and CentOS 6 systems.
 Must have:
 1. Colour. Quality not that important as mainly for kids school project 
 type of stuff.
 2. Ethernet connectivity - want something I can plug into the network
 3. Cheap running costs - don't want to be spending a fortune on toner
 4. Linux support

We bought an Epson c2800n for 200€ (after a 100€ discount) in 2008 and it is 
still working like a charm...
But I have no idea how the new models fare.
The only downside for an home user is the huge size of the thing.

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


Re: [CentOS] ZFS on Linux testing effort

2013-12-04 Thread John Doe
From: Lists li...@benjamindsmith.com

 Our next big test is to try out ZFS filesystem send/receive in lieu of 
 our current backup processes based on rsync. Rsync is a fabulous tool, 
 but is beginning to show performance/scalability issues dealing with the 
 many millions of files being backed up, and we're hoping that ZFS 
 filesystem replication solves this.

Not sure if I already mentioned it but maybe have a look at:
 http://code.google.com/p/lsyncd/

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


[CentOS] driver disk in kickstart...

2013-12-04 Thread John Doe
Hi,

I need to add a driver in my usb install key kickstart to handle some crap hp 
fake raid.
The thing is the driverdisk option offers partition or some network options.

I would like to put everything on the key, so no network.
Does partition mean it is restricted to the / of it?
Does it mean that either I have to extract the .img file in the / of my usb 
key (a bit messy), or that I need to create another partition just for it?


Thx,
JD

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


[CentOS] To discard... or not to discard...

2013-12-04 Thread John Doe
Hi,

I just recently read a post about SSD triming (discard vs fstrim):

 
http://www.howtogeek.com/176978/ubuntu-doesnt-trim-ssds-by-default-why-not-and-how-to-enable-it-yourself/So
 far I used discard on all my SSDs.
Now I am wondering if it is really worth it to switch them all to a crontabed 
fstrim...
Anyone made the switch yet?


Thx,
JD

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


Re: [CentOS] Captive Portal

2013-11-26 Thread John Doe
From: Ken Smith k...@kensnet.org

 What I'm trying to accomplish is a a simple firewall type system for a 
 public WiFi, that redirects users to a Web page when they first connect, 
 accepts some credentials such as an e-mail address and allows them 
 access to the 'net. Other features like  limiting the volume of download 
 and some kind of porn filter would be good.

squid should be able to do this...
  http://wiki.squid-cache.org/ConfigExamples/Portal/Splash

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


Re: [CentOS] Machine check events

2013-11-26 Thread John Doe
From: Glenn Eychaner geycha...@mac.com

 Further investigation seems to indicate that these events should be handled
 by mcelog or mced. However, there is no /var/log/mcelog, 
 nor do I have a
 mcelog or mced binary, nor does yum seem to contain 
 anything related
 (based on yum whatprovides '*/mcelog' and similar queries).
 
 Thus, I still don't know what to do with these errors.  Ignore them? I am
 running 32-bit CentOS 6.4 (legacy software reasons).

yum info mcelog
...
Description : mcelog is a daemon that collects and decodes Machine Check
    : Exception data on x86-64 machines.

So not for 32-bit...

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


Re: [CentOS] Any experience with lanner appliances?

2013-11-25 Thread John Doe
From: Steve Clark scl...@netwolves.com

 We have about 1000 FW-7535s (replaced by FW-7541) deployed using
 CentOS 6.x.
I finally chose to go with the microserver...
I have a hard time finding a simple price for the lanner appliance (without 
having to fill some huge forms to get a quotation...)

And last time, when I did find one price, it was more than $800 which feels too 
much for some above average soho router like hardware.


Thank you both for the info,JD

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


[CentOS] Any experience with lanner appliances?

2013-11-20 Thread John Doe
Hi,

anybody has installed CentOS on an lanner appliance...?
Eg. 
http://www.lannerinc.com/products/all-purpose-box-computers/industrial-automation/lec-2126
I was planning to buy an hp microserver to make a small CentOS firewall (and 
more since it is overpowered), but I am wondering if I could go for a lot 
smaller and with no fan/noise... but at the same time a bit more expensive...


Thx,
JD

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


Re: [CentOS] vpn client setup/plugin

2013-11-20 Thread John Doe
From: Wes James compte...@gmail.com

 I'm using CentOS 6.4 x64.
 I wonder if the instructions for setting it up have different options based
 on its age.  The one the installs on CentOS may not have the options he is
 talking about.

Maybe try this (untested) one:
http://agix.com.au/blog/?p=3063

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


Re: [CentOS] vpn client setup/plugin

2013-11-19 Thread John Doe
From: Wes James compte...@gmail.com

 On Mon, Nov 18, 2013 at 11:47 PM, Mihamina RKTMB miham...@rktmb.org 
 I'm trying to find the correct vpn plugin so I can vpn in to a 
 server.
 The server requirements are vpn server, username/password and shared 
 secret.
 It is a L2TP/IPSec server.

Google seems to say to install openswan + xl2tpd (from epel repository).

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


Re: [CentOS] Crash and automatical reboot when using the NVIDIA card

2013-11-15 Thread John Doe
From: David McGiven davidmcgiv...@gmail.com

 I'm running a Supermicro server with the latest CentOS 6.4 versions (kernel
 : 2.6.32-358.23.2.el6.x86_64) and the latest nvidia driver (331.20).
 A few minutes after using the GPU for doing some HPC calculations, the
 server crashes and reboots itself. This is happening every time. I know it
 will be rebooted but I don't know when. Sometimes it's 20 minutes after
 starting using it. Sometimes it's 2 hours.
 If I unplug the GPU card and put some stress on the server, it works ok. So
 I suspect there's a bug in the kernel/nvidia driver.
 I can't find any messages on /var/log/messages.

Did you check the IPMI logs?
First thing that comes to my mind would be overheating.
Maybe dump the temperatures every minute to a log file and after next reboot, 
check if there is a pic...
Or maybe a freeze + the watchdog kicking in?

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


Re: [CentOS] First Time Setting up RAID

2013-11-15 Thread John Doe
From: James B. Byrne byrn...@harte-lyne.ca

 We have a cold server with 32Gb RAM and 8 x 3TB SATA drives mounted in hotswap
 cells.  The intended purpose of this system is as an ERP application and DBMS
 host.  The ERP application will likely eventually have web access but at the
 moment only dedicated client applications can connect to it.
 
 I am researching how to best set this system up for use as a production host
 employing RAID.  I have read the (minimal) documentation respecting RAID on
 the RedHat site and have found and read a few online guides.  Naturally, in my
 ignorance I have a bunch of questions to ask and I probably have a bunch more
 that I should but do not know enough yet to ask.
 
 From what I have read it appears that the system disk must use RAID 1 if it
 uses RAID at all.  Is this the case?  If so, is there any benefit to be had by
 taking two of the 8 drives (6Tb) solely to hold the OS and boot partition? 
 Should these two drives be pulled and replaced with two smaller ones or should
 we bother with RAID for the boot disk at all?
 
 Given that one or two drive bays will be given over to the OS what should be
 the configuration of the remaining six?  It appears from what I have read that
 RAID 5 is the only viable option.  It also appears that the amount of storage
 available on a RAID5 array with N members is N-1/N. I also read that as the
 number of members increase both latency and the risk of data loss increases. 
 As the amount of disk space we have in this unit (24Tb) is greater than the
 total storage of all our existing hosts it appears that a RAID5 array of 5
 units would leave at least one hot spare in the chassis and two if the OS is
 put on one disk.
 
 Alternatively, the thought comes to mind that we could do a RAID1 with two
 RAID5 arrays each of which have 3 drives.  Whether one would actually want to
 do that seems to me a bit questionable but it seems to be at least possible.

For some storage servers, we put used the following cards with 2 small drives 
for the system:
  http://www.sybausa.com/productInfo.php?iid=1134

But do you really need 10+ TB for your ERP+DBM?
I'd just go with a RAID10 for DBs...

JD

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


Re: [CentOS] NFS hard mount

2013-11-14 Thread John Doe
From: Rita rmorgan...@gmail.com

 My problem is we have many NFS servers and clients. The client mounts to
 the servers using /net/serverA/dirA. When server A is decommissioned all
 the clients hand on `df`. I was wondering if there is a clean way to
 unmount the server instead of rebooting clients (100+ clients). I am try
 doing a lazy unmount but that doesn't seem to fix the problem.

Why not ifup the decommissioned IP on another server/pc just long enough 
for the clients to umount?
I think you do not even need to have a nfs server listing on it...

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


Re: [CentOS] Scrabble??

2013-11-12 Thread John Doe
From: Beartooth bearto...@comcast.net

        Does anyone know a way to run a Scrabble program on
CentOS? (I realize the obvious existence of Wine and of virtual
machines; but my experience with both has been thoroughly
unsatisfactory. So I'd much rather get a linux-native app.)


Not CentOS specific but:

  http://www.isc.ro/

  http://www.nongnu.org/eliot/fr/

JD

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


Re: [CentOS] Provide access to /home folder

2013-11-06 Thread John Doe
From: Gopu Krishnan gopukrishnan...@gmail.com

 When I set the setfacl, wordpress sites are giving 500 internal server
 error.
 I am planning to set a user 'developer' with the home directory as 
 '/home'
 Inside the /home directory, each site is having its own ownership. For
 example, /home/site1 should have ownership user1:user1 and /home/site2
 should have user2:user2 and so on. If I create a user 'developer' with 
 home
 directory as /home, would he be able to access and modify the site files
 inside /home/site1 and /home/site2 which is having different ownership. Its
 not practical to add the user 'developer' to all the groups user1,user2
 etc. Any thoughts on this ?

If you do not care too much about security, you could try to SGID the users' 
directories...
Eg. http://www.library.yale.edu/wsg/docs/permissions/sgid.htm

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


Re: [CentOS] Provide access to /home folder

2013-11-05 Thread John Doe
From: Gopu Krishnan gopukrishnan...@gmail.com

 I have a CentOS linux web server in which I have multiple web sites. I have
 many website programmers now doing the coding for all the sites. How can I
 provide a key-based authentication for the programmers in such a way that
 they have access only to /home folder ? They should be able to access only
 all the files inside /home and able to modify it. This is cPanel server in
 which all the sites comes under /home directory. Currently they are using
 separate passwords for every site. If I could give access to my developer
 inside /home folder, they would be able to do edit all the sites easily
 rather than having separate password for each site (eg : /home/site1 or
 /home/site2).  Please share your ideas on the same.

I do not know cPanel but what about all of them being part of the same group...?
Then, give the correct permissions to the group.

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


Re: [CentOS] building software raid.

2013-10-30 Thread John Doe
From: Johan Vermeulen jvermeu...@cawdekempen.be

 no I see I have /dev/md/md_d0 /dev/md_d0p1 /dev/md_d0p2
 I don't know what is what

Not sure what you did with lvm but I would say that md_d0 is 
the (raid) device and md_d0p* are its partitions...
Just do fdisk -l /dev/md/md_d0 (or gdisk).

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


Re: [CentOS] Should I upgrade Samba 3.6 to Samba 4.1

2013-10-24 Thread John Doe
From: Joseph Hesse joehe...@gmail.com

 The problem is my wife's Win7 laptop which is running some sort of home 
 edition of Win7.  I did everything I could in control panel to enable 
 file sharing but I still can't see the Samba share.  I can ping the 
 computer running Samba?  I tried to launch gpedit.msc but this 
 program 
 was not there.

What workgroup did you set on the laptop...?
The pro version is for joining domains I think.
Maybe you'd have more answers on the samba mailing list...

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


  1   2   3   4   5   6   7   8   9   10   >