Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Search found 269 matches

by logan
2010-11-22 19:59
Forum: System and Network configuration
Topic: I have permissions issues trying to install ssh
Replies: 2
Views: 595

Re: I have permissions issues trying to install ssh

I then did a system reboot, and got this message "/etc/init.d/rc :Line 221:/etc/rc2.d/S16ssh :Permission denied" ls -l on S16ssh gives me this: lrwxrwxrwx 1 root root 13 ..... S16ssh --> ../init.d/ssh ls -l on ssh gives me this: -rw-r--r-- 1 root root My take on all of this is that I am n...
by logan
2010-11-18 20:51
Forum: System and Network configuration
Topic: ProFTPd configuration...
Replies: 6
Views: 1206

Re: ProFTPd configuration...

http://www.proftpd.org/docs/directives/linked/config_ref_DefaultRoot.html # This causes proftpd to perform a chroot into the authenticating user's directory # immediately after login. # Once this happens, the user is unable to "see" higher level directories. # Because a group-expression is...
by logan
2010-11-17 21:59
Forum: General Questions
Topic: File integrity for backups of home data
Replies: 3
Views: 1568

Re: File integrity for backups of home data

rsync has a -c option to check the files using a checksum instead of a timestamp. That would be one way to ensure the files are always correct every time you run a backup, but it'll go alot slower. You could create a md5sums file in every directory or maybe one based on all of the data you backup an...
by logan
2010-09-16 18:37
Forum: System and Network configuration
Topic: renaming files in /dev/ *solved*
Replies: 4
Views: 1038

Re: renaming files in /dev/

I'm not sure what that rule is, but I don't think you want to change it... I put my custom rules in /etc/udev/rules.d/z99_local.rules. I don't know enough to help you write one for your radio, but you should be able to get some unique information to help you write one by doing a udevadm info -a -n /...
by logan
2010-09-05 04:21
Forum: Hardware
Topic: Make a raid 5 with debian lenny.
Replies: 1
Views: 1146

Re: Make a raid 5 with debian lenny.

I've never used this card or anything in the 5000 series, but http://adaptec.com/en-US/_common/linux/ (linked from the Compatibility section on the 5405 product page) says that drivers are included in in the kernels with RHEL 3, 4, and 5 and CentOS. RHEL/CentOS 5 uses kernel 2.6.18, which is much ol...
by logan
2010-09-05 03:29
Forum: System and Network configuration
Topic: mysql port 3306 not visible, why?
Replies: 2
Views: 2582

Re: mysql port 3306 not visible, why?

The default mysql configuration doesn't listen on public interfaces. I think Etch or Lenny use skip-networking and Squeeze and later use bind-address = 127.0.0.1 instead because there were some unexpected problems caused by skip-networking. You need to edit /etc/mysql/my.cnf and make sure that these...
by logan
2010-07-30 19:04
Forum: Hardware
Topic: USB HDD - unable to mount
Replies: 6
Views: 1601

Re: USB HDD - unable to mount

Looks like the drive is dropping off right after you connect it. Are the other drives/enclosures just like this one? I don't know why it'd work on Windows and not on Linux unless it's a kernel bug. If the enclosures are different (and you can easily get at the drives), does the drive in the problema...
by logan
2010-07-30 18:42
Forum: Hardware
Topic: USB HDD - unable to mount
Replies: 6
Views: 1601

Re: USB HDD - unable to mount

The device path should be /dev/sdd1 not /sdd1, or was that a typo?
by logan
2010-07-30 18:38
Forum: General Questions
Topic: Custom PS1 For New Users?
Replies: 4
Views: 824

Re: Custom PS1 For New Users?

My /etc/profile has some bits for the prompt: if [ "$PS1" ]; then if [ "$BASH" ]; then PS1='\u@\h:\w\$ ' else if [ "`id -u`" -eq 0 ]; then PS1='# ' else PS1='$ ' fi fi fi Doesn't yours? I'm pretty sure this is the default... Or are you saying it's not working? My /etc/b...
by logan
2010-07-24 20:32
Forum: System and Network configuration
Topic: upload to proftpd fails
Replies: 16
Views: 3957

Re: upload to proftpd fails

If you're using 'uploads' in the config file and the homedir for the ftp user is /home/ftp, then it's /home/ftp/uploads. I wouldn't put an anonymous ftp root at /. If you want the uploads dir in root for easy local access, make a symlink.
by logan
2010-07-23 19:05
Forum: System and Network configuration
Topic: upload to proftpd fails
Replies: 16
Views: 3957

Re: upload to proftpd fails

ProFTPD can lookup the homedir with the < Anonymous ~ftp> directive or you can do <Anonymous /path/to/dir> . Here's what I use for my public ftp: <Anonymous ~ftp> AnonRequirePassword off User ftp Group ftp UserAlias anonymous ftp UserDirRoot on TransferRate APPE,STOR,STOU,RETR 250000 MaxClients 32 M...
by logan
2010-06-29 20:54
Forum: Hardware
Topic: Which RAID controllers
Replies: 2
Views: 1557

Re: Which RAID controllers

http://www.adaptec.com/en-US/support/raid/sas_raid/SAS-3805/ says that "Only drivers that are not included or embedded within a supported operating system are listed below." . Obviously they're not going to list every distribution under the sun, but Fedora 6 and CentOS 5 both use kernel 2....
by logan
2010-06-27 20:54
Forum: General Questions
Topic: backup plan for encrypted hard drive
Replies: 6
Views: 1453

Re: backup plan for encrypted hard drive

I can use Gigabit Ethernet which I already have, or I could get a PCMCIA card for eSATA and a new drive. Which is better for performance? I'm not sure. It's going to depend on the speed of the hard drives, the PCMCIA controller, and the processor. With my 1TB WD Black drives I can get around 110MB/...
by logan
2010-06-26 05:57
Forum: General Questions
Topic: cron.daily running time?
Replies: 2
Views: 1150

Re: cron.daily running time?

I'm not sure if cron will monitor /etc/crontab for changes. Have you tried restarting the daemon?
by logan
2010-06-26 05:56
Forum: General Questions
Topic: backup plan for encrypted hard drive
Replies: 6
Views: 1453

Re: backup plan for encrypted hard drive

USB is probably slowing you down quite a bit and chewing up your CPU. If your laptop had eSATA you could try an eSATA enclosure instead, otherwise gigabit ethernet should be faster than USB. If you were willing to deal with a more involved backup and restoration process, you should be able to reduce...
by logan
2010-06-23 18:33
Forum: General Questions
Topic: User (and Group) 666?
Replies: 5
Views: 1201

Re: User (and Group) 666?

That's just the UID and GID of the owner of the directories/files. tar preserves ownership and permissions if you extract as root unless you use the --no-same-owner and --no-same-permissions options: --same-owner try extracting files with the same ownership as exists in the ar- chive (default for su...
by logan
2010-06-21 20:06
Forum: General Questions
Topic: folder overwrite ?!
Replies: 18
Views: 2059

Re: folder overwrite ?!

I'm not sure about file managers, but 'mv' wouldn't allow something like that: -(~/tmp) mkdir -p t/htdocs -(~/tmp) touch htdocs -(~/tmp) mv -f htdocs t/ mv: cannot overwrite directory `t/htdocs' with non-directory Do you know any filenames or directories inside the htdocs directory? If so, "fin...
by logan
2010-06-14 20:54
Forum: System and Network configuration
Topic: having a bit of trouble with mdadm raid5 and xfs performance
Replies: 9
Views: 2938

Re: having a bit of trouble with mdadm raid5 and xfs performance

Skip the filesystem and read/write directly to the /dev/mdX device. Obviously any writes will destroy any data on the particular array, so make sure you don't have anything important on there. bonnie++ needs a directory, so you'd need a file system on there to test that, maybe you try a few differen...
by logan
2010-05-29 18:07
Forum: System and Network configuration
Topic: having a bit of trouble with mdadm raid5 and xfs performance
Replies: 9
Views: 2938

Re: having a bit of trouble with mdadm raid5 and xfs performance

with the allocsize should i have made it equal to the chunk size? allocsize is for file size allocation on the disk and it's related to fragmentation. It should equal what you believe is the overall average file size. A general purpose filesystem shouldn't need to change from the default value. Lik...
by logan
2010-05-29 15:00
Forum: System and Network configuration
Topic: having a bit of trouble with mdadm raid5 and xfs performance
Replies: 9
Views: 2938

Re: having a bit of trouble with mdadm raid5 and xfs performance

I believe this is what I had for my md raid5 tuning at home before moving to hardware raid (/etc/rc.local): # raid tuning for i in /sys/block/sd* do if [ "`cat $i/device/scsi_level`" = 6 ]; then echo 64 > $i/queue/max_sectors_kb # 512 echo 512 > $i/queue/nr_requests # 128 #if [ "`ls -...