MySQL Performance Woody Vs Sarge

2005-05-30 Thread Simon
Hi There, I have a strange issue with mysql performance... We are 
running sarge on our production web server and woody on our dev 
server... MySQL is the only issue we have:


Both servers are running MySQL 4.0.24, one Debian_4 (woody) and one 
Debian_5 (sarge)... Both my.cnf files are pretty much the same, both 
servers are 1.5Mhz single processor AMD with 512MB RAM, both running 
software RAID 1 (2 disks) where the mysql data is stored


We have a database with about 900,000 records in it... serial numbers 
for products... Looking up the woody box:


select * from serial_numbers where serial_number is 'XX';

works (pretty much) instantly, where as the sarge box takes about 3 seconds.

How do i start figuing out this issue?

The only difference i can find is that an htparm on the RAID drive:

woody:

Timing buffer-cache reads:   128 MB in  0.46 seconds =278.26 MB/sec
Timing buffered disk reads:  64 MB in  1.33 seconds = 48.12 MB/sec

sarge:

Timing cached reads:   196 MB in  3.38 seconds =  57.98 MB/sec
Timing buffered disk reads:  130 MB in  3.01 seconds =  43.22 MB/sec

Seems to directly relate to the issue? I dont know.

Thanks,

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: MySQL Performance Woody Vs Sarge

2005-05-31 Thread Simon

Roberto C. Sanchez wrote:


Step 1.  Switch to Postgres.



Life's far too short to waste time reading replies like that.



Why.  I was serious.  He has a database that is approaching 1 million
records.  MySQL simply does not perform as well with large databases.
Thus, the most logical thing to do to increase performance of the
database is to switch to a better one.

Now, other folks in this thread have suggested potential hardware
tweaks.  If those work, then great.  If not, then I think the next best
thing to do for performance is to use a DB that was designed to handle
larger amounts of data like that.


Well we have woody running on a 1GHz compaq server box with 1GB of RAM 
and the database has over 4million records in one table alone.. It runs 
fine. A record looks up, within 1 second.


So i KNOW that its not MySQL which is the problem. Also you might note 
that one server (with Mysql) is running fine, where as the other server 
(with MySQL) is not. These servers both have the same data with nearly 
1million records. So again. Not Mysql's problem.






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: MySQL Performance Woody Vs Sarge

2005-05-31 Thread Simon

Jacob S wrote:


What does 'hdparm' return for the RAID drive on each server when you
don't give it any options (ie. 'hdparm /dev/hda')? You might also
include the same output for hdparm run each of the hard drives used
to make the array. 


What are the specs on the hard drives/RAID setup on both servers?
Are they hardware raid or software raid?


Both software RAID 0, both use Promise 2 channel PCI cards, Hard
Drives  are IBM deskstar(?) 7200 40GB.



live: # hdparm /dev/md0


  ^
  Woody
  faster



/dev/md0:
 readonly =  0 (off)
 readahead= 256 (on)
 geometry = 25248/2/4, sectors = 80418048, start = 0



dev: hdparm /dev/md0


  
  Sarge
  slower 



/dev/md0:
 BLKROGET failed: Invalid argument
 geometry = 23632/2/4, sectors = 80405120, start = 0


Jacob - Nearly Right:

woody(dev) = faster (Linux version 2.4.18-bf2.4):

# hdparm /dev/md0
/dev/md0:
 BLKROGET failed: Invalid argument
 geometry = 23632/2/4, sectors = 80405120, start = 0

The above raid consists of:

# hdparm /dev/hde

/dev/hde:
 multcount=  0 (off)
 I/O support  =  0 (default 16-bit)
 unmaskirq=  0 (off)
 using_dma=  1 (on)
 keepsettings =  0 (off)
 nowerr   =  0 (off)
 readonly =  0 (off)
 readahead=  8 (on)
 geometry = 5005/255/63, sectors = 80418240, start = 0
 busstate =  1 (on)

# hdparm /dev/hdg

/dev/hdg:
 multcount=  0 (off)
 I/O support  =  0 (default 16-bit)
 unmaskirq=  0 (off)
 using_dma=  1 (on)
 keepsettings =  0 (off)
 nowerr   =  0 (off)
 readonly =  0 (off)
 readahead=  8 (on)
 geometry = 79780/16/63, sectors = 80418240, start = 0
 busstate =  1 (on)


sarge(production) = slower (Linux version 2.6.8-2-k7):

# hdparm /dev/md0
/dev/md0:
 readonly =  0 (off)
 readahead= 256 (on)
 geometry = 25248/2/4, sectors = 80418048, start = 0

The above raid consists of:

# hdparm /dev/hde

/dev/hde:
 multcount=  0 (off)
 IO_support   =  0 (default 16-bit)
 unmaskirq=  0 (off)
 using_dma=  1 (on)
 keepsettings =  0 (off)
 readonly =  0 (off)
 readahead= 256 (on)
 geometry = 65535/16/63, sectors = 80418240, start = 0

# hdparm /dev/hdg

/dev/hdg:
 multcount=  0 (off)
 IO_support   =  0 (default 16-bit)
 unmaskirq=  0 (off)
 using_dma=  1 (on)
 keepsettings =  0 (off)
 readonly =  0 (off)
 readahead= 256 (on)
 geometry = 65535/16/63, sectors = 80418240, start = 0


[Cc'ed back to the debian-user list, as I'm sure there are people that
know more about this than I do. :-)]

What is the kernel version on each server? Are they both using the same
kernel module for the Promise controller? I'm getting the two boxes
confused... let me know if my notes above are correct.


See above.


The md0 devices should consist of two /dev/hd* devices. Please show
hdparm output for them as well.


See above.


I'm grasping at straws a little bit, as the results aren't what I first
expected (unless I'm mixing previous facts about the servers). But maybe
somebody else here will have some more clues.


Thanks
Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: MySQL Performance Woody Vs Sarge

2005-06-01 Thread Simon

Marty wrote:


Again, I think you are searching in the wrong direction. Your 'hdparm
-tT' results clearly showed that the great difference between your
servers doesn't lie in hard disk performance (48 to 43 MB/s), but in
Memory/CPU performance (278 to 58 MB/s).



That would be a very gross misconfiguration.  To me it seems far more
likely that raid caching is simply disabled, possibly in the driver.

(Grasping straws here, but maybe the card was blacklisted for not obeying
the fsync() function, and therefore deemed unsafe for atomic commits
whenever write caching is enabled, just as one possible reason, however
unlikely.  See Slashdot discussion on "Your hard drive lies to you":
http://hardware.slashdot.org/article.pl?sid=05/05/13/0529252&tid=198&tid=128 
)


 When doing the same SQL query


several times the hard disk shouldn't be bothered much anyway since
either MySQL or a´t least Linux itself should have cached the data.


One thing that might effect the issue, if this leads to any more 
insights: The sarge box WAS a woody box.. the RAID disks were moved 
between the OS versions. The woody was running RAID tools with this config:


raiddev /dev/md0
raid-level  1
nr-raid-disks   2
nr-spare-disks  0
chunk-size 4
persistent-superblock 1
device  /dev/hde1
raid-disk   0
device  /dev/hdg1
raid-disk   1

However, the sarge box in running mdadm with this config:

DEVICE  /dev/hde1 /dev/hdg1
ARRAY   /dev/md0 level=1 num-devices=2 devices=/dev/hde1,/dev/hdg1






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: MySQL Performance Woody Vs Sarge

2005-06-01 Thread Simon

Ron Johnson wrote:


The readahead on the Woody box is 8, it is 256 on the sarge box.
That's one difference.

Are both boxes only MySQL servers, and are you *sure* that the
Sarge box is quiescent when you run the test?


The sarge box is a production box, which runs the standard LAMP setup. 
So it might not be quiescent (nice word BTW).


Both my.cnf files are pretty much the same> 



How different are they?


Config files (sorry for the large post):

Woody (Dev box that is running fine):

[client]
port= 3306
socket  = /var/run/mysqld/mysqld.sock
[mysqld_safe]
err-log = /var/log/mysql/mysql.err
socket  = /var/run/mysqld/mysqld.sock
[mysqld]
user= mysql
pid-file= /var/run/mysqld/mysqld.pid
socket  = /var/run/mysqld/mysqld.sock
port= 3306
log = /var/log/mysql/mysql.log
basedir = /usr
datadir = /mnt/raid/mysql
#datadir= /var/lib/mysql
tmpdir  = /tmp
language= /usr/share/mysql/english
skip-locking
#skip-networking
key_buffer  = 16M
max_allowed_packet  = 1M
thread_stack= 128K
query_cache_limit   = 1048576
query_cache_size= 26214400
query_cache_type= 1
skip-innodb
mysqldump]
quick
max_allowed_packet  = 1M
[mysql]
#no-auto-rehash
[isamchk]
key_buffer  = 16M

Sarge (Prod box that runs slow queries):

[client]
port= 3306
socket  = /var/run/mysqld/mysqld.sock
[mysqld_safe]
socket  = /var/run/mysqld/mysqld.sock
nice= -15
[mysqld]
user= mysql
pid-file= /var/run/mysqld/mysqld.pid
socket  = /var/run/mysqld/mysqld.sock
port= 3306
basedir = /usr
#datadir= /var/lib/mysql
datadir = /mnt/raid/mysql
tmpdir  = /tmp
language= /usr/share/mysql/english
skip-external-locking
bind-address= 127.0.0.1
key_buffer  = 16M
max_allowed_packet  = 16M
thread_stack= 128K
query_cache_limit   = 1048576
query_cache_size= 26214400
query_cache_type= 1
skip-bdb
skip-innodb
[mysqldump]
quick
quote-names
max_allowed_packet  = 16M
[mysql]
#[isamchk]
#key_buffer = 16M
[isamchk]
key_buffer = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M
[myisamchk]
key_buffer = 20M
sort_buffer_size = 20M
read_buffer = 2M
write_buffer = 2M






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Woody: High load average, but no processes hogging...

2005-06-06 Thread Simon

Hi There,

Running Debian woody as a LAMP(PHP) server, on a AMD 1.5GHz, 512MB RAM 
with software RAID1...


I have noticed high(ish) load averages (currently 2.08, last week it was 
17!!), but there is no processes hogging the CPU, nor are we using any 
swap... any ideas where to start with this one?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Woody: High load average, but no processes hogging...

2005-06-07 Thread Simon

Adam Garside wrote:

I have noticed high(ish) load averages (currently 2.08, last week it was 
17!!), but there is no processes hogging the CPU, nor are we using any 


[snip]

Check the output of ps(1) and look for processes in the 'D' state.


Nothing there. All seems fine.

Also,

check I/O with:

vmstat 5

(don't forget to discard the first line of info from that command.)


The load average is currently at 2.12.

Looked abit much cut n pasted, but here is the result:
http://gremin.orcon.net.nz/vmstat.html


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




adaptec 2610sa raid support in debian-installer (aacraid)

2005-06-08 Thread Simon

hi,

I'm hoping to install sarge on an HP box with one adaptec 2610sa raid 
controller, but the latest debian-installer's aacraid module doesn't 
recognize the 2610sa. The 2410sa, 2810sa and 21610sa are mentioned as 
being supported on adaptec's site (and linit.c suggests same - see 
below). Is there some reason why the 2610sa hasn't been included (and is 
there any chance of a non-hacker like myself ever getting this to work 
reliably)?


There also seems to be a later version of aacraid (1.1.5-2391). 
adaptec's website is serving up version 1.1.5-2326 however 1.1.5-2391 
has been used to build a set of driver disk images (also on adaptec's 
site) and it seems some pay-licensed linux distributions have 2610sa 
support using 2391.  Anyone know where I could get the source for 
aacraid 1.1.5-2391 (note: the aacraid with the 2.6.8 kernel source has 
the same three lines below and makes no  reference to the 2610sa)?


thanks for any help,
simon


excerpt from aacraid 1.1.5-2326's linit.c 
...
   { 0x9005, 0x0285, 0x9005, 0x0290, aac_rx_init, "aacraid",  "ADAPTEC 
", "AAR-2410SA SATA ", 1 }, /* AAR-2410SA PCI SATA 4ch (Jaguar II) */

...
   { 0x9005, 0x0285, 0x9005, 0x0292, aac_rx_init, "aacraid",  "ADAPTEC 
", "AAR-2810SA SATA ", 1 }, /* AAR-2810SA PCI SATA 8ch (Corsair-8) */
   { 0x9005, 0x0285, 0x9005, 0x0293, aac_rx_init, "aacraid",  "ADAPTEC 
", "AAR-21610SA SATA", 1 }, /* AAR-21610SA PCI SATA 16ch (Corsair-16) */



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




installing directly onto disks controlled by an adaptec 2?10SA raid controller

2005-06-08 Thread Simon
If anyone has installed debian (sarge, root filesystem) directly onto 
disks controlled by an adaptec 2?10SA controller (eg. 2410SA, 2610SA, 
2810SA, 21610SA), or knows that this has actually been done (ie. the 
debian-installer recognized the card or you loaded a driver), would you 
reply to this post, just to mention that please?


thanks for any info and much appreciated,
simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: adaptec 2610sa raid support in debian-installer (aacraid)

2005-06-08 Thread Simon
An aacraid maintainer (Mark Salyzyn) has emailed a copy of the latest 
source (2401) and explained that there is no reason why aacraid 
1.1.5-2326 (at least) or later wouldn't function with 2?10SA cards.


I've been assuming that the debian-installer just attempts to insmod its 
aacraid module (but perhaps that is a bit too naive). I'll attempt to 
discover which version of aacraid the latest debian-installer uses 
(today hopefully) and find out more about how the debian-installer 
recognises cards.


If anyone has installed debian (the root filesystem) directly onto disks 
controlled by an adaptec 2?10SA controller, or knows that this has 
actually been done (ie. the debian-installer recognized the card or you 
loaded a driver), would you reply to this post, just to mention that 
please?


thanks for any info,
simon

Simon wrote:


hi,

I'm hoping to install sarge on an HP box with one adaptec 2610sa raid 
controller, but the latest debian-installer's aacraid module doesn't 
recognize the 2610sa. The 2410sa, 2810sa and 21610sa are mentioned as 
being supported on adaptec's site (and linit.c suggests same - see 
below). Is there some reason why the 2610sa hasn't been included (and 
is there any chance of a non-hacker like myself ever getting this to 
work reliably)?


There also seems to be a later version of aacraid (1.1.5-2391). 
adaptec's website is serving up version 1.1.5-2326 however 1.1.5-2391 
has been used to build a set of driver disk images (also on adaptec's 
site) and it seems some pay-licensed linux distributions have 2610sa 
support using 2391.  Anyone know where I could get the source for 
aacraid 1.1.5-2391 (note: the aacraid with the 2.6.8 kernel source has 
the same three lines below and makes no  reference to the 2610sa)?


thanks for any help,
simon


excerpt from aacraid 1.1.5-2326's linit.c ...
   { 0x9005, 0x0285, 0x9005, 0x0290, aac_rx_init, "aacraid",  "ADAPTEC 
", "AAR-2410SA SATA ", 1 }, /* AAR-2410SA PCI SATA 4ch (Jaguar II) */

...
   { 0x9005, 0x0285, 0x9005, 0x0292, aac_rx_init, "aacraid",  "ADAPTEC 
", "AAR-2810SA SATA ", 1 }, /* AAR-2810SA PCI SATA 8ch (Corsair-8) */
   { 0x9005, 0x0285, 0x9005, 0x0293, aac_rx_init, "aacraid",  "ADAPTEC 
", "AAR-21610SA SATA", 1 }, /* AAR-21610SA PCI SATA 16ch (Corsair-16) */






--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Apache2/PHP permissions in ISP environment

2005-06-12 Thread Simon
Hi there, we are running debian sarge for a virtual hosting box. PHP 
safe mode is on for all users with a host of other php_admin_values etc. 
We are running name based virtual hosting for all hosts except SSL hosts 
which have their own IP... We are using pureftpd for our FTP server, 
with the u/p in a mysql database and chrooting the users in their dir.


Currently the server runs as the debian default of www-data.www-data.. 
and the users are all loggin in as www-client(1000).www-data..


So, when PHP creates a file 'test.txt' (www-data.www-data), a script 
uploaded via FTP 'alterfile.php' (www-clients.www-data) cant 
change/delete the generated file 'test.txt'.


i have setup the users etc up like that as the users FTP into a 
directory: /www/www.exmaple.com/, in that dir there are: backups/, 
htdocs/, logs/, statistics/, ssl/. they can read everything, but only 
write to htdocs/.


Does anyone have any suggestions on how to get around the above problem?

How do i allow users to create files (with PHP) with the user of 
www-data, but still restrict some other directorys from writing?


Is this a bad thing in the first place?

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




debian package list

2005-06-14 Thread Simon

Hi There,

Im installing a new server to replace one of our old ones. Its a 
LAMP(PHP) server, so i am installing a nice fresh version of sarge. The 
 old server was running sarge as well...


Is there an easy place to get a list of installed packages... To make 
sure that i dont miss any in the new install?


Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: debian package list (dont worry - got it)

2005-06-14 Thread Simon

Simon wrote:

Hi There,

Im installing a new server to replace one of our old ones. Its a 
LAMP(PHP) server, so i am installing a nice fresh version of sarge. The 
 old server was running sarge as well...


Is there an easy place to get a list of installed packages... To make 
sure that i dont miss any in the new install?


Note to self, put on screen  -read docs first.

Sorry


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Scroll lock stuck on.. Darn it!

2005-06-22 Thread Simon

Hi There,

I have a debian sarge box that i have just installed into our rack 
space, networking is currently OFF (so no ssh access). It is controlled 
by an IP KVM switch, so i have direct access to the screen and keyboard.


The problem i have is that the scroll-lock is on so i cant login etc, 
but the shift key seems to be stuck somehow, as when i toggle scroll 
lock off, it prints meminfo to the screen (This is normally 
shift-scrolllock).


I have included a link to the screen as there is some strange keyboard 
error messages that someone might be able to interpert.


http://www.nzlocal.com/simon/screen.jpg

Otherwise, ANY IDEAS?

Thanx

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Scroll lock stuck on.. Darn it!

2005-06-22 Thread Simon

Kent West wrote:


Simon wrote:
I remember seeing a thread some years ago about a "stuck" shift key.
Turns out there was some command or keystroke that caused the terminal
to interpret everything in upper-case. The purpose of this capability
was to work with some older (antiquated) devices/systems that expected
everything in upper-case. I can't remember enough of the gist to help
further, but this might be a direction for you to follow.

But my gut instinct is to be more inclined toward a "glitch" with your KVM.



Found this: There is a curious exception, though. If you type the login 
IN ALL CAPITALS, the system will accept it--but from then on, everything 
on your screen will be in capital letters! This is left over from the 
days when some terminals only had uppercase letters. Although these 
terminals are now all gone or in museums, the login program retains this 
historical curiosity.


I just need to know how to turn it off!

Is there another way of turning off scroll-lock, some sort of key 
combination?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Scroll lock stuck on.. Darn it!

2005-06-22 Thread Simon

Simon wrote:

Kent West wrote:


Simon wrote:
I remember seeing a thread some years ago about a "stuck" shift key.
Turns out there was some command or keystroke that caused the terminal
to interpret everything in upper-case. The purpose of this capability
was to work with some older (antiquated) devices/systems that expected
everything in upper-case. I can't remember enough of the gist to help
further, but this might be a direction for you to follow.

But my gut instinct is to be more inclined toward a "glitch" with your 
KVM.




Found this: There is a curious exception, though. If you type the login 
IN ALL CAPITALS, the system will accept it--but from then on, everything 
on your screen will be in capital letters! This is left over from the 
days when some terminals only had uppercase letters. Although these 
terminals are now all gone or in museums, the login program retains this 
historical curiosity.


I just need to know how to turn it off!

Is there another way of turning off scroll-lock, some sort of key 
combination?





FIXED!!! Get pissed with keyboard.. hit random keys. Whatever i did, 
took off scroll-lock without hitting the scroll lock key, can login now.


Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




keyboard output in log/messages

2005-06-24 Thread Simon
Does anyone have any idea what this is? The (sarge) box is in a rack 
with a KVM switch attached and remote access. This happens when i switch 
 the KVM to the console:


Jun 24 12:38:42 web1 kernel: input: AT Translated Set 2 keyboard on 
isa0060/serio0

Jun 24 12:38:42 web1 input.agent[3777]:  evdev: already loaded
Jun 24 12:38:42 web1 input.agent[3778]:  evdev: already loaded
Jun 24 12:39:04 web1 kernel: atkbd.c: Spurious ACK on isa0060/serio0. 
Some program, like XFree86, might be trying access hardware directly.
Jun 24 12:39:04 web1 kernel: input: AT Translated Set 2 keyboard on 
isa0060/serio0

Jun 24 12:39:04 web1 input.agent[3862]:  evdev: already loaded
Jun 24 12:39:04 web1 input.agent[3865]:  evdev: already loaded
Jun 24 12:39:56 web1 kernel: input: AT Translated Set 2 keyboard on 
isa0060/serio0

Jun 24 12:39:56 web1 input.agent[3946]:  evdev: already loaded
Jun 24 12:39:56 web1 input.agent[3950]:  evdev: already loaded
Jun 24 12:41:53 web1 kernel: psmouse.c: Wheel Mouse at 
isa0060/serio1/input0 lost synchronization, throwing 3 bytes away.


Thanks for any insight...

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




kernel: APIC error on CPU0

2005-06-24 Thread Simon
Running sarge (2.6.8-2-k7-smp) on a dual athlon MP on a tyan tiger 
mobo... I am getting this error every now and then...


Jun 23 21:27:55 web1 kernel: APIC error on CPU0: 00(02)
Jun 23 21:27:55 web1 kernel: APIC error on CPU1: 00(02)

Is this something to sorry about?

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Multihomed - seperate subnets...

2005-06-27 Thread Simon

Hi There,

I have a debian sarge box with 2 network card as eth0 and eth1 (funny 
enough!).. eth0 is the default on one subnet (a single IP) and eth2 on 
another (listening to multiple IPs).


The problem is that i can ping eth0's IP, but not eth1's... but it shows 
up on the box as up and i can ping on the box itself...


The cable works and is plugged in. :)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Multihomed - seperate subnets...

2005-06-27 Thread Simon

Jacob S wrote:


What is the chipset on eth1 and what driver are you using for it? (Not
saying that I have the answer, but you are more likely to get one if you
include that information.) You might also copy/paste the output of "cat
/proc/interrupts". 


You may have a driver that a) is buggy b) doesn't fully support that
chipset or a faulty NIC. If you have done any troubleshooting to
eliminate any of those possibilities, that would also be helpful
information to include in your next e-mail.


# cat /proc/interrupts
   CPU0   CPU1
  0:  139404201  139651227IO-APIC-edge  timer
  1: 31 21IO-APIC-edge  i8042
  2:  0  0  XT-PIC  cascade
  5:  22026 40   IO-APIC-level  eth1
 10: 307860  62574   IO-APIC-level  3w-9xxx, eth0
 12:  0  0IO-APIC-edge  i8042
 15:  6  8IO-APIC-edge  ide1
NMI:  0  0
LOC:  279066285  279066255
ERR:  4
MIS:  0



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Multihomed - seperate subnets...

2005-06-27 Thread Simon

Bob Proulx wrote:

Simon wrote:

I have a debian sarge box with 2 network card as eth0 and eth1 (funny 
enough!).. eth0 is the default on one subnet (a single IP) and eth2 on 
another (listening to multiple IPs).



  s/eth2/eth1/  ??


Should have been eth1. Sorry.




The problem is that i can ping eth0's IP, but not eth1's... but it shows 
up on the box as up and i can ping on the box itself...


The cable works and is plugged in. :)



What does tcpdump on eth1 say?  Does it hear other traffic?  What IP
addresses does it hear on that other wire?  I am guessing that you
really have a different network there than you originally thought and
so the IP address there is not correct.  Can you DHCP an address
there?

  tcpdump -n -i eth1


This is pinging from my home IP address to the offending server behind 
our router... The packets are clearly getting to the box, but i get no 
ping back to home.


web1:~# tcpdump -n -i eth1
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eth1, link-type EN10MB (Ethernet), capture size 96 bytes
18:46:31.373710 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 1
18:46:32.373103 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 2
18:46:33.373705 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 3
18:46:34.373811 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 4
18:46:35.372775 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 5
18:46:36.372288 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 6
18:46:37.372991 IP my.home.ip.addr > my.serv.ip.addr: icmp 64: echo 
request seq 7




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Multihomed - seperate subnets...

2005-06-28 Thread Simon

Michael Bellears wrote:


 tcpdump -n -i eth1


This is pinging from my home IP address to the offending 
server behind our router... The packets are clearly getting 
to the box, but i get no ping back to home.


Your linux box is using the other NIC for gw.

Add a static route for your home net to go back out via eth1 to get
packets to return via that path.


Confirmed what i was thinking. But what i think i need is for all 
traffic coming in to eth1, to go back out the primary interface eth0. 
(This is a hosting box).


Is that correct?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Protecting against spoofing with IPTABLES

2005-06-29 Thread Simon

Hi There,

Using debian testing with two ethernet cards.. To get eth1 (on a 
seperate subne) working correctly, ive had to change 
/proc/sys/net/ipv4/conf/eth1/rp_filter to 0. Now i need a simple 
solution to protect against spoofing attacks on this interface... I have 
an example setup, but i want to make sure i have it correct.. can 
someone confirm for me?...


iptables -F
iptables -A INPUT -i lo -j ACCEPT
iptables -N SPOOF
iptables -A SPOOF -i eth1 -j SPOOF

Is this correct - or have i got it ALL wrong.

Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: question about sarge and Sony Vaio PCG V505 EX

2005-06-29 Thread Simon

Marcelo Chiapparini wrote:

Hi all,

I want to install sarge in a Sony Vaio PCG V505 EX laptop. I didn't find 
anything about it in the list. Besides, in the site 
http://www.linux-laptop.net/ there is only information about woody and 
gentoo on a Vaio PCG V505 BX...  Does anybody in this list have any 
experience with sarge and PCG V505 EX?


Thanks in advance for any help!

Regards

Marcelo




A good idea is to try a Live CD, if that works well - you can pretty 
much guess that an install is (mainly) going to work..?



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Can't java working in open office install on woody

2001-08-15 Thread simon


On Tue, 14 Aug 2001, John Foster wrote:

> I just tried to install Open Office 632 on my Debian woody box and it
> claimed to not be able to find java on it. I have almost every java item
> in Debian installed on this thing. Any ideas to get this corrected.
> John
>

You will need to install Sun's jdk1.3/jre1.3 (http://java.sun.com) from
the tarball and set up your $JAVA_HOME, and maybe $PATH, to point to it
(mine is in /usr/local/sun-java/).

HTH,

Simon



newbie fighting with Helix Gnome

2001-04-15 Thread simon
I'm new to Linux and even newer to Debian.

I am running woody, and today (15th) I did an apt-get upgrade that's
messed up Gnome. I was running Helix Gnome, although I did plan to
remove it and go back to plain Gnome...whatever the update did today
it seems to have replaced parts of Helix Gnome with newer standard
Gnome components and completely messed up my dependancies. apt-get
upgrade failed with the text pasted below:-

Unpacking oaf (from .../archives/oaf_0.6.5-5_i386.deb) ...
dpkg: error processing /var/cache/apt/archives/oaf_0.6.5-5_i386.deb
(--unpack):
 trying to overwrite `/usr/bin/oafd', which is also in package liboaf0
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Preparing to replace gnome-panel-data 1.2.4-helix2 (using
.../gnome-panel-data_1.4.0.2-1_all.deb) ...
Unpacking replacement gnome-panel-data ...
dpkg: error processing
/var/cache/apt/archives/gnome-panel-data_1.4.0.2-1_all.deb (--unpack):
 trying to overwrite `/usr/share/gnome/help/panel', which is also in
 package gnome-help-data
Errors were encountered while processing:
 /var/cache/apt/archives/oaf_0.6.5-5_i386.deb
 /var/cache/apt/archives/gnome-panel-data_1.4.0.2-1_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

I cannot apt-get -f install out of it as that fails with the same
error. I thought I would remove helix completely and then reinstall
gnome, but apt is telling me I do not have task-helix-gnome
installed. I'm at a bit of a loss. Am I right to try and remove 
then re-install Gnome (I don't want Helix back) and if so, how can I
do this.

Any suggestions would be very welcome.

ThanksSimon.
-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgpwz6dYID0Iw.pgp
Description: PGP signature


Re: newbie fighting with Helix Gnome

2001-04-15 Thread Simon
On (15/04/01 14:45), Ethan Benson wrote:

> purge every gnome package.  removing task-* packages does not remove
> anything.
> 
> dpkg -l | grep ximian
> 
> dpkg -l | grep helix
> 
> 
> then try a apt-get install task-gnome with your sources.list NOT
> including ximian/helix.  
> 
I cannot remove any of the packages. Whatever I attempt to remove I
just get the following error:-

Reading Package Lists... Done
Building Dependency Tree... Done
You might want to run `apt-get -f install' to correct these:
Sorry, but the following packages have unmet dependencies:
  gnome-control-center: Depends: oaf (>= 0.6.5) but it is not going to
  be installed
  gnome-panel: Depends: gnome-panel-data (>= 1.4.0.2-1) but
  1.2.4-helix2 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or
specify a solution).

Running apt-get -f install just produces the error I posted
before.

I think I need to do some reading on apt... any help in the mean time
would be most welcome :)

Simon.

-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgpM1I4ZNZNhw.pgp
Description: PGP signature


Re: newbie fighting with Helix Gnome

2001-04-15 Thread Simon
> dpkg --purge gnome-control-center gnome-panel
> 
> then do the rest of the ximian/helix purging as described earlier. 
> 
> also make sure your sources.list do NOT contain ximian or helix
> sources and run apt-get update.  

Thanks for your help, that did the trick.

I think I'll try Windowmaker now.

Simon

-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgpQKd1kSOClj.pgp
Description: PGP signature


Re: atp-get upgrade scrued up my installation

2001-04-16 Thread simon
On (16/04/01 13:36), Raffaele Sandrini wrote:

> yesterday i made an apt-get upgrade (on woody). Many basic files have been 
> upgraded (32MB of data). No my keytable is set back to US. I have fergooten 
> the programname who can set the default keymap. 


The commmand 'kbdconfig' is what you're looking for.

Simon.

-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgpcZk3orkDRb.pgp
Description: PGP signature


Re: atp-get upgrade scrued up my installation

2001-04-16 Thread Simon
On (17/04/01 00:33), Raffaele Sandrini wrote:
> Ok, thanks.
> But kbdconfig isn't avalible.  I also tried to insall the kdb package. But 
> apt wont install it, because it needs "console-data" wich isn't an avalible 
> package (!!??).

I use Woody also and this worked fine for me a couple of weeks ago
whan I changed my keyboard for one with a different layout. However, I
just tried to run it again & it seems to have disappeard in my
upgrade!! Anyway, according to apt, the package console-data is
obsolete and has been replaced by console-common. I haven't time to
try it myself but this may be your answer.

Otherwise, you can use 'loadkeys uk' replacing uk with the country
code you desire.

I hope this helps.

Simon.

-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgpff48zpxjLB.pgp
Description: PGP signature


Re: Problem with SBLive Platinum 5.1

2001-04-27 Thread simon
On (27/04/01 13:50), Anton Emmerfors wrote:
> 
> I just wanted to ask if anyone has gotten a SoundBlaster Live Platinum
> 5.1 to work with the kernel drivers (emu10k1) with 2.2.19 or 2.4.3? I
> have checked all the documentation I saw as relevant and still can't
> find what's wrong.

I haven't used the kernel drivers, but I have used the snapshot
drivers via ftp from opensource.creative.com. This work perfectly with
2.2.18 and 2.4.2 kernels. I would recommend you follow these drivers
to get more functionality out of your sound card in the future.

HTH Simon.


-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A



Re: vgetty -- answering machine

2001-04-29 Thread simon
On (28/04/01 20:05), omicron wrote:
>   i'm having a DAX modem and also installed vgetty. how do i
> configure a personal answering machine ?

You should read this article http://freeos.com/articles/3715/ on
setting up an answerphone in Linux using vgetty. It's not Debian
specific, and I haven't tried it myself but it seems a good
explanation of the process.

HTH

Simon.

-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgphKZ17jqrBj.pgp
Description: PGP signature


Re: Scanner

2001-04-29 Thread simon
On (29/04/01 12:57), Nikolai Prokoschenko wrote:
> I have a problem here: an AGFA SnapScan Touch USB scanner. Is it
> possible to make this model work under Debian? What do I have to do?

The following web site has some compatibility ratings for hardware
with Linux, along with pointers to the Howto's and software required.
http://lhd.datapower.com

You should also check out the SANE website for further information
http://www.mostang.com/sane

HTH

Simon

-- 

Simon Hooper
GnuPG 1024D/F3D1353A 64AF 1419 4B67 CE13 E312  7C80 CFB0 9414 F3D1 353A


pgpujQSX8tlEu.pgp
Description: PGP signature


apt-get install: unknown user `amavis-stats'

2006-11-27 Thread Simon

Hi There,

I am trying to install spamassassin from sarge-backports with this command:

apt-get install spamassassin/sarge-backports

But im getting this error once the packages have downloaded:

dpkg: syntax error: unknown user `amavis-stats' in statusoverride file
E: Sub-process /usr/bin/dpkg returned an error code (2)

Is there a command to clear this or something? Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Setting network cards to full duplex at boot...

2006-12-12 Thread Simon

Hi There,

Is there a way to set network cards to full duplex at boot time?

Thanks Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Debian install to Inspiron 530 with SATA DVD drive

2007-09-25 Thread Simon
Hi There,

We are trying to install debian etch onto our Inspiron 530 that has a
SATA DVD drive, but the installer cannot detect the CD drive once it
is booted. How do i move forward here?

Thanks

Simon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian install to Inspiron 530 with SATA DVD drive

2007-09-25 Thread Simon
On 9/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Quoting Simon <[EMAIL PROTECTED]>:
>
> > Hi There,
> >
> > We are trying to install debian etch onto our Inspiron 530 that has a
> > SATA DVD drive, but the installer cannot detect the CD drive once it
> > is booted. How do i move forward here?
> >
>
> Sounds like etch doesn't have the drivers for your sata controller.
> er... or should I say the kernel doesn't have the drivers.
> The default kernel for etch is 2.6.18, try using a lenny(testing) or
> sid(unstable) installer with a more recent kernel. 2.6.22 or higher
> kernel will probably find your sata controller.

Thanks for that... have downloaded the lastest snapshot and it booted
no issues. Now it wont find the network card. sigh... its a intel
e1000 i think.

Is it easier to just put a new network card in it?

Simon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Sarge php4-cli no mysql support?

2007-10-03 Thread Simon
Hi There,

We have a sarge box that we have just installed php4-cli on, but there
seems to be no mysql support? Can anyone confirm this? I have
php4-mysql installed.

What can i do here?

Here is the Configure Command from phpinfo() with the command line client.

Configure Command =>  '../configure' '--prefix=/usr' '--disable-cgi'
'--with-config-file-path=/etc/php4/cli' '--enable-memory-limit'
'--disable-debug' '--with-regex=php' '--disable-rpath'
'--disable-static' '--with-pic' '--with-layout=GNU'
'--with-pear=/usr/share/php' '--enable-calendar' '--enable-sysvsem'
'--enable-sysvshm' '--enable-sysvmsg' '--enable-track-vars'
'--enable-trans-sid' '--enable-bcmath' '--with-bz2' '--enable-ctype'
'--with-db4' '--with-iconv' '--enable-exif' '--enable-filepro'
'--enable-ftp' '--with-gettext' '--enable-mbstring'
'--with-pcre-regex=/usr' '--enable-shmop' '--enable-sockets'
'--enable-wddx' '--disable-xml' '--with-expat-dir=/usr'
'--with-xmlrpc' '--enable-yp' '--with-zlib' '--without-pgsql'
'--with-kerberos=/usr' '--with-openssl=/usr' '--with-zip=/usr'
'--enable-dbx' '--with-mime-magic=/usr/share/misc/file/magic.mime'
'--with-exec-dir=/usr/lib/php4/libexec' '--without-mm'
'--without-mysql' '--without-sybase-ct' '--enable-pcntl'
'--with-ncurses=/usr'


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Server REALLY slow after console messages

2006-06-27 Thread Simon

Hi There,

Can anyone have a look at this screenshot and give me a glimmer of
what is going on here?

This server is responding to pings, but all services are 'stuck', i
can login, but it times out after 60 seconds and typing is REALLY
slow...

http://gremin.orcon.net.nz/mx.JPG

Thanks for any input

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Server REALLY slow after console messages

2006-06-27 Thread Simon

On 6/28/06, Jo Shields <[EMAIL PROTECTED]> wrote:



You've run out of RAM.



Hmm... Could this be some sort of memory leak or something? Would
anyone be able to offer any path of checking or solving this issue?

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Server REALLY slow after console messages

2006-06-27 Thread Simon

On 6/28/06, Derek Martin <[EMAIL PROTECTED]> wrote:

On Wed, Jun 28, 2006 at 09:37:07AM +1200, Simon wrote:
> On 6/28/06, Jo Shields <[EMAIL PROTECTED]> wrote:
>
> >
> >You've run out of RAM.
> >
>
> Hmm... Could this be some sort of memory leak or something? Would
> anyone be able to offer any path of checking or solving this issue?

Run top, hit 'F' to select a field to sort on, then n for %MEM.  This
will show you what processes are sucking up your RAM.

Also run free -m to see how much memory you have, how much virtual
memory you have, and how much of it is in use.  Make sure you have as
much as you think you have.


OK, i had to restart the server as there was critical services running
on it... After rebooting and running the commands above:

top - 09:48:40 up 25 min,  2 users,  load average: 0.81, 0.95, 0.86
Tasks: 245 total,   1 running, 244 sleeping,   0 stopped,   0 zombie
Cpu(s):  0.1% us,  0.0% sy,  0.0% ni, 99.9% id,  0.0% wa,  0.0% hi,  0.0% si
Mem:   2053816k total,  1943124k used,   110692k free,45080k buffers
Swap:  3903784k total,4k used,  3903780k free,  1324232k cached

 PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
2137 mysql 15   0  334m  59m 8920 S  0.0  3.0   0:00.19 mysqld
3678 amavis15   0 49460  44m 7728 S  0.0  2.2   0:02.14 amavisd
3771 amavis16   0 48748  43m 7728 S  0.0  2.2   0:01.78 amavisd
3502 amavis15   0 48232  43m 7728 S  0.0  2.2   0:27.82 amavisd
3852 amavis16   0 46756  42m 7728 S  0.0  2.1   0:01.74 amavisd
4014 amavis16   0 46620  41m 7728 S  0.0  2.1   0:00.39 amavisd
3831 amavis15   0 45896  41m 7728 S  0.0  2.1   0:00.81 amavisd
3838 amavis16   0 45608  40m 7728 S  0.0  2.0   0:00.62 amavisd
3878 amavis16   0 45516  40m 7728 S  0.0  2.0   0:00.53 amavisd
3834 amavis15   0 45608  40m 7728 S  0.0  2.0   0:00.53 amavisd
4067 amavis15   0 44836  39m 7728 S  0.0  2.0   0:00.00 amavisd
4080 amavis16   0 44836  39m 7728 S  0.0  2.0   0:00.00 amavisd
4085 amavis16   0 44836  39m 7728 S  0.0  2.0   0:00.00 amavisd
2213 amavis16   0 44196  39m 7088 S  0.0  2.0   0:00.55 amavisd
2013 www-data  15   0 34916  16m  26m S  0.0  0.8   0:00.63 apache2
2011 www-data  15   0 34864  16m  26m S  0.0  0.8   0:00.69 apache2
2907 www-data  16   0 34848  16m  26m S  0.0  0.8   0:00.45 apache2
2083 www-data  15   0 34728  16m  26m S  0.0  0.8   0:00.74 apache2
2015 www-data  15   0 34744  16m  26m S  0.0  0.8   0:00.72 apache2
2014 www-data  15   0 34676  16m  26m S  0.0  0.8   0:00.89 apache2
2012 www-data  15   0 34388  15m  26m S  0.0  0.8   0:00.54 apache2
1900 root  16   0 31024  12m  25m S  0.0  0.6   0:00.38 apache2
1582 dcc   16   0 26344 8444 2024 S  0.0  0.4   0:00.00 dccifd
2200 dbmail15   0  7272 4628 3716 S  0.0  0.2   0:00.49 dbmail-pop3d
1670 root  15   0  8008 4604 5076 S  0.0  0.2   0:00.77 mailgraph.pl

mx1:~# free -m
total   used   free sharedbuffers cached
Mem:  2005   1955 50  0 43   1298
-/+ buffers/cache:612   1393
Swap: 3812  0   3812

Could someone have any further suggestions to find out what caused the
problems? I have the syslog output if needed?

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Server REALLY slow after console messages

2006-06-27 Thread Simon

On 6/28/06, Derek Martin <[EMAIL PROTECTED]> wrote:

On Wed, Jun 28, 2006 at 09:52:42AM +1200, Simon wrote:
> OK, i had to restart the server as there was critical services running
> on it... After rebooting and running the commands above:

Unfortunately it's too late...  To see what is causing the problem,
you need to look at it while the problem is happening...

There might be something interesting in syslog, but I'm sorry to say,
there probably won't be.  If you want to post them on a website, maybe
people can take a look...


I think i have found the issue here:

The syslog is filled with (30MBs of it):

Jun 28 09:20:33 mx1 dbmail/pop3d[6383]: pool.c,manage_stop_children:
General stop requested. Killing children..

And after that:

Jun 28 09:20:33 mx1 kernel: cpu 3 hot: low 32, high 96, batch 16
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6284  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: cpu 3 cold: low 0, high 32, batch 16
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: HighMem per-cpu: empty
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6279  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel:
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: Free pages:  233964kB (0kB HighMem)
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6224  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: Active:0 inactive:6 dirty:0 writeback:13
unstable:0 free:58491 slab:77399 mapped:87855 pagetables:81245
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: DMA free:2724kB min:8kB low:16kB high:24kB
active:0kB inactive:0kB present:16384kB
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6218  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: protections[]: 4 720 720
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: Normal free:231240kB min:1432kB low:2864kB
high:4296kB active:0kB inactive:24kB present:2080192kB
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6215  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: protections[]: 0 716 716
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: HighMem free:0kB min:128kB low:256kB
high:384kB active:0kB inactive:0kB present:0kB
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6090  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: protections[]: 0 0 0
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: DMA: 55*4kB 5*8kB 0*16kB 1*32kB 0*64kB
1*128kB 1*256kB 0*512kB 0*1024kB 1*2048kB 0*4096kB = 2724kB
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6089  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: Normal: 44314*4kB 6170*8kB 211*16kB
39*32kB 0*64kB 0*128kB 0*256kB 0*512kB 0*1024kB 0*2048kB 0*4096kB =
231240kB
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: HighMem: empty
Jun 28 09:20:33 mx1 mysqld[4071]: 060628  9:20:07 [ERROR]
/usr/sbin/mysqld: Forcing close of thread 6088  user: 'dbmail'
Jun 28 09:20:33 mx1 kernel: Swap cache: add 1211044, delete 1037695,
find 439143/639997, race 806+77
Jun 28 09:20:33 mx1 mysqld[4071]:
Jun 28 09:20:33 mx1 kernel: Out of Memory: Killed process 2135 (mysqld).
Jun 28 09:20:33 mx1 kernel: w 0, high 32, batch 16
Jun 28 09:20:33 mx1 kernel: cpu 3 hot: low 32, high 96, batch 16
Jun 28 09:20:33 mx1 kernel: cpu 3 cold: low 0, high 32, batch 16
Jun 28 09:20:33 mx1 kernel: HighMem per-cpu: empty

I have emailed to the dbmail mailing list as well here. Thanks for the
responce so far!!

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Server REALLY slow after console messages

2006-06-28 Thread Simon

Kernel 2.6.8-12-em64t-p4-smp

On 6/28/06, Hemlock <[EMAIL PROTECTED]> wrote:

On Wed, 28 Jun 2006 09:07:02 +1200, Simon wrote
> Hi There,
>
> Can anyone have a look at this screenshot and give me a glimmer of
> what is going on here?
>
> This server is responding to pings, but all services are 'stuck', i
> can login, but it times out after 60 seconds and typing is REALLY
> slow...
>
> http://gremin.orcon.net.nz/mx.JPG
>
> Thanks for any input

Running a 2.6.15 kernel?


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Gnome international clock in sid

2008-07-15 Thread simon
Am 15.07.2008 um  Uhr haben Sie geschrieben:
> Where can I get this for sid?

you can get the gnomepanel 2.22 from experimental
the nautilus 2.22 is there, too

regards
simon





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: unsubcribe

2008-08-21 Thread simon
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of "unsubscribe".
Trouble? Contact [EMAIL PROTECTED]

Hio,

[EMAIL PROTECTED]

REQUEST

regards
simon





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Debian Support for IBM xSeries 360

2006-07-24 Thread Simon

Hi There,

Can anyone verify if Debian will run on a IBM xSeries 360? The specs
for this server are:

- 4 x Intel Xeon Processor MP 1.4Ghz
- 4gb DDR Registered SDRAM DIMM memory
- 2 x 72gb 10k Ultra160 Hard drives
- Serveraid 4LX Ultra 160 SCSI RAID controller
- 1.44 Floppy drive and CDRom
- Integrated Light Path Diagnostics
- Integrated Ultra160 SCSI controller
- 1x 10BASE-T/100BASE-TX Intel Ethernet controller
- PS/2 Mouse & Keyboard ports
- VGA Port 8 MB SDRAM
- 2x 100 MHz/64-bit PCI-X
- 4x 66 MHz/64-bit PCI-X
- Six hot-swap fans
- 3x 370 Watt Hotswap power supplies

Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Debian Support for IBM xSeries 360

2006-07-25 Thread Simon

Wulfmann,

No, not the mainframe :)

http://www-132.ibm.com/webapp/wcs/stores/servlet/CategoryDisplay?catalogId=-840&storeId=1&categoryId=2344267&langId=-1&dualCurrId=73

On 7/25/06, Wulfy <[EMAIL PROTECTED]> wrote:

Carl Fink wrote:
> Quick poll:  how many people here are old enough to read that subject line
> and think of the IBM Series/360, the mainframe?
>
I learned to program on that beast in 1975...  now I feel old...

--
Blessings

Wulfmann

Wulf Credo:
Respect the elders. Teach the young. Co-operate with the pack.
Play when you can. Hunt when you must. Rest in between.
Share your affections. Voice your opinion. Leave your Mark.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Moving web server to new IP

2006-07-26 Thread Simon

Hi There,

I know this is strictly not a debian question, but i will be using
debian todo it!

I need to move our web server to a new IP range. This is hosting
around 300 websites, about 250 on 2-3 IPS (standard name based virtual
hosts) and the rest on their own IPs (SSL hosts). All running on
apache/php/mysql.

Im wondering how i can achieve this over a period of a week rather
than all in one go.

My thoughts are to set up some sort of proxy to proxy the requests
from one IP range to another. But, this would result in wierd hit
stats (coming from the proxy IP rather than the client IP - i think).

Im wondering if this could be done with netfilter somehow? or some other way?

Moving mail and DNS is easy as i can use pedrition for the mail proxey
and just run dual name servers until they are sorted as they are low
overhead anyway.

Any input is appreciated.

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: Moving web server to new IP

2006-07-26 Thread Simon

On 7/26/06, Brent Clark <[EMAIL PROTECTED]> wrote:

Simon wrote:
> I need to move our web server to a new IP range. This is hosting
> around 300 websites, about 250 on 2-3 IPS (standard name based virtual
> hosts) and the rest on their own IPs (SSL hosts). All running on
> apache/php/mysql.

Hi

Just a suggestion, start by shortening the TTL, therefore any changes made will 
have a more quicker ripple effect.



yea - good point! And i will do for the ones that are one our DNS, but
we have a number of domains that clients (for whatever reason) have on
other domain name registrars... so i wanted to give them a grace
period here.

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Debian support for HP ProLiant DL380 G5

2006-08-01 Thread Simon

Hi There,

We are interested in purchasing a HP ProLiant DL380 G5 server, does
anyone have any news as to if this server works or not?

Here is the link to the HP website. Looking thru it is a wicked piece of kit:

http://h10010.www1.hp.com/wwpc/us/en/ss/WF05a/15351-241434-241475-241475-f79-1121516.html

Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




New Series x3650 Server Support?

2006-08-07 Thread Simon

Hi There,

Wondering if any one has any info on the new IBM Series x3650 servers
running with Debian. In particualr with the upgraded ServeRAID-8k SAS
Controller option (25R8064) from IBM? This has full RAID 5 support
with battery backup of 72 hours.

Im guessing that the only issue with this server would be the raid
controller being too new for debian to recognise...?

This adaptor is showen as being supported by both RHEL and SLES:
http://www-03.ibm.com/servers/eserver/serverproven/compat/us/blade/8853/ibm_25R8064.html

And here is the IBM Redbook:
http://www.redbooks.ibm.com/abstracts/TIPS0054.html?Open

I would really appreciate any input here, esp from anyone from IBM on this list?

Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




SATA issues with Albatron KX600S motherboard and debian etch

2007-05-03 Thread Simon

Hi There,

We have a Albatron KX600S motherboard with a single IDE 40GB drive
(with debian etch installed) and 2 x 200GB SATA (was going to software
RAID 1 these). But we cant see /dev/sda or /dev/sdb and get the below
in the dmesg. Any thoughts/tips/pointers on how to get these working?
Thanks! Simon


sda: Current: sense key: Aborted Command
  Additional sense: No additional sense information
end_request: I/O error, dev sda, sector 390721792
ata1: EH complete
ata1.00: speed down requested but no transfer mode left
ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata1.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)
ata1: EH complete
ata1.00: speed down requested but no transfer mode left
ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata1.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)
ata1: EH complete
ata1.00: speed down requested but no transfer mode left
ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata1.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)
ata1: EH complete
ata1.00: speed down requested but no transfer mode left
ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata1.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)
ata1: EH complete
ata1.00: speed down requested but no transfer mode left
ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata1.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)
ata1: EH complete
ata1.00: speed down requested but no transfer mode left
ata1.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata1.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)
sd 0:0:0:0: SCSI error: return code = 0x0802

ata1: EH complete
SCSI device sda: drive cache: write back
SCSI device sda: 390721968 512-byte hdwr sectors (200050 MB)
sda: Write Protect is off
sda: Mode Sense: 00 3a 00 00
SCSI device sda: drive cache: write back
kjournald starting.  Commit interval 5 seconds
EXT3 FS on hda3, internal journal
EXT3-fs: mounted filesystem with ordered data mode.
eth0:  setting full-duplex.
ACPI: Power Button (FF) [PWRF]
ACPI: Power Button (CM) [PWRB]
ACPI: Sleep Button (CM) [SLPB]
NET: Registered protocol family 10
lo: Disabled Privacy Extensions
IPv6 over IPv4 tunneling driver
eth0: no IPv6 routers present
ata2.00: speed down requested but no transfer mode left
ata2.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0
ata2.00: tag 0 cmd 0x29 Emask 0x1 stat 0x51 err 0x4 (device error)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




stop postfix mail.log to syslog

2007-05-09 Thread Simon

Hi There,

How do i configure syslog to only log mail to mail.log. The default
debian postfix logs to mail.log and syslog at the same time with the
same data.

Thanks


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




OS File Permission issue (chown -R root.root ../)

2007-06-19 Thread Simon

OK.. So i was in my /root/ directory and put just one too many "."s in
the line... Now i have a lot of files that i own!!

I think the term is "DOH!".

Is there any way to fix these?

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




GRUB hang after lenny install

2009-08-18 Thread Simon
Hi There, We have a Tyan Tiger i7320 based server with 2 x nocona Xeon CPUs
and a 3ware 9500 4LP raid card. Attached to the raid card is a single WD
500GB SATA hd (unit 0 - /dev/sda) and a RAID5 comprised of 3 x 250GB SATA
HDs (unit 1 - /dev/sdb, also currently degraded as 1 of the drives is
failing).

I am installing lenny from the business card CD with a base system with a
single large 490GB / on /dev/sda1 and a 2GB SWAP /dev/sda2. Then doing
nothing with /dev/sdb (has a LVM file system on it that i want to remain
intact). Once i get to the grub install i enter "(hd0)" and proceed.

Once i reboot (making sure that the 3ware RAID card is the first boot device
in the bios after the CD).. it gets thru the bios, raid screen, then i get:

GRUB Loading stage1.5
GRUB loading, please wait...

and it does not move from there nor is there no warning after that. Just no
go.

Any assistance is VERY VERY much appreciated! a we are trying to migrate off
this server and its holding everything up.

Thanks

Simon


Installing linux-image-2.6.26-1-amd64 on lenny (dependency problems)

2009-05-27 Thread Simon
Hi There,

We have a fresh install of lenny on a VM and tried to perform the initial
apt-get update/upgrade but are having issues with dependency problems. Can
someone point me in the correct direction here please?

Thanks

Simon

# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
3 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up linux-image-2.6.26-1-amd64 (2.6.26-13lenny2) ...
Running depmod.
Running mkinitramfs-kpkg.
Not updating initrd symbolic links since we are being updated/reinstalled
(2.6.26-13 was configured last, according to dpkg)
Not updating image symbolic links since we are being updated/reinstalled
(2.6.26-13 was configured last, according to dpkg)
Running postinst hook script update-grub.
Searching for GRUB installation directory ... found: /boot/grub
warning: grub-probe can't find drive for /dev/sda1.
grub-probe: error: Cannot find a GRUB drive for /dev/sda1.  Check your
device.map.

User postinst hook script [update-grub] exited with value 1
dpkg: error processing linux-image-2.6.26-1-amd64 (--configure):
 subprocess post-installation script returned error exit status 1
Setting up linux-image-2.6.26-2-amd64 (2.6.26-15lenny2) ...
Running depmod.
Running mkinitramfs-kpkg.
initrd.img(/boot/initrd.img-2.6.26-2-amd64
) points to /boot/initrd.img-2.6.26-2-amd64
 (/boot/initrd.img-2.6.26-2-amd64) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.26-2-amd64.postinst line 569.
vmlinuz(/boot/vmlinuz-2.6.26-2-amd64
) points to /boot/vmlinuz-2.6.26-2-amd64
 (/boot/vmlinuz-2.6.26-2-amd64) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.26-2-amd64.postinst line 569.
Running postinst hook script update-grub.
Searching for GRUB installation directory ... found: /boot/grub
warning: grub-probe can't find drive for /dev/sda1.
grub-probe: error: Cannot find a GRUB drive for /dev/sda1.  Check your
device.map.

User postinst hook script [update-grub] exited with value 1
dpkg: error processing linux-image-2.6.26-2-amd64 (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of linux-image-2.6-amd64:
 linux-image-2.6-amd64 depends on linux-image-2.6.26-2-amd64; however:
  Package linux-image-2.6.26-2-amd64 is not configured yet.
dpkg: error processing linux-image-2.6-amd64 (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 linux-image-2.6.26-1-amd64
 linux-image-2.6.26-2-amd64
 linux-image-2.6-amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)


Solution provider for HealthCare

2014-06-18 Thread Simon
Hi,

Would you be interested in acquiring an Email List of Healthcare professionals 
Email Lists 2014 ?

Physicians, Healthcare Staffing , Pharmacies, Hospital & Clinics, 
Biotechnology, Medical Device manufacturers  and Nurses,Medical Billing 

Physicians:  Anesthesiology, Cardiology, Chiropractic, Dentist, Emergency 
Medicine, Family Practice, Gastroenterology, Gynecology, Hematology, Internal 
medicine, Neurology, Obstetrics/Gynecology, Oncology, Ophthalmology, Optometry, 
Orthopedic Surgery, Psychiatry, Psychologist, Radiologist etc

Let me know your Exact Target Audience that your trying to target , so that I 
can send you more information.

Looking forward to hear from you.

 Best Regards, 
 Simon Lee

 Marketing Manager

 Tel: 302-251-8219




To remove from this mailing: reply with subject line as "leave out."


Rsnapshot /var/run PID

2015-10-25 Thread Simon

Hi All,

Using Debian 8 and I'd like to run rsnapshot as a regular (non-root) 
user but it doesn't have permissions to drop the pid file in /var/run.


I created a directory called rsnapshot in /var/run with the appropriate 
permissions which, I thought, fixed the problem. Unfortunately, I now 
realise that the dir I created gets removed upon a reboot.


Could someone let me know the correct way create an application-specific 
directory in /var/run (if that is the right thing to do).


Thanks,

Simon



Re: Rsnapshot /var/run PID

2015-10-26 Thread Simon



-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, Oct 25, 2015 at 04:27:10PM +, Simon wrote:

Hi All,

Using Debian 8 and I'd like to run rsnapshot as a regular (non-root)
user but it doesn't have permissions to drop the pid file in
/var/run.

I created a directory called rsnapshot in /var/run with the
appropriate permissions which, I thought, fixed the problem.
Unfortunately, I now realise that the dir I created gets removed
upon a reboot.

Could someone let me know the correct way create an
application-specific directory in /var/run (if that is the right
thing to do).

It seems to be that since a while, all those /run, /var/run etc. are on
tmpfs anyway; the init machinery is supposed to set up the necessary
subdirectories [1] [2].

This doesn't help you in your case, I guess, because you want to run
rsnapshot "ad hoc". My gut feeling would be to set things up in a
well-known sub-directory of the user's home, on the theory that this
is the space the user controls.

Either just ~/.rsnapshot, or ~/.backup, or if you want to go the full
Freedesktop Monty, have a look at [3] (they specify /run/user for
that; there's no such thing in my system, but my system is somewhat
Freedesktop hostile by explicit choice, so that might be just a
consequence of that. Perhaps going the systemd way fixes that).

[1] https://wiki.debian.org/ReleaseGoals/RunDirectory#Policy
[2] https://www.debian.org/doc/debian-policy/ch-opersys.html#s-sysvinit
[3] http://www.freedesktop.org/software/systemd/man/file-hierarchy.html

Regards
- -- tomás
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlYt3kgACgkQBcgs9XrR2kaMtgCfSu74xjoNnwinPh8uxxKzUrZP
vM4An0D5qD0ZPs2X3jLCEf+SOeOf29oy
=FI7A
-END PGP SIGNATURE-

Thanks for the detailed answer, I went with putting the lock file in the 
users' home as that makes sense to me.


I guess when I have more time I'll look into doing it the systemd way 
(be good to learn more about it).


Thanks : )



Re: Continuing to use SysV; LTS [Re: Fwd: Re: Skipping fsck during boot with systemd?]

2014-12-31 Thread Simon
On 31 December 2014 18:10:00 GMT+00:00, Andrei POPESCU 
 wrote:
>On Mi, 31 dec 14, 09:45:53, Jerry Stuckle wrote:
>> 
>> I've never said anyone should be obliged to maintain Debian the way I
>> want.  I said the way they are going is not acceptable, so my clients
>> are changing distributions.  Period.
>
>I think the point some are trying to make is that Debian's direction
>can 
>be influenced[1], but this requires involvement. It might also be 
>cheaper in the long term than distro-hopping every time the
>distribution 
>in use takes an unwanted turn.
>
>Of course, this will not fare well with people that chose GNU/Linux 
>because of the wrong impression that it is without cost.
>
>[1] possibly even more so than other distributions, provided the
>desired 
>changes don't go against the Social Contract, etc.
>
>Kind regards,
>Andrei
>-- 
>http://wiki.debian.org/FAQsFromDebianUser
>Offtopic discussions among Debian users and developers:
>http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic
>http://nuvreauspam.ro/gpg-transition.txt

This is very interesting, I've always viewed Linux as 'the peoples' choice for 
an OS but watching these responses has made me think/realise that it's not 
really. Its development is driven by the biggest financial contributors - which 
will always be the corps. Due to it's open nature it is perhaps more 
susceptible to abuse/conflict in this area too. I guess I've been a little 
naive to that till this whole sysd thing.

-- 
Simon

Debian Sarge server frozen (em64t-p4-smp)

2006-04-04 Thread Simon
Hi There, We have a mail server (postfix>amavis>dbmail) running debian
sarge (2.6.8-9-em64t-p4-smp) running dual xeons with a tyan
motherboard and 3ware hardware raid5. Everything has been running fine
up to now, but in the last week it has frozen twice. Completly stuck
needing a hard reboot to restart (ctl-alt-del dosnt work). Here is a
screenshot of the stuck screen (no ping, nothing at this point):

http://gremin.orcon.net.nz/console.jpg

Would someone be able to take a look and give me a clue here?

Simon



Re: Debian Sarge server frozen (em64t-p4-smp)

2006-04-06 Thread Simon
On 4/6/06, listrcv <[EMAIL PROTECTED]> wrote:
> Simon wrote:
> > Hi There, We have a mail server (postfix>amavis>dbmail) running debian
> > sarge (2.6.8-9-em64t-p4-smp) running dual xeons with a tyan
> > motherboard and 3ware hardware raid5. Everything has been running fine
> > up to now, but in the last week it has frozen twice. Completly stuck
> > needing a hard reboot to restart (ctl-alt-del dosnt work). Here is a
> > screenshot of the stuck screen (no ping, nothing at this point):
> >
> > http://gremin.orcon.net.nz/console.jpg
> >
> > Would someone be able to take a look and give me a clue here?
>
> I would upgrade to the latest stable kernel, that'll probably solve it.

Thanks for the reply,

so that would mean going from kernel-image-2.6.8-9-em64t-p4-smp to
kernel-image-2.6.8-12-em64t-p4-smp? Is this correct given your comment
above?

Thanks

Simon



Multi server package management

2006-04-07 Thread Simon
Hi There, We are gathering quite a few debian servers now and have
just started testing a debian xen server, thus giving us more debian
servers :). Is there anything out there to manage the packages on all
these servers? (kind of like how redhat does it online). A nice
web-based tool would be good! I suppose i would want:

1stly: Central reporting for all servers (updates etc)
2ndly: A way to then apply those updates

With a bit of thought, i could get something up and running myself i
supose, but i just wondered if there is anything already before i do.

Simon



debootstrap'ing ubuntu from debian

2006-04-10 Thread Simon
Hi there,

Im trying to debootstrap ubuntu from debian (for a Xen domU)... how do
i go about this? Is it possible?

Simon



Stoping dpms power down mode

2006-04-27 Thread Simon

Hi There,

I have several headless debian servers that run sarge and do NOT have
X installed and just run the plain text console. How do i stop the OS
from powering down the monitor automatically after a few mins?

The reason i ask is that we have a remove KVM over IP that doesnt like
the video card kicking back in after it has been in dpms powerdown
mode.

Thanks

Simon



Strange top output

2006-03-14 Thread Simon
Hi There,

We are seeing a large spike in load average on our web server (from
0.xx to 10-15.xx) but there does not seem to be anything hogging the
CPUs or anything... Am i missing something here? What can i do to
check other issues.

Thanks

Simon



top - 15:33:25 up 5 days,  5:28,  1 user,  load average: 10.74, 10.23, 10.92
Tasks: 128 total,   1 running, 127 sleeping,   0 stopped,   0 zombie
Cpu(s): 26.2% us, 29.5% sy,  0.0% ni, 40.0% id,  4.0% wa,  0.0% hi,  0.3% si
Mem:   1036100k total,   943536k used,92564k free,45664k buffers
Swap:  1951888k total,89692k used,  1862196k free,   488912k cached

  PID USER  PR  NI  VIRT  RES  SHR S %CPU %MEMTIME+  COMMAND
15791 www-data  15   0 31540  14m  20m S  7.0  1.4   0:00.99 apache2
11568 www-data  16   0 34360  17m  20m S  2.0  1.7   0:02.08 apache2
15596 www-data  15   0 31196  14m  20m S  1.0  1.4   0:00.29 apache2
16655 www-data  15   0 32712  15m  20m S  0.3  1.6   1:00.64 apache2
12264 www-data  15   0 31824  14m  20m S  0.3  1.5   0:01.88 apache2
15599 www-data  15   0 31500  14m  20m S  0.3  1.4   0:00.54 apache2
16972 root  16   0  2064 1096 1852 R  0.3  0.1   0:00.19 top
1 root  16   0  1504  468 1352 S  0.0  0.0   0:02.40 init
2 root  RT   0 000 S  0.0  0.0   0:00.09 migration/0
3 root  34  19 000 S  0.0  0.0   0:00.00 ksoftirqd/0
4 root  RT   0 000 S  0.0  0.0   0:00.13 migration/1
5 root  34  19 000 S  0.0  0.0   0:00.00 ksoftirqd/1
6 root   5 -10 000 S  0.0  0.0   0:00.09 events/0
7 root   5 -10 000 S  0.0  0.0   0:02.21 events/1
8 root   5 -10 000 S  0.0  0.0   0:00.00 khelper
   23 root   5 -10 000 S  0.0  0.0   0:06.34 kblockd/0
   24 root   5 -10 000 S  0.0  0.0   0:00.71 kblockd/1
   50 root  15   0 000 S  0.0  0.0   1:32.96 kswapd0
   51 root   5 -10 000 S  0.0  0.0   0:00.00 aio/0



Multiple MySQL Instances (running as slaves for multiple masters)

2005-07-10 Thread Simon

Hi There,

I have my master/slave running between two boxes running sweet... I 
would now like to use the slave box as a slave for another master. After 
googling on this, it way todo it is run multiple instances of mysql on 
the slave box, each acting as slave for a seperate master.


Would someone be able to give me an example of running two or more 
instances of mysql nicly on debian?


All boxes are running sarge.

Ta

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Creating a ramdisk in debian sarge

2005-08-03 Thread Simon

Hi There,

Can someone please point me in a godd direction to create a ramdisk in 
debian sarge?


Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




IBM ServeRAID 7e and Sarge

2005-09-24 Thread Simon

Hi There,

I am looking to purchase a IBM xSeries 206 server. It comes with 2 x 
SATA 80 GB drives and IBM ServeRAID 7e. I have googled for this setup 
with debian sarge, but have not found much "It works" type messages


Has anyone got this going, and if so, would they be kind enough to 
detail how or point me to any good resources?


Thanks

Simon


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




lmsensors alarm....

2005-09-25 Thread Simon

Hi There,

We have a one of our servers producing a "sensord: Sensor alarm" in the 
syslog. Its a dual athlon box and here is the output of #sensors:


(Any idea of whats happening here? Im sure that there is no case sensor

web1:/proc# sensors
w83627hf-isa-0c00
Adapter: ISA adapter
VCore1:+1.70 V  (min =  +1.76 V, max =  +1.94 V)
VCore2:+1.71 V  (min =  +1.76 V, max =  +1.94 V)
+3.3 V:+3.22 V  (min =  +3.14 V, max =  +3.47 V)
 +12 V:   +11.90 V  (min = +13.21 V, max = +10.83 V)
 -12 V:   -12.61 V  (min = -13.18 V, max = -10.80 V)
CPU1 Fan: 4856 RPM  (min = 5273 RPM, div = 2)
CPU2 Fan: 5192 RPM  (min =   -1 RPM, div = 2)
VRM1 Temp:   +48 C  (high =+0 C, hyst =   +40 C)   sensor = transistor
AGP Temp:  +50.0 C  (high =   +80 C, hyst =   +75 C)   sensor = transistor
DDR Temp:  +39.0 C  (high =   +80 C, hyst =   +75 C)   sensor = transistor
alarms:   Chassis intrusion detection  ALARM
beep_enable:
  Sound alarm disabled

eeprom-i2c-0-54
Adapter: SMBus AMD756 adapter at 80e0
Unknown EEPROM type (255).

eeprom-i2c-0-51
Adapter: SMBus AMD756 adapter at 80e0
Memory type:DDR SDRAM DIMM
Memory size (MB):   512

eeprom-i2c-0-50
Adapter: SMBus AMD756 adapter at 80e0
Memory type:DDR SDRAM DIMM
Memory size (MB):   512

w83627hf-i2c-0-2c
Adapter: SMBus AMD756 adapter at 80e0
VCore1:+4.08 V  (min =  +4.08 V, max =  +4.08 V)
VCore2:+4.08 V  (min =  +4.08 V, max =  +4.08 V)
+3.3 V:+4.08 V  (min =  +4.08 V, max =  +4.08 V)
 +12 V:   +19.58 V  (min = +19.58 V, max = +19.58 V)   ALARM  (beep)
 -12 V:+6.06 V  (min =  +6.06 V, max =  +6.06 V)   ALARM  (beep)
CPU1 Fan:0 RPM  (min =0 RPM, div = 128)
CPU2 Fan:0 RPM  (min =0 RPM, div = 128)
VRM1 Temp:-1 C  (high =-1 C, hyst =-1 C)   sensor = transistor
AGP Temp:  +76.0 C  (high =   +80 C, hyst =   +75 C)   sensor = transistor
DDR Temp:  +77.0 C  (high =   +80 C, hyst =   +75 C)   sensor = 
transistor   ALARM   (beep)

alarms:   Chassis intrusion detection  ALARM
beep_enable:
  Sound alarm enabled





--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




new kernel, new problems

2003-02-18 Thread Simon Tod
Having installed kernel-image-2.4.20-686 and
kernel-pcmcia-modules-2.4.20-686 to rid myself of a
couple of problems I was having with my old kernel
(2.4.19), I've now picked up a couple of new problems.

1) A failure to get the pcmcia modem running - I
notice there is a pcmcia entry in /proc/devices under
the old kernel but not the new one. How can I track
down the relavent info in the old kernel that I can
use in the new one to the modem up again?

2) Reading /var/log/dmesg when booting under the new
kernel, it claims to detect a 700 MHz processor while
the old kernel gets it right at 1000 MHz. WTF?

Thanks in advance.
 

=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




RE: new kernel, new problems

2003-02-19 Thread Simon Tod
Thanks. Got the cpu speed bit solved.

Looking through the PCMCIA HowTo I've checked to see
that /etc/pcmica/config, /etc/default/pcmcia and
/etc/init.d/pcmica are the same under both kernels.

My new kernel is missing the line

serial_cs   4384   0  (unused)

from lsmod.

Under the kernel 2.4.20-686 the output of
/proc/devices is

Character devices:
  1 mem
  2 pty/m%d
  3 pty/s%d
  4 tts/%d
  5 cua/%d
  7 vcs
 10 misc
 13 input
 14 sound
 29 fb
128 ptm
136 pts/%d
162 raw

Block devices:
  1 ramdisk
  3 ide0

while under 2.4.19 it's

Character devices:
  1 mem
  2 pty
  3 ttyp
  4 ttyS
  5 cua
  7 vcs
 10 misc
 14 sound
 29 fb
108 ppp
128 ptm
136 pts
162 raw
180 usb
203 cpu/cpuid
226 drm
254 pcmcia

Block devices:
  2 fd
  3 ide0
  7 loop
 43 nbd

There seem to be a whole bunch of devices missing in
the new kernel.

An attempt to start serial_cs with modprobe illicited
the response

/lib/modules/2.4.20-686/kernel/drivers/pcmcia/ds.o:
insmod
/lib/modules/2.4.20-686/kernel/drivers/pcmcia/ds.o
failed
/lib/modules/2.4.20-686/kernel/drivers/pcmcia/ds.o:
insmod serial_cs failed
Hint: insmod errors can be caused by incorrect module
parameters, including invalid IO or IRQ parameters.
  You may find more information in syslog or the
output from dmesg

while insmod serial_cs gave me

Using
/lib/modules/2.4.20-686/kernel/drivers/char/pcmcia/serial_cs.o
/lib/modules/2.4.20-686/kernel/drivers/char/pcmcia/serial_cs.o:
unresolved symbol register_pccard_driver_R583d4ed2
/lib/modules/2.4.20-686/kernel/drivers/char/pcmcia/serial_cs.o:
unresolved symbol unregister_pccard_driver_Rdb348cd2

So now I'm stumped. Where do I go from here to get the
pcmcia modem up and running? 

 --- "Narins, Josh" <[EMAIL PROTECTED]> wrote: >
I have a 1000 Mhz that was originally recognized as
> 667Mhz
> 
> Look for these files
> 
> > /proc/cpufreq
> > /proc/sys/cpu/0/{speed|speed-min|speed-max}
> 
> if you have those, all you have to do is 
> 
> > cat /proc/sys/cpu/0/speed-max >
> /proc/sys/cpu/0/speed
> 
> check the results with 
> 
> > cat /proc/cpufreq
> 
> If you have multiple processors, you should find
> them under
> /proc/sys/cpu/[0-9]+
> 
> by the way, you can also cat speed, speed-min and
> speed-max
> 
> 
> 
> > -Original Message-
> > From: Simon Tod [mailto:[EMAIL PROTECTED]] 
> > Sent: Tuesday, February 18, 2003 3:16 PM
> > To: [EMAIL PROTECTED]
> > Subject: new kernel, new problems
> > 
> > 
> > Having installed kernel-image-2.4.20-686 and
> > kernel-pcmcia-modules-2.4.20-686 to rid myself of
> a
> > couple of problems I was having with my old kernel
> > (2.4.19), I've now picked up a couple of new
> problems.
> > 
> > 1) A failure to get the pcmcia modem running - I
> > notice there is a pcmcia entry in /proc/devices
> under
> > the old kernel but not the new one. How can I
> track
> > down the relavent info in the old kernel that I
> can
> > use in the new one to the modem up again?
> > 
> > 2) Reading /var/log/dmesg when booting under the
> new
> > kernel, it claims to detect a 700 MHz processor
> while
> > the old kernel gets it right at 1000 MHz. WTF?
> > 
> > Thanks in advance.
> >  
> > 
> > =
> > ---
> > Simon Tod
> > [EMAIL PROTECTED]
> > 
> > __
> > Do You Yahoo!?
> > Everything you'll ever need on one web page
> > from News and Sport to Email and Music Charts
> > http://uk.my.yahoo.com
> > 
> > 
> > -- 
> > To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> > with a subject of "unsubscribe". Trouble? Contact 
> > [EMAIL PROTECTED]
> > 
> > 
> 
>
--
> This message is intended only for the personal and
> confidential use of the designated recipient(s)
> named above.  If you are not the intended recipient
> of this message you are hereby notified that any
> review, dissemination, distribution or copying of
> this message is strictly prohibited.  This
> communication is for information purposes only and
> should not be regarded as an offer to sell or as a
> solicitation of an offer to buy any financial
> product, an official confirmation of any
> transaction, or as an official statement of Lehman
> Brothers.  Email transmission cannot be guaranteed
> to be secure or error-free.  Therefore, we do not
> represent that this information is complete or
> accurate and it should not be relied upon as such. 
> All information is subject to change without notice.
> 
>  

=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Re: new kernel, new problems

2003-02-25 Thread Simon Tod
Surely I don't need to do "make modules" and "make
modules_install" when I'm not compiling a kernel, just
installing a pre-built one 2.4.20-686 (and the
corresponding kernel-pcmcia-modules file)!? The output
of

~$ depmod
~$ modprobe -a \*

gives me the lengthy output in the attached file. How
does this help?


 --- Russell Shaw <[EMAIL PROTECTED]> wrote: >
Simon Tod wrote:
> 
> >Thanks. Got the cpu speed bit solved.
> >
> >Looking through the PCMCIA HowTo I've checked to
> see
> >that /etc/pcmica/config, /etc/default/pcmcia and
> >/etc/init.d/pcmica are the same under both kernels.
> >
> >My new kernel is missing the line
> >
> >serial_cs   4384   0  (unused)
> >
> >from lsmod.
> >  
> >
> 
> Try:
> depmod
> modprobe -a \*
> 
> If that fixes the problem, maybe you should add
> the missing modules to /etc/modules.
> Did you do "make modules", "make modules_install"
> when doing the kernel?
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]

______
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: new kernel, new problems

2003-02-25 Thread Simon Tod
Surely I don't need to do "make modules" and "make
modules_install" when I'm not compiling a kernel, just
installing a pre-built one 2.4.20-686 (and the
corresponding kernel-pcmcia-modules file)!? The output
of

~$ depmod
~$ modprobe -a \*

gives me the lengthy output in the attached file. How
does this help?


Opps. Forgot to attach the file last time :-0

 --- Russell Shaw <[EMAIL PROTECTED]> wrote: >
Simon Tod wrote:
> 
> >Thanks. Got the cpu speed bit solved.
> >
> >Looking through the PCMCIA HowTo I've checked to
> see
> >that /etc/pcmica/config, /etc/default/pcmcia and
> >/etc/init.d/pcmica are the same under both kernels.
> >
> >My new kernel is missing the line
> >
> >serial_cs   4384   0  (unused)
> >
> >from lsmod.
> >  
> >
> 
> Try:
> depmod
> modprobe -a \*
> 
> If that fixes the problem, maybe you should add
> the missing modules to /etc/modules.
> Did you do "make modules", "make modules_install"
> when doing the kernel?
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]

______
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.comWarning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
  See http://www.tux.org/lkml/#export-tainted for information about tainted modules
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod 
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o failed
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO 
or IRQ parameters.
  You may find more information in syslog or the output from dmesg
Warning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod 
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o failed
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO 
or IRQ parameters.
  You may find more information in syslog or the output from dmesg
Warning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod 
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o failed
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO 
or IRQ parameters.
  You may find more information in syslog or the output from dmesg
Warning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod 
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o failed
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO 
or IRQ parameters.
  You may find more information in syslog or the output from dmesg
Warning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod 
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o failed
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO 
or IRQ parameters.
  You may find more information in syslog or the output from dmesg
Warning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod 
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o failed
Hint: insmod errors can be caused by incorrect module parameters, including invalid IO 
or IRQ parameters.
  You may find more information in syslog or the output from dmesg
Warning: loading /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o will taint the 
kernel: no license
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: init_module: No such device
/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o: insmod

Re: new kernel, new problems

2003-02-25 Thread Simon Tod
So why can't modprobe find any of the modules - if
indeed that's the problem - cause they're certainly
where they're supposed to be.

Looking through the output of

~$ depmod
~$ modprobe -a \*

again suggests to me that it's some sort of dependency
or configuration problem... the same comment appears
again and again in the output

Hint: insmod errors can be caused by incorrect module
parameters, including invalid IO or IRQ parameters.

What's that all about?!


 --- Russell Shaw <[EMAIL PROTECTED]> wrote: >
Simon Tod wrote:
> > Surely I don't need to do "make modules" and "make
> > modules_install" when I'm not compiling a kernel,
> just
> > installing a pre-built one 2.4.20-686 (and the
> > corresponding kernel-pcmcia-modules file)!? The
> output
> > of
> > 
> > ~$ depmod
> > ~$ modprobe -a \*
> > 
> > gives me the lengthy output in the attached file.
> How
> > does this help?
> 
> Can you verify this module is actually here?:
> 
>   
> /lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: new kernel, new problems

2003-02-26 Thread Simon Tod
 --- Russell Shaw <[EMAIL PROTECTED]> wrote: >
Simon Tod wrote:
> > So why can't modprobe find any of the modules - if
> > indeed that's the problem - cause they're
> certainly
> > where they're supposed to be.
> > 
> > Looking through the output of
> > 
> > ~$ depmod
> > ~$ modprobe -a \*
> > 
> > again suggests to me that it's some sort of
> dependency
> > or configuration problem... the same comment
> appears
> > again and again in the output
> > 
> > Hint: insmod errors can be caused by incorrect
> module
> > parameters, including invalid IO or IRQ
> parameters.
> > 
> > What's that all about?!
> > 
> > 
> >  --- Russell Shaw <[EMAIL PROTECTED]> wrote: >
> > Simon Tod wrote:
> > 
> >>>Surely I don't need to do "make modules" and
> "make
> >>>modules_install" when I'm not compiling a kernel,
> >>
> >>just
> >>
> >>>installing a pre-built one 2.4.20-686 (and the
> >>>corresponding kernel-pcmcia-modules file)!? The
> >>
> >>output
> >>
> >>>of
> >>>
> >>>~$ depmod
> >>>~$ modprobe -a \*
> >>>
> >>>gives me the lengthy output in the attached file.
> >>
> >>How
> >>
> >>>does this help?
> >>
> >>Can you verify this module is actually here?:
> >>
> >>  
> >>/lib/modules/2.4.20-686/kernel/drivers/acpi/acpi.o
> 
> What does uname -a show?
> Don't top-post.
> 
> 


~$uname -a

Linux orient 2.4.20-686 #1 Mon Jan 13 22:22:30 EST
2003 i686 Pentium III (Coppermine) GenuineIntel
GNU/Linux

so there doesn't look like there's anything wrong with
that!?

> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: kweather dosent update data

2003-02-27 Thread Simon Schweizer
Re:
> hi,
> i have a short problem with my kweather-applet. since the update to kde3.1
> (i run sid and have installed the packages from official debianserver +
> kdenetwork from cheney) it doesent updates the information. either manualy
> or automaticly update does the work. have anyone the same problem or has
> anyone some hints to solve this problem?


Yes, I have the same problem...
wmweather works perfectly,
but the new kweather does not.

Greets,
Simon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



apt-src question

2003-03-05 Thread Simon Eilting
Hi,

hope this is the correct place to ask. Why is it, that when I install a 
package with apt-src, and do an apt-get -u upgrade after that, that the 
package is to be 'upgraded' to another package of the exact same 
version from the debian server? Isn't it only supposed to upgrade if 
the version number has changed? Or do I need to do something special 
after installing the from-source package? This happens with every 
package, I tried 9. I am using an up-to-date sid.
Thanks, Simon

--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: pinfo from testing or unstable.

2003-03-07 Thread Simon Law
On Fri, Mar 07, 2003 at 01:47:03AM +0200, Shaul Karl wrote:
>   Can people who run testing or unstable verify the following?
>   
>   I have a non harmful bug with pinfo on testing or unstable. More
> specifically, I can scroll past what was supposed to be the bottom of
> the top dir page and get a 2nd copy of that page. For example when I
> run pinfo and scroll towards the bottom of the page I can get the
> following:

less /usr/share/info/dir

Is it duplicated within?  If so, you may want to hand-hack it.

Simon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Pkzip - Pkunzip

2003-03-10 Thread Simon Law
On Thu, Feb 20, 2003 at 05:48:18PM -0300, Julio Diaz wrote:
> Can anyone recomend a good program to pkzip and pkunzip files in kde?

Use ark.  It ships with KDE.

Simon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: gnome2.2 backport mirror has changed

2003-03-14 Thread Simon Tod
 --- James Strandboge <[EMAIL PROTECTED]>
wrote: > The mirrors listed at DebianPlanet.org and
> gnomedesktop.org have now
> changed for the gnome2.2 backport for woody. 
> Instead, please use:
> 
> deb
>
http://ftp.acc.umu.se/mirror/mirrors.evilgeniuses.org.uk/debian/backports/woody
> gnome2.2/
> 
> deb-src
>
http://ftp.acc.umu.se/mirror/mirrors.evilgeniuses.org.uk/debian/backports/woody
> gnome2.2/
> 
>
> Thanks,
> 
> Jamie Strandboge
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  




Has anyone had any problems using this backport?

I was hoping to upgrade to this from the (unoffical)
gnome 2.0 backport; am currently using stable with a
few bits and pieces from testing and a few unoffical
backports.

I already appear to have xfree86 4.2.1 from testing or
one of the other unoffical backports so didn't need to
pull in the advertised backport; I'm guessing this is
*probably* where the problem's coming from...

Added the new lines and ran
apt-get update
apt-get install gnome-core gdm gtk2-engines*

The gtk2-engines complained with

Depends: libgtk2.0-0 (>= 2.2.1) but 2.0.9-1 is to be
installed
Depends: libpango1.0-0 (>= 1.2.1) but 1.0.5-3 is to be
installed

BUT, the new libgtk2.0-0 and libpango1.0-0 are
definately there... so adding them, and
libgtk2.0-common and libxft2 in which they in turn
depend to the apt-get install line I get the unmet
dependency

libxft2: Depends: xlibs (>= 4.2.0) but 4.1.0-16 is to
be installed

The relavent xlibs is not on the ftp site but there's
one in testing, so finally adding '-t testing xlibs'
to my apt-get install line ought to do the trick.

It seems to want to do an *awful lot* in the
process...

The following extra packages will be installed:
  bonobo-activation fontconfig gconf2 gnome-libs-data
gtk2-engines-cleanice gtk2-engines-crux
gtk2-engines-gorilla
  gtk2-engines-lighthouseblue
gtk2-engines-magicchicken gtk2-engines-metal
gtk2-engines-mist gtk2-engines-pixbuf
gtk2-engines-redmond95
  gtk2-engines-spherecrystal gtk2-engines-thinice
libatk1.0-0 libbonobo-activation4 libbonobo2-0
libbonoboui2-0 libdb3 libfontconfig1
  libfreetype6 libgail-common libgail17 libgconf11
libgconf2-4 libgdk-pixbuf-gnome2 libgdk-pixbuf2
libglib2.0-0 libglib2.0-data
  libglib2.0-dbg libglib2.0-dev libgnome-desktop-2
libgnome2-0 libgnomecanvas2-0 libgnomeui-0
libgnomeui32 libgnomevfs2-0
  libgnomevfs2-common libgtk2.0-0png3 liblinc1
libmetacity0 liborbit2 librsvg2-2 librsvg2-common
libwnck4 libxml2 libxslt1 nethack-common
  xbase-clients xfree86-common
The following packages will be REMOVED:
  ark gdm2 gnome gnome-applets gnome-control-center
gnome-desktop-data gnome-lokkit gnome-panel
gnome-panel-data kab karm kate kcalc
  kcharselect kchart kcoloredit kcron kde kdebase
kdebase-audiolibs kdebase-libs kdelibs3 kdelibs3-bin
kdepasswd kdepim-libs kdf kdict kdm
  kedit kfind kformula kfract kghostview khexedit
kiconedit kit kivio kjots kmail knewsticker knode
knotes koffice koffice-libs konqueror
  konsole kontour korganizer korn koshell kpackage
kpaint kpm kpresenter kruler kscreensaver ksirc
ksnapshot kspread ksysv ktimer kugar
  kuser kview kword libgtk-common libkdenetwork1
libkmid libkonq3 libpango-common sawfish-gnome
secpolicy system-tray-applet
The following NEW packages will be installed:
  fontconfig gdm gnome-core gtk2-engines-cleanice
gtk2-engines-crux gtk2-engines-gorilla
gtk2-engines-lighthouseblue
  gtk2-engines-magicchicken gtk2-engines-metal
gtk2-engines-mist gtk2-engines-pixbuf
gtk2-engines-redmond95 gtk2-engines-spherecrystal
  gtk2-engines-thinice libfontconfig1
libgnome-desktop-2 libgtk2.0-0png3 librsvg2-common
libxft2
40 packages upgraded, 19 newly installed, 73 to remove
and 366  not upgraded.
Need to get 17.6MB of archives. After unpacking 119MB
will be freed.
Do you want to continue? [Y/n] n
Abort.

That'll take a long time over a 56K modem (unmetered
access... phew!) and I'm quite happy with removing all
KDE... but is it actually going to work?!

Why do I need xlibs from testing when it hasn't been
mentioned in any dicussion of this backport (I think)
and might it be something to do with having the
*wrong* version of xfree86 4.2.1?

Thanks.

Simon.


=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: gnome2.2 backport mirror has changed

2003-03-16 Thread Simon Tod
 --- "Harley D. Eades III" <[EMAIL PROTECTED]> wrote: >
Simon Tod wrote:
> 
> > --- James Strandboge <[EMAIL PROTECTED]>
> >wrote: > The mirrors listed at DebianPlanet.org and
> >  
> >
> >>gnomedesktop.org have now
> >>changed for the gnome2.2 backport for woody. 
> >>Instead, please use:
> >>
> >>deb
> >>
> >>
> >>
>
>http://ftp.acc.umu.se/mirror/mirrors.evilgeniuses.org.uk/debian/backports/woody
> >  
> >
> >>gnome2.2/
> >>
> >>deb-src
> >>
> >>
> >>
>
>http://ftp.acc.umu.se/mirror/mirrors.evilgeniuses.org.uk/debian/backports/woody
> >  
> >
> >>gnome2.2/
> >>  
>  
> >>   
> >>Thanks,
> >>
> >>Jamie Strandboge
> >>
> >>
> >>-- 
> >>To UNSUBSCRIBE, email to
> >>[EMAIL PROTECTED] 
> >>with a subject of "unsubscribe". Trouble? Contact
> >>[EMAIL PROTECTED]
> >> 
> >>
> >>
> >
> >
> >
> >
> >Has anyone had any problems using this backport?
> >
> >I was hoping to upgrade to this from the
> (unoffical)
> >gnome 2.0 backport; am currently using stable with
> a
> >few bits and pieces from testing and a few
> unoffical
> >backports.
> >
> >I already appear to have xfree86 4.2.1 from testing
> or
> >one of the other unoffical backports so didn't need
> to
> >pull in the advertised backport; I'm guessing this
> is
> >*probably* where the problem's coming from...
> >
> >Added the new lines and ran
> >apt-get update
> >apt-get install gnome-core gdm gtk2-engines*
> >
> >The gtk2-engines complained with
> >
> >Depends: libgtk2.0-0 (>= 2.2.1) but 2.0.9-1 is to
> be
> >installed
> >Depends: libpango1.0-0 (>= 1.2.1) but 1.0.5-3 is to
> be
> >installed
> >
> >BUT, the new libgtk2.0-0 and libpango1.0-0 are
> >definately there... so adding them, and
> >libgtk2.0-common and libxft2 in which they in turn
> >depend to the apt-get install line I get the unmet
> >dependency
> >
> >libxft2: Depends: xlibs (>= 4.2.0) but 4.1.0-16 is
> to
> >be installed
> >
> >The relavent xlibs is not on the ftp site but
> there's
> >one in testing, so finally adding '-t testing
> xlibs'
> >to my apt-get install line ought to do the trick.
> >
> >It seems to want to do an *awful lot* in the
> >process...
> >
> >The following extra packages will be installed:
> >  bonobo-activation fontconfig gconf2
> gnome-libs-data
> >gtk2-engines-cleanice gtk2-engines-crux
> >gtk2-engines-gorilla
> >  gtk2-engines-lighthouseblue
> >gtk2-engines-magicchicken gtk2-engines-metal
> >gtk2-engines-mist gtk2-engines-pixbuf
> >gtk2-engines-redmond95
> >  gtk2-engines-spherecrystal gtk2-engines-thinice
> >libatk1.0-0 libbonobo-activation4 libbonobo2-0
> >libbonoboui2-0 libdb3 libfontconfig1
> >  libfreetype6 libgail-common libgail17 libgconf11
> >libgconf2-4 libgdk-pixbuf-gnome2 libgdk-pixbuf2
> >libglib2.0-0 libglib2.0-data
> >  libglib2.0-dbg libglib2.0-dev libgnome-desktop-2
> >libgnome2-0 libgnomecanvas2-0 libgnomeui-0
> >libgnomeui32 libgnomevfs2-0
> >  libgnomevfs2-common libgtk2.0-0png3 liblinc1
> >libmetacity0 liborbit2 librsvg2-2 librsvg2-common
> >libwnck4 libxml2 libxslt1 nethack-common
> >  xbase-clients xfree86-common
> >The following packages will be REMOVED:
> >  ark gdm2 gnome gnome-applets gnome-control-center
> >gnome-desktop-data gnome-lokkit gnome-panel
> >gnome-panel-data kab karm kate kcalc
> >  kcharselect kchart kcoloredit kcron kde kdebase
> >kdebase-audiolibs kdebase-libs kdelibs3
> kdelibs3-bin
> >kdepasswd kdepim-libs kdf kdict kdm
> >  kedit kfind kformula kfract kghostview khexedit
> >kiconedit kit kivio kjots kmail knewsticker knode
> >knotes koffice koffice-libs konqueror
> >  konsole kontour korganizer korn koshell kpackage
> >kpaint kpm kpresenter kruler kscreensaver ksirc
> >ksnapshot kspread ksysv ktimer kugar
> >  kuser kview kword libgtk-common libkdenetwork1
> >libkmid libkonq3 libpango-common sawfish-gnome
> >secpolicy system-tray-applet
> >The following NEW packages will be installed:
> >  fontconfig gdm gnome-core gtk2-engines-cleanice
> >gtk2-engines-crux gtk2-engines-gorilla
> >gtk2-engines

Re: gnome2.2 backport mirror has changed

2003-03-21 Thread Simon Tod
 --- James D Strandboge <[EMAIL PROTECTED]>
wrote: > On Fri, 2003-03-14 at 05:32, Simon Tod wrote:
> >  
> > Depends: libgtk2.0-0 (>= 2.2.1) but 2.0.9-1 is to
> be
> > installed
> > Depends: libpango1.0-0 (>= 1.2.1) but 1.0.5-3 is
> to be
> > installed
> > 
> > BUT, the new libgtk2.0-0 and libpango1.0-0 are
> > definately there... so adding them, and
> > libgtk2.0-common and libxft2 in which they in turn
> > depend to the apt-get install line I get the unmet
> > dependency
> > 
> Take the gnome2.0 lines out of sources.list. 
> 
> > libxft2: Depends: xlibs (>= 4.2.0) but 4.1.0-16 is
> to
> > be installed
> > That'll take a long time over a 56K modem
> (unmetered
> > access... phew!) and I'm quite happy with removing
> all
> > KDE... but is it actually going to work?!
> > 
> kde shouldn't be removed from official woody-- but
> maybe be from
> testing.  The backport is designed to work with
> woody I I do not have
> any testing boxes-- though others have reported
> success.
> 
> > Why do I need xlibs from testing when it hasn't
> been
> > mentioned in any dicussion of this backport (I
> think)
> > and might it be something to do with having the
> > *wrong* version of xfree86 4.2.1?
> You don't need xlibs from testing per se, you need
> xlibs >= 4.2.1 for
> libxft2 to work properly (which is required by
> gnome2.2).
> 
> Jamie Strandboge
> 

The gnome 2.0 lines are out of my sources.list!
Even forcing 'apt-get install xfree86-common' from
people.debian.org/~blade doesn't seem to do the trick;
there must be other dependency issues as to why
apt-get update && apt-get upgrade' wasn't sufficient
to pull in the new XFree86 once the
people.debian.org/~blade source had been added to my
list.
Any ideas?
'apt-get install gnome' doesn't work either as I get
the error message

  gnome: Depends: gnome-core (= 21) but it is not
going to be installed
 Depends: galeon or
  galeon-snapshot but it is not
installable
 Depends: gnome-games but it is not going to
be installed
E: Sorry, broken packages

Thanks.

> -- 
> Email:[EMAIL PROTECTED]
> GPG/PGP ID:   26384A3A
> Fingerprint:  D9FF DF4A 2D46 A353 A289  E8F5 AA75
> DCBE 2638 4A3A
> 
>  

=
---
Simon Tod
[EMAIL PROTECTED]

__
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Disable mozilla plugins selectively

2003-03-25 Thread Simon Piette
Hi,

http://www.privoxy.org/ is a good solution. It's the following of
junkbuster. You can disable a plugin by default, and you can re-enable
them site by site. Since it will change the HTML code embedding the
flash file, so more messages about a missing plugin. Also, I think more recent
versions of mozilla have a switch for that, and maybe some prefs.js
editing could do it on 1.0. 

Simon

* Dave Sherohman ([EMAIL PROTECTED]) [030321 17:42]:
> On Fri, Mar 21, 2003 at 10:57:19PM +0100, Torquil Macdonald wrote:
> > Does anybody know how I can, without having root privileges, selectively 
> > disable mozilla plugins that are installed system-wide. It would be very nice 
> > to disable the Flash plug-in.
> 
> And, on a related note, once Flash is disabled, is there a way to
> prevent Mozilla from throwing up a "do you want to download the
> appropriate plugin?" dialog every time you load a page that uses
> Flash?
> 
> -- 
> The freedoms that we enjoy presently are the most important victories of the
> White Hats over the past several millennia, and it is vitally important that
> we don't give them up now, only because we are frightened.
>   - Eolake Stobblehouse (http://stobblehouse.com/text/battle.html)
> 
> 
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

-- 
GnuPG/PGP: 4191 7248 B2E0 C612 F7D2  4ECC 2E6E 40D4 0AFF CA06


pgp0.pgp
Description: PGP signature


Upgrading kernel

2003-10-15 Thread Simon Windsor



Hi
 
I have just upgraded my kernel from 2.2.20-idepci 
to 2.4.18-k7 and all appears ok apart from networking.
 
The server has a RealTek 18139 card that works fine 
for 2.2, using rt18139. There is no equivalent module for the 2.4.18-k7 kernel, 
and attempts to try 3x59x, ne2k-pci fail miserably.
 
Any ideas on how I get the network to function 
under 2.4?
 
Simon
 
 
Simon WindsorEmail: [EMAIL PROTECTED]Tel: 
01454 617689Mob: 07720 447385-- 
This message has been scanned for viruses and
dangerous content by
MailScanner, and is
believed to be clean.
Mailscanner thanks transtec Computers for their support.



Re: Upgrading kernel

2003-10-15 Thread Simon Windsor
Hi

The results from lspci are

00:00.0 Host bridge: VIA Technologies, Inc.: Unknown device 3116
00:01.0 PCI bridge: VIA Technologies, Inc. VT8633 [Apollo Pro266 AGP]
00:11.0 ISA bridge: VIA Technologies, Inc.: Unknown device 3147
00:11.1 IDE interface: VIA Technologies, Inc. Bus Master IDE (rev 06)
00:11.2 USB Controller: VIA Technologies, Inc. UHCI USB (rev 23)
00:11.3 USB Controller: VIA Technologies, Inc. UHCI USB (rev 23)
00:11.5 Multimedia audio controller: VIA Technologies, Inc. AC97 Audio
Controller (rev 40)
00:13.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139 (rev
10)
01:00.0 VGA compatible controller: S3 Inc.: Unknown device 8d04


- Original Message - 
From: "Rus Foster" <[EMAIL PROTECTED]>
To: "Simon Windsor" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Wednesday, October 15, 2003 11:36 PM
Subject: Re: Upgrading kernel


> On Wed, 15 Oct 2003, Simon Windsor wrote:
>
> > Hi
> >
> > I have just upgraded my kernel from 2.2.20-idepci to 2.4.18-k7 and all
appears ok apart from networking.
> >
> > The server has a RealTek 18139 card that works fine for 2.2, using
rt18139. There is no equivalent module for the 2.4.18-k7 kernel, and
attempts to try 3x59x, ne2k-pci fail miserably.
> >
> > Any ideas on how I get the network to function under 2.4?
> >
> > Simon
> >
> >
>
> Hi,
> Could you past lspci here for us to see please?
>
> Rgds
>
> Rus Foster
> -- 
> w: http://www.jvps.com  | Virtual Dedicated Servers from $15/mo
> e: [EMAIL PROTECTED]| Dontations made to Debian, FreeBSD
> t: +44 7919 373537 | and Slackware
> t: 1-888-327-6330 | email: [EMAIL PROTECTED]
>
>
>
> -- 
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact
[EMAIL PROTECTED]
>
>
> -- 
> This message has been scanned for viruses and
> dangerous content by MailScanner, and is
> believed to be clean.
> Mailscanner thanks transtec Computers for their support.
>
>



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
Mailscanner thanks transtec Computers for their support.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Upgrading kernel

2003-10-15 Thread Simon Windsor
Hi

Thanks to all who helped, networking is working, all I had to do was add
8139too to /etc/modules.

Many thanks,

Simon



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
Mailscanner thanks transtec Computers for their support.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Network setup

2003-10-18 Thread Simon Windsor



Hi
 
I have relocated a server from within a firewalled 
environment on a 192.168.0 network, to an external network.
 
Unfortunately, I cannot get the the server to talk 
to the network now.
 
I have edit
 
/etc/network/interface
/etc/networks
/etc/hosts
 
I have stopped and started the network, and checked 
the settings against another debian server outside the firewall, and still no 
joy.
 
FTP, ssh and ping all report
 
No route to host.
 
Any ideas ?
 
Many thanks
 
Simon WindsorEmail: [EMAIL PROTECTED]Tel: 
01454 617689Mob: 07720 447385-- 
This message has been scanned for viruses and
dangerous content by
MailScanner, and is
believed to be clean.
Mailscanner thanks transtec Computers for their support.



Re: Network setup

2003-10-18 Thread Simon Windsor
Hi

Many thanks for all the advice. The cause of the problem was a typing 
error, writng 82 as 83. I  only spotted this when a preparing a reply.

Many thanks

Simon

Monique Y. Herman wrote:

On Sat, 18 Oct 2003 at 20:42 GMT, Simon Windsor penned:
 

This is a multi-part message in MIME format.

--=_NextPart_000_00CF_01C395C0.BFEE97D0 Content-Type: text/plain;
charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hi

I have relocated a server from within a firewalled environment on a
192.168= .0 network, to an external network.
Unfortunately, I cannot get the the server to talk to the network now.

I have edit

/etc/network/interface /etc/networks /etc/hosts

I have stopped and started the network, and checked the settings
against an= other debian server outside the firewall, and still no
joy.
FTP, ssh and ping all report

No route to host.

Any ideas ?

   

Could you show the relevant lines of the files you edited, as well as
the commands that you used to stop and start network services?
Did you run ftp, ssh and ping *from* the server to somewhere else, or
from somewhere else *to* the server?
Have you tried using the IP address instead of the machine name?

 



--
Simon Windsor
Email: [EMAIL PROTECTED]
Tel:   01454 617689
Mob:   07720 447385


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.
Mailscanner thanks transtec Computers for their support.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: gnome 2.4 and sawfish weirdness

2003-10-19 Thread Simon Green
Me too. I usually use Meta-Left and Meta-Right to shift workspaces, so
it's not to much of a problem. I noticed that if I click at the very top
left of the left workspace the windows go back to normal. It's a bit
annoying though.

  -- simon

On Mon, 2003-10-20 at 09:07, Ryan Nowakowski wrote:
> I'm tracking unstable.  After today's update/upgrade, gnome went to 2.4.
> Now when I switch workspaces my windows shift randomly within each
> workspace.  I'm using sawfish as my window manager.  Is anyone else
> experiencing the same problem?  Any solutions?
> 
> - Ryan


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: way-OT: regularity of german v. english [was: Re: OT - Programming Languages w/o English Syntax]

2003-10-20 Thread Christoph Simon
On Mon, 20 Oct 2003 00:56:37 -0700
Erik Steffl <[EMAIL PROTECTED]> wrote:

> csj wrote:
> > On Sun, 19 Oct 2003 12:38:45 -0700,
> > Erik Steffl wrote:
> > 
> > [...]
> > 
> > 
> >>   think about it: when learning english the only challenge is
> >>to learn how to pronounce words (and learn irregular
> >>verbs). you built vocabulary by learning words, where you
> >>pretty much only need to remember the word itself (in its basic
> >>form). while when learning german... I don't even want to think
> >>about it.
> > 
> > 
> > Because everybody from the poor war orphan "Hey, Joe, eat!" to
> > the UN Secretary General speaks it, English has become a rather
> > tolerant language.  But if the same standard for proper German is
> > applied to what one considers proper English, then yes, German is
> > easier to learn.  It's a purer, therefore more consistent
> > language, than the French-infected English.
> 
>purity has nothing to do with it (not sure what you mean by pure). 
> not sure what your agenda is. english is a a lot simpler than german, 
> the usage of words is simple, the grammar is simple.

Sorry to drop in at this point, I didn't see the beginning of the
thread.

A simple gramar doesn't mean it's simple to learn. English grammar can
be simplified all the way down to say that there is no grammar, when
accepting tons of `exceptions'. Or, it can be considered extremely
complex, for instance if pronounciation rules should be applied
mechanically. English is easy to start to learn, but the further the
student progresses, the more difficult it gets. The positional grammar
actually allows to form some working english sentences very quickly,
which is not that possible in German, where you are confronted quite
soon with declinations and a twisted sentence structure. On a more
advanced level, it's hard to improve in English, because of so many
exceptions, phrases and overloaded meanings, while german becomes
predictable, being able to deduce the meaning of something new, or
even forming new words by composition which are understood by the
native speaker. What makes german really difficult specially for the
beginner are the teaching methods which are based on the same
principles as for teaching english: The student learns sentences as if
german also had a positional grammar, without any linguistic
understanding. This might appear to be more fun as it allows to say
something already after the first lesson, but it just delays the
solution of the initial problem. Even worse, german education has
dropped so much during the last 2 decades, that many natives have
severe difficulties in choosing the right tense or declination. On the
other hand, an interested student can master most of german grammar
within 6 to 12 months, from where on german actually becomes a
language which is really very easy do deal with.

-- 
Christoph Simon
[EMAIL PROTECTED]
---
^X^C
q
quit
:q
^C
end
x
exit
ZZ
^D
?
help
.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



resize swap partition `in situ`, using parted

2003-10-23 Thread Simon Tod
In an attempt to redistribute disk space I'm trying to
shrink the size of my swap space.

Qtparted refuses to do the job as it's in use and the
version on my Knoppix CD doesn't appear to work. The
parted boot disk is currently unavailable from the GNU
website, so my only option at the moment appears to be
using parted on the fly. *However* parted warns me
that the partition is in use and modification could
cause severe corruption. Can I ignore this warning?
(running version 1.6.6-1 on sid).

As an aside, parted uses MB while fdisk uses
cylinders. How do I convert between the two?

Thanks!

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Unidentified subject!

2003-10-28 Thread Simon Tod
After a hdd install from knoppix 3.2 I tried to
dist-upgrade to Debian unstable. It all seems to work
fine but my debian_version is still reported as
testing/unstable. I've tracked this down to the fact
that a number of packages from the hdd install are not
at the latest versions available in unstable but are
unoffical versions with different dependencies. The
most significant being sysvinit. 

If I try 'apt-get install sysvinit', I'm told I have
the latest version installed. Not true. The knoppix
version is 2.84 something or other, whereas 2.85 is
available in unstable. 

If I try 'apt-get --reinstall install sysvinit', I'm
told the packages is not available for download. 

This is a common problem when trying to replace a
package from an unofficial source with an official
one. My usual trick is just to remove the offending
package, then reinstall from an official source. 

HOWEVER, sysvinit is a rather crucial package (I
think!?) and I'm a little concerned that removing it -
even if only to replace it with a different version
shortly afterwards - may be dangerous. 

Any suggestions as to whether or not this may be a
safe thing to do or what alternative approach I could
take would be much appreciated... 

Thanks!

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



failing to upgrade sysvinit from Knoppix version

2003-10-28 Thread Simon Tod
Opps. Thought I re-send this with a subject line!

After a hdd install from knoppix 3.2 I tried to
dist-upgrade to Debian unstable. It all seems to work
fine but my debian_version is still reported as
testing/unstable. I've tracked this down to the fact
that a number of packages from the hdd install are not
at the latest versions available in unstable but are
unoffical versions with different dependencies. The
most significant being sysvinit. 

If I try 'apt-get install sysvinit', I'm told I have
the latest version installed. Not true. The knoppix
version is 2.84 something or other, whereas 2.85 is
available in unstable. 

If I try 'apt-get --reinstall install sysvinit', I'm
told the packages is not available for download. 

This is a common problem when trying to replace a
package from an unofficial source with an official
one. My usual trick is just to remove the offending
package, then reinstall from an official source. 

HOWEVER, sysvinit is a rather crucial package (I
think!?) and I'm a little concerned that removing it -
even if only to replace it with a different version
shortly afterwards - may be dangerous. 

Any suggestions as to whether or not this may be a
safe thing to do or what alternative approach I could
take would be much appreciated... 

Thanks!


=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Spamassassin+evolution

2003-10-29 Thread Simon Green
On Wed, 2003-10-29 at 09:46, [EMAIL PROTECTED] wrote:
> I mentioned something a few days ago. You need to redirect your mail flow.
> normally you mail does this:
> pop3 server -> evo
> if you want to use spamasssin you need to make evo read mail from your
> local mail box.
> pop3 -> fetchmail -> /var/spool/user -> sendmail ->  procmail ->
> /home/user/mbox
> Not sure where to insert spam assin as I dont use it. But the idea is that
> evo would read from /home/user/mbox not directly from pop3 server.

A better way for Evolution users is to set up a filter, as discribed in
this URL:

http://support.ximian.com/cgi-bin/ximian.cfg/php/enduser/std_adp.php?p_sid=io8Wc_Wg&p_lva=&p_faqid=329&p_created=1039628948&p_sp=cF9ncmlkc29ydD0mcF9yb3dfY250PTEmcF9zZWFyY2hfdGV4dD1zcGFtJnBfc2VhcmNoX3R5cGU9NCZwX3Byb2RfbHZsMT0yJnBfcHJvZF9sdmwyPX5hbnl_JnBfY2F0X2x2bDE9fmFueX4mcF9zb3J0X2J5PWRmbHQmcF9wYWdlPTE*&p_li=

Works well for me.

  -- simon



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: failing to upgrade sysvinit from Knoppix version

2003-10-29 Thread Simon Tod
 --- David Z Maze <[EMAIL PROTECTED]> wrote: > Simon
Tod <[EMAIL PROTECTED]> writes:
> 
> > After a hdd install from knoppix 3.2 I tried to
> dist-upgrade to
> > Debian unstable. It all seems to work fine but my
> debian_version is
> > still reported as testing/unstable.
> 
> Isn't that what it's supposed to be?  That's
> certainly what it is on
> this sid machine.
> 
> > I've tracked this down to the fact that a number
> of packages from
> > the hdd install are not at the latest versions
> available in unstable
> > but are unoffical versions with different
> dependencies. The most
> > significant being sysvinit.
> >
> > If I try 'apt-get install sysvinit', I'm told I
> have the latest
> > version installed. Not true. The knoppix version
> is 2.84 something
> > or other, whereas 2.85 is available in unstable.
> 
> Knowing what exactly the version is might be
> helpful.  If the Knoppix
> people have added an epoch to their version number,
> APT would be
> entirely correct in concluding that 1:2.84-mumble is
> newer than
> 2.85-7.  You might also check that your APT
> sources.list is correct,
> and that you haven't set up funny APT pinning rules.
> 

There's nothing wrong with my sources.list, it points
to sid only. I'm not using any apt pinning rules.

The problem is, as you guessed, the epoch number.
Version 2:2.84-161.

So, any ideas? How do I "downgrade" to the more up to
date version in sid?

Thanks.


> ObAreYouSureYouWantToRunUnstable: booting the laptop
> was, um, fun this
> morning, because I didn't have an /sbin/modprobe. 
> Funky interactions
> between modutils and module-init-tools I haven't
> finished tracking
> down yet.  Nothing in the BTS looks obvious, though.
> 
> -- 
> David Maze [EMAIL PROTECTED] 
> http://people.debian.org/~dmaze/
> "Theoretical politics is interesting.  Politicking
> should be illegal."
>   -- Abra Mitchell
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: What's the best package manager for single-package upgrades?

2003-11-04 Thread Simon Tod
 --- Joe Rhett <[EMAIL PROTECTED]> wrote: > Okay, this
is probably a bonehead user question but
> I'm just getting used
> to Debian.  Not normally a bonehead :-(
> 
> I would like/prefer to run 'stable'.  Debian/Woody
> installed on my laptop
> perfectly fine.  Wireless/WEP, IPsec, X all up and
> running SWEET.
> 
> Unfortunately, the stable browser is 'zilla 1.0 :-(
> 
> I would like to run a modern Mozilla, without
> updating the whole universe
> if possible.  I've done the documented steps for
> accessing unstable
> (testing doesn't have anything newer) and rerun
> apt-get update and it sees
> the packages just fine.  But when I try to upgrade
> mozilla it wants to
> install 293 packages ... uh, no.
> 
> The man page indicates that apt-get upgrade doesn't
> handle single package
> upgrades -- to use dselect.  Well dselect gets way
> way lost inside a tree I
> can't find my way out of.  I spent an hour trying to
> make dselect happy,
> and I'm still lost.
> 
> So finally I just went to the package directly using
> mozilla.  It tells me
> of the dependancies, but allows me to download
> directly.  But then kpackage
> barfs because it wants all the dependancies.
> 
> Am I really supposed to spend all night long
> manually downloading all the
> dependancies?  Ugh.
> 
> So I am writing here in hopes I'm overlooking
> something.  Please, tell me
> how one can update just one package and its
> dependancies, without doing a
> full-on conversion from Woody to unstable?  If a
> single package forces one
> to upgrade completely to unstable branch, then the
> entire purpose of the
> trees appears to be a moot point.
> 
> Now -- skip the download and compile yourself.  No
> fun.  And skip the
> 'download the 'zilla net installer and use that' --
> because I already have.
> But I want to know how to solve this problem and
> stay within the Debian
> framework.
> 

Joe,

If you want to upgrade just Mozilla in Woody rather
than the whole host of things that Sid suggests you're
going need to look at backports, take a look at
www.apt-get.org but beware that using a range of
backported products together can seriously mess your
system up...

If you think you might want to upgrade other packages
in the future - and why not, Woody is *old* and most
people happily run Sid on their desktops - you should
look at dist-upgrading to Sid

HTH.

> -- 
> Joe Rhett   
>   Chief Geek
> [EMAIL PROTECTED]
>  Isite Services, Inc.
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: something wrong with kernel source 2.4.22?

2003-11-11 Thread Simon Tod
 --- mbc <[EMAIL PROTECTED]> wrote: > * Please reply to
me as I'm not on this list *
> 
> Hi. So, I'm trying to build a kernel so that I can
> compile some modules 
> I need for my wireless card to work. I want to
> disable modversions in my
> kernel so that the madwifi modules and the bcm4400
> module won't complain
> about unresolved symbols just because of name
> mangling. 
> 
> I've encountered major problems trying to build a
> kernel with the 
> 2.4.22-3 source.
> 
> First, I tried copying /boot/config-2.4.22-1-686 to 
> /usr/src/linux/.config then doing make mrproper &&
> make oldconfig && 
> make dep && make bzImage && make install && make
> modules && make 
> modules_install. After doing this, and updating lilo
> and rebooting, the 
> boot fails saying that it can't open
> /lib/modules/2.4.22/modules.dep. I 
> checked, and that file is both present and up to
> date.
> 
> Second, I tried copying the config to /usr/src/linux
> again, and using 
> kernel package, so I did make-kpkg clean and then
> make-kpkg 
> --revision=mbc2.4.22 kernel_image. The resulting
> kernel package only 
> contained the modules and the documentation, but no
> bzImage.
> 
> Am I totally missing something here or is the recent
> source package just 
> broken?
> 
> Any help would be greatly appreciated, as I've been
> trying to do this 
> for 3 days now so that I can install debian on my
> laptop. Without 
> network access, thats rather hard. I've built
> kernels before. I even 
> built the lindows kernel debian packages. But right
> now I'm having a 
> hard time .
> 
> Thank You,
> 
>  michael
> 
> 

There are no problems with the kernel source; I've had
no problems upgrading a kernel from 2.4.18 to 2.4.22

Once you've linked the source dir to the dir linux run
'make-kpkg clean' in /usr/src/linux, copy the old
config to /usr/src/linux/.config, run 'make oldconfig'
then 'make-kpkg --append-to-version=.my_kernel
kernel_image'.

You might want to look at using 'make xconfig' to get
pop up a GUI to help with the configuration, though
the benefit 'make oldconfig' is that it only troubles
you with the new options.

Hope this helps.

> 
> 
> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Trouble with Alsa 0.9.6-5, 2.4.22 AC97 audio and /dev/mixer under Gnome 2.4.0-1

2003-11-11 Thread Simon Tod
 --- Ron Johnson <[EMAIL PROTECTED]> wrote: > On
Tue, 2003-11-11 at 04:12, Kjetil Kjernsmo wrote:
> > On Tuesday 11 November 2003 08:00, Ron Johnson
> wrote:
> > > Guess not.  I don't see them anywhere in the
> menuconfig hierarchy.
> > 
> > How did you install it...?
> > 
> > I've followed this HOWTO with great success on my
> main workstation:
> > http://newbiedoc.sourceforge.net/system/
> > kernel-pkg.html#ADD-THIRDPARTY-KERNEL-PKG
> > 
> > I don't remember quite, but I think I did it on
> ma's laptop with AC97 
> > too.
> 
> # apt-get -u install kernel-source-2.4.22
> # cd /usr/src
> # tar xvfj kernel-source-2.4.22.tar.bz2
> # ln -sf  
> 
> Hey, look what's in /usr/src!!!  Never noticed
> that
> 
> alsa-driver.tar.bz2
> 
> I guess I'll have to take a look at that.
> 
> Un-tar it right under /usr/src ?
> 
> -- 
>
-
> Ron Johnson, Jr. [EMAIL PROTECTED]
> Jefferson, LA USA
> 
> The difference between Rock&Roll and Country Music?
> Old Rockers still on tour are pathetic, but old
> Country singers
> are still great.
> 

Yep, that'll do fine. It'll create the dir
/usr/src/modules if it doesn't already exist and stick
the source code in it, so that make-kpkg module_image
knows where to look.

> 
> -- 
> To UNSUBSCRIBE, email to
> [EMAIL PROTECTED] 
> with a subject of "unsubscribe". Trouble? Contact
> [EMAIL PROTECTED]
>  

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



dpkg error

2003-11-13 Thread Simon Tod
Hi.
I was in the process of purging a package when I
accidently killed the process.

Now, when I try 'apt-get --purge remove ftape-util' I
get the error

dpkg: error processing ftape-util (--purge):
 Package is in a very bad inconsistent state - you
should
 reinstall it before attempting a removal.
Errors were encountered while processing:
 ftape-util
E: Sub-process /usr/bin/dpkg returned an error code
(1)

So, I try 'apt-get --reinstall install ftape-util',
but get the error

Preparing to replace ftape-util 1:1.09.2002.03.21-0.1
(using
.../ftape-util_1%3a1.09.2002.03.21-0.3_i386.deb) ...
Unpacking replacement ftape-util ...
cat: alsa: No such file or directory
dpkg: warning - old post-removal script returned error
exit status 1
dpkg - trying script from the new package instead ...
cat: alsa: No such file or directory
dpkg: error processing
/var/cache/apt/archives/ftape-util_1%3a1.09.2002.03.21-0.3_i386.deb
(--unpack):
 subprocess new post-removal script returned error
exit status 1
cat: alsa: No such file or directory
dpkg: error while cleaning up:
 subprocess post-removal script returned error exit
status 1
Errors were encountered while processing:

/var/cache/apt/archives/ftape-util_1%3a1.09.2002.03.21-0.3_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code
(1)

How do I fix this??
Thanks.

=
---
Simon Tod
[EMAIL PROTECTED]


Want to chat instantly with your online friends?  Get the FREE Yahoo!
Messenger http://mail.messenger.yahoo.co.uk


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



  1   2   3   4   5   6   7   8   9   10   >