Re: NORMAL_ATTACK and HAVY_ATTACK messages
On Thu, May 14, 1998 at 01:42:14PM +0300, Dan Pomohaci wrote: >Wich program send e-mail with this warnings in Subject field: >NORMAL_ATTACK from sandwich.math.unibuc.ro - target gw1.usab.ro >or >HEAVY_ATTACK from sandwich.math.unibuc.ro - target gw1.usab.ro >and how can I get more information about this attack? > >On my server is a standard bo Debian distribution installed. it's courtney! if you do a 'ps ax' you should see her running. m* -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to enable pop3?
On Tue, Jun 30, 1998 at 10:45:35PM +0200, Frank Jonischkies wrote: > > >On Mon, 29 Jun 1998, Stef Hoesli Wiederwald wrote: > >> How can I enable pop3 support in Debian 1.3.1? >> I added a line saying: >> pop-3stream tcp nowait root/usr/sbin/tcpd in.pop3d >> to /etc/inetd.conf (copied that from Slackware), but in.pop3d seems >> not to exist in Debian (checked the Contents-i386 file) >> >Hi Stef > >I use qpoper, installed with dselect. The configuration will automatically >add a line in inetd.conf. Stef, don't forget your to create a /etc/popper.allow or /etc/popper.deny file for yourself or your users. see /usr/doc/qpopper/qpopper.doc for details. thx, m* -- Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
Re: Please help with IP Aliasing
On Thu, Jul 02, 1998 at 11:53:32AM +1000, Craig Sanders wrote: >firstly, replace all those ifconfig & route commands with something like >this: > >i=1 >while [ $i -le 254 ] ; do > ifconfig eth0:$i XXX.231.206.$i netmask 255.255.255.0 > route add -host XXX.231.206.$i eth0:$i > $i=$(( $i + 1 )) >done > >i=1 >for j in $( grep -v "^$\|^#" /etc/virtual-hosts | awk '{print $1}' ) ; do > ifconfig eth0:$i $j netmask 255.255.255.0 > route add -host $j eth0:$i > $i=$(( $i + 1 )) >done > >alternatively, stick another ethernet card in the machine and start using >eth1:0 - eth1:255 aliases.the limit is per interface. andy, as noted in the last line, the first virtual device number should start with zero, eth0:0, so if you use one of the cool scripts above remember that! ( this is noted in the NET3 HOWTO ) furthermore, while i'll admit i don't use 'make' to manage my virtual hosts on my web server ( yet :P ) it is relatively easy to set up a Makefile as craig has suggested and that would most certainly be the "elegant" way to help you manage your 200+ virtual hosts. good luck! m* -- Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
Re: killall
On Mon, Jul 13, 1998 at 10:06:29AM -0700, Alexander wrote: >Hi... > >I just downloaded (well, am downloading...) the debian 2.0 beta (hamm) >release and noticed that my killall command is gone. I dug it up out of an >old procps package, but why was it deleted? Can I expect it back? It's an >excellent admin tool as well as program (respawn loop...) control tool, >and is absolutely invaluable to me. killall is now part of the psmisc package in hamm's base section. m* -- Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
mountd exploit info ( from [linux-security] The poisoned NUL byte] )
some of you may have seen this already. this post is for those of you that haven't and have concerns regarding the exploit. thx, m* -- Horseman of the Digital Apocolypse --- Begin Message --- Summary: you can exploit a single-byte buffer overrun to gain root privs. When, half a day after releasing version 2.2beta37 of the Linux nfs server, I received a message from Larry Doolittle telling me that it was still vulnerable to the root exploit posted to bugtraq, I was ready to quit hacking and start as a carpenter... Tempting as that was, I didn't, and started looking for the bug instead. It turned out that an ancient version of libc was at fault (libc-5.3.x), which has a buffer overrun in realpath(). So, to make sure your mountd is safe, upgrade your libc to a recent version. As far as I can tell, this particular overrun was fixed in libc-4.4 (but see below). The interesting thing about this overrun is that it was by just a single byte. And yes, it not just crashed the process, it provided a root shell. It took me a while to figure out, but what it boils down to is this: At the beginning of the function, realpath copies the argument (1024 bytes) To a local buffer (sized MAXPATHLEN, i.e. 1024 bytes). Thus, the terminating 0 byte of the string gets scribbled over the next byte, which happens to be the lowest byte of %ebp, the frame pointer of the calling function. At function entry, its value was 0xb3ec. After the strcpy, it becomes 0xb300. During the remainder of realpath(), nothing exciting happens, but when the function returns, %ebp is restored from stack, which effectively shifts down the calling function's stack frame by 0xec bytes. The calling function now does a few things with local data, dereferences some pointers (by sheer dumb luck these pointers contain random but valid addresses), and returns, restoring the %esp and %ebp registers from stack. With the stack having shifted down 0xec bytes, it picks up the return address from the local buffer containing the exploit code... As a side note, the buffer overrun could be modified easily to work on systems using non-execute stacks, because the RPC arguments are decoded into a static buffer. Making the exploit point the fake return address at the static buffer instead of the stack easily defeats the no-exec stack. Also note that even the most recent libc5 contains another buffer overrun in realpath. It is not deadly to mountd unless you start it from a directory whose path name is longer than 40-something bytes. A patch to libc is appended, and I will release an nfs-server update that checks for this bug and replaces the faulty realpath function soon. Cheers Olaf -- Concerning the buffer overflow in realpath: The appended patch illustrates the problem. To trigger the overflow, try void main(void) /* hullo Dan Popp:-) */ { charbuffer[1024], result[1024]; memset(buffer, 'A', 1021); buffer[1021] = '\0'; chdir("/tmp"); realpath(buffer, result); printf("length = %d\n", strlen(result)); } Glibc uses a different realpath implementation which does not have this bug. --- libc-5.4.38/libc/bsd/realpath.c.origSat Oct 3 00:42:48 1998 +++ libc-5.4.38/libc/bsd/realpath.c Sat Oct 3 00:43:09 1998 @@ -76,7 +76,7 @@ } strcpy(copy_path, path); path = copy_path; - max_path = copy_path + PATH_MAX - 2; + max_path = resolved_path + PATH_MAX - 2; /* If it's a relative pathname use getwd for starters. */ if (*path != '/') { /* Ohoo... */ @@ -122,7 +122,7 @@ } /* Safely copy the next pathname component. */ while (*path != '\0' && *path != '/') { - if (path > max_path) { + if (new_path > max_path) { errno = ENAMETOOLONG; return NULL; } -- -- Olaf Kirch | --- o --- Nous sommes du soleil we love when we play [EMAIL PROTECTED] |/ | \ sol.dhoop.naytheet.ah kin.ir.samse.qurax [EMAIL PROTECTED]+ Why Not?! --- UNIX, n.: Spanish manufacturer of fire extinguishers. -- -- Please refer to the information about this list as well as general information about Linux security at http://www.aoy.com/Linux/Security. -- To unsubscribe: mail -s unsubscribe [EMAIL PROTECTED] < /dev/null --- End Message ---
Re: web mail
On Wed, Oct 28, 1998 at 05:31:30PM +, Pere Camps wrote: .Hi! . . Does anybody know of a program I can install on my system that .will give my users web mail capabilites? . you hit the nail on the head when you said Webmail! see http://www.woanders.de/~wastl/webmail/ i haven't installed this yet but it looks nice, is written in perl, has MIME support, and has language options for English, German, Italian and Swedish. pretty cool. freshmeat.net probably has other solutions as well. thx, m* -- Horseman of the Digital Apocolypse
Re: libc6_2.0.7u-4.deb safe on hamm?
On Thu, Oct 29, 1998 at 10:02:19AM -0500, Peter S Galbraith wrote: . . . .I had a hamm system with a _few_ selected slink packages. .I installed the new netscape navigator debs from slink using .`apt-get install' and see that the following were also installed: . . libc6-dev_2.0.7u-4.deb . libc6-doc_2.0.7u-4.deb . libc6_2.0.7u-4.deb . .Since no dependencies were broken, can I assume my system is safe? . there was a request to install libcurses4, which depends on all of the above, on master and the request was denied due possible problems the u-4 pkg may present. please advise. thx, m* -- Horseman of the Digital Apocolypse
Re: sound in new 2.1.x kernels
On Wed, Nov 11, 1998 at 05:12:20PM -0500, Shaleh wrote: .How did you get the irq options? Did you edit it by hand? allo shaleh! if i try to load the sb module without parms i get: Soundblaster audio driver Copyright (C) by Hannu Savolainen 1993-1996 sb_card: I/O, IRQ, and DMA are mandatory ^ when the sb modules is Properly loaded i get: Soundblaster audio driver Copyright (C) by Hannu Savolainen 1993-1996 SB 3.1 detected OK (220) SB DSP version is just 3.1 which means that your card is several years old (8 bit only device) or alternatively the sound driver is incorrectly configured. h... but it works so what do i care! my /etc/modules looks like: soundcore sound uart401 sb io=0x220 irq=7 dma=1 my card is a SB Pro 2 model CT1600 ( PNP compiled into kernel ) and layer III mp3s sound most execellent! goodbye isapnptools!?! -- Horseman of the Digital Apocolypse
Re: smail not resolving some remote addresses
perhaps this is because there is no host debian.debian.org? methinks so. m* -- Horseman of the Digital Apocolypse
process_archive error on package apache_1.1.3-6.deb
anyone , i have run into an error(?) with the "stable" apache_1.1.3-6.deb package. when i try to install this package with the --no-act flag, no errors are reported however this seems to be useful only to report dependency problems. so i try an install with the -D20 debug flag and get : ns1:/tmp# dpkg -i -D20 apache_1.1.3-6.deb (Reading database ... 17396 files and directories currently installed.) Unpacking apache (from apache_1.1.3-6.deb) ... D20: process_archive conffile `/etc/cron.daily/apache' no package, no hash D20: process_archive conffile `/etc/init.d/apache' no package, no hash dpkg: error processing apache_1.1.3-6.deb (--install): subprocess pre-installation script returned error exit status 1 Errors were encountered while processing: apache_1.1.3-6.deb is this a problem with my existing installs on my systems ( i have a feeling this could be part of the issue considering this apache package installed successfully on some of my systems and others it won't) or is it a problem with the package itself? i emailed the listed package maintainer regarding this error and was advised he does not maintain the package any longer. if this is a package error, i'll take this up with the maintainer providing i know who it is. if it is not a package problem i would appreciate a some insight as to what i may be doing wrong. a private reply is preferred. thanks, [EMAIL PROTECTED] / [EMAIL PROTECTED] -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: >8bpp?
Jules Bean wrote: > On Fri, 3 Apr 1998, Ian Keith Setford wrote: > > > > > Yo- > > > > How to I get xdm to start with 16bpp or 24bpp? It is currently starting > > in 8bpp so AfterStep looks terrible. > > > > Best method, probably, is to go into your /etc/X11/XF86Config file, > go down to the section in your XF86Config that looks like this: > > Section "Screen" > Driver "svga" > # Use Device "Generic VGA" for Standard VGA 320x200x256 > #Device "Generic VGA" > Device "S3 ViRGE/DX (generic)" > Monitor "My Monitor" > DefaultColorDepth 24 > > and add the DefaultColorDepth line. > > You need to pick the right screen section - this one is if you are using > the svga server. There is another for xaccel, and another for vga16, > etc... > > Alternatively, you could start X as startx -- -bpp 24, but you're using > xdm, so that's not ideal. > > You could probably edit the first line of /etc/X11/Xserver to have -bpp 24 > on the end, but that sounds ugly to me.. no more ugly than editing the XF86Config file. you can put this line in your /etc/X11/xdm/Xservers file, Ian: :0 local /usr/X11R6/bin/X -bpp 24 m* -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
CAT 5
should CAT 5 cable testers be considered a necessity when installing fast ethernet cables? thx, m* -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
router hick-up
our router choked some time last night. a reset has made it happy again. sorry for any inconveniences! have a happy, m* -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Lilo: How to install it? ( Part II )
David B. Teague wrote: > > > Steve, if you could find that URL, and post it I'd be greatful. > Or if someone else has it ... please, post it, or mail it directly > to me. > see the HOWTOs at: http://sunsite.unc.edu/mdw/HOWTO/ you'll find Win95+Linux and the WinNT+Linux HOWTO's there. the Lilo HOWTO is very informative as well. m* -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
apache 1.1.3-6 install errors
has anyone seen this? Selecting previously deselected package apache. (Reading database ... 17247 files and directories currently installed.) Unpacking apache (from /tmp/apache_1.1.3-6.deb) ... D20: process_archive conffile `/etc/cron.daily/apache' no package, no hash D20: process_archive conffile `/etc/init.d/apache' no package, no hash dpkg: error processing /tmp/apache_1.1.3-6.deb (--install): subprocess pre-installation script returned error exit status 1 Errors were encountered while processing: /tmp/apache_1.1.3-6.deb i got this with debug 20 turned on. thanks, m* -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: SCSI Ultra/Wide support
Jason Costomiris wrote: > > I've got 9 or 10 2940UW's deployed, and I must say I'm quite satisfied > with their reliability and performance... we use two on a raid that is running 24x7 and they've have produce solid performance. we like them! m* -- "The Shining One" --
ethernet bridges
has aynone had admirable success building and using the brcfg functionality of the later kernels? if so in what kind of configuration was the bridge applied to? at what point, in regards to bridge performance, is it really more effective to defer to OEM bridges? and has anyone built a 10baseT -> 100baseT bridge, or is this even viable? i apologize for offering only questions! thanks, m* -- "The Shining One" --
Re: md autostart?
the way i licked this is i took the md entry out of the fstab and after the boot script finishes i have a shell script that performs the filesystem check on the md then mounts it. this works like a charm in our shop. Craig Sanders wrote: >however, this causes problems with 'depmod -a' because the / fs is >still >mounted RO at this time. hmm. if / is still RO at this point, the fsck on root probably failed... m* -- "The Shining One" --
pentium Pros and what about the USB?
heya, i was digging about looking for support for the Intel 8244xFx PCI chipset that comes on Pentium Pro boards and found zip. this includes the .29 kernel source. are the Pentium Pro 200 chipsets supported yet? and what about the Universal Serial Bus? can we expect support for that any time soon? m* -- "The Shining One" --
Re: Why is PPP so screwed up!?!?!
Jason Costomiris wrote after: > > On Sun, 2 Mar 1997, Shawn Asmussen wrote: > > > Cool off, man. What they seem to be talking about IS a Debian issue. > > Although ppp support IS compiled into the kernel, the pppd is separate, > > and the method by which you establish a connection, be it through pon, or > > a custom script like I use, because as far as I know pon will not redial > > Hmm.. Better not tell that to my system. pppd keeps redialing until it > gets connected.. yup, same here. which is nice 'cause i can reboot the remote machine and walk away confident that the connection will be re-established. what a relief. also, i have found modular ppp support to work just fine as opposed to compiling it in. m* -- "The Shining One" --
Re: The ultimate fate of Debian
> On Wed, 2 Apr 1997, Bruce Perens wrote: > > > Well the next release is called "hamm". The one before it was called "buzz". > > Given the mystical significance of "bo", this means one of the following: > > > > 1. Bruce Perens is the antichrist and Debian really means "Devil". i knew the dark forces were behind with this project... m* -- "The Shining One" --
Linux Expo
could someone who is there aprise those of use who were too unfortunate to go as to how today went? m* -- "The Shining One" --
Re: Debian's 'group' system
Pete Harlan wrote: > > The problem is that "ssh" won't work unless you remove group-write > permissions from your home directory (and the ~/.ssh directory). > > It's either a misconfiguration with Debian (i.e., files should not be > group-writable by default) or with the ssh Debian package (i.e., it > shouldn't mind that a directory/file is group-writable); neither way > is clearly better than the other, but they should at least agree. > i installed ssh using the tar file distribution and i did not have any permissions problems, so maybe it is package issue. m* -- "The Shining One" --
communicator
quick one: is communicator a memory hog? my guess is yes. m* -- "The Shining One" --
What? No automatic PST->PDT time change?
some guy wrote: > > Is your CMOS clock on local time? That would do it. > yup. all the systems here sprung forward. oh, one machine is set to central mountain... m* -- "The Shining One" --
Re: Upgrading...
Jeff Greeson wrote: > > At 07:31 PM 4/15/97 -0500, you wrote: > >Jeff Greeson wrote: > >> > >> > >> Stacker 133.. it's by Trinity Works.. here in dallas I think... but it's an > >> AMD 5x86/133 CPU that uses the intel 486 chipset. Find some info before I > >> spend the $99 on it. > >> try a post to [EMAIL PROTECTED] -- "The Shining One" --
Re: Problem with cdwrite, Help needed bad
Bruce Perens wrote: > > There is a support list for cdwrite. Send "subscribe" to > [EMAIL PROTECTED] . Then send your question to the list. > quickly: has anyone ever burned cd's using the HP4020i? m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
kernel message
'Unable to load interpreter.' anyone ever seen this? m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: apache no longer starting at boot.
Chris Brown wrote: > > Any ideas or suggestions as to log > files to check back on would be greatly appreciated. > check to ensure you have a /home/www-data/webspace/logs directory and a access.log file in that directory. i've seen people "break" their config by unwittingly removing the access.log file. m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: apache no longer starting at boot.
> check to ensure you have a /home/www-data/webspace/logs directory > and a access.log file in that directory. > > i've seen people "break" their config by unwittingly removing > the access.log file. > all, i didn't mean to imply that Chris might have 'unwittingly' broke his config or anything like that. sorry if it sounded that way. good luck, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: partition busy during shutdown
[EMAIL PROTECTED] wrote: > > I recently moved my Debian to a larger hard drive. I reorganized the partition > allocation from a splintered arrangement to a 2 partition arrangement: > /dev/hda4 - /var > /dev/hda3 - / (and all other stuff) > > Up until this change, 'shutdown' worked ok. Recently, I've been getting a > message: > > .. mount: /dev/hda4 is busy > > when partitions are being dis-mounted. Any clues as to how to determine what > process is keeping the partition busy? > yup. try fuser -m /var the output will be process ids of processes using the file system. it sounds like processes are not being killed appropriately. good luck, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: IP aliasing
Maarten Boekhold wrote: > > Hi, > > I tried to steup an IP alias on a machine here. According to the > Virtual-Web mini-HOWTO, I can do: > > ifconfig eth0 alias new-address > > However, ifconfig says 'alias' is not a hostname. 'man ifconfig' doesn't > say anything about aliasing. This is with netbase 2.13-1. > > Anybody who can get me goin' on this? > > Maarten > i had a similar problem today! in addition to Remco and Eloy, check to make sure your kernel has network aliasing and aliasing support configured in. if you configure aliasing support as a module ( ip_alias ), make sure you load that module at boot. m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: fax mini-howto?
Lawrence wrote: > > Is there a mini-howto about how to sending fax under linux? > > Lawrence > i haven't seen a HOW-TO, but the mgetty-fax and efix packages have a resonable amount of doco with them. i would recommend installing them both and then seeing if you can use them then post back if you have specific questions. i use them together. i did end up modifying the scripts to suit my needs though. m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: fax mini-howto?
Lawrence wrote: > > > where is /dev/fax> it seems that efax does not create it device. you are correct: efax does not create any devices nor does mgetty-fax. those devices are standard. but it does uses a serial device, say /dev/ttyS1 which Could be referred to via symbolic link from /dev/fax. as is, you can use one of your serial devices, ttyS0 - S3, i.e. : crw--- 1 root dialout4, 64 Sep 29 17:09 /dev/ttyS0 crw-rw 1 root dialout4, 65 Sep 29 16:21 /dev/ttyS1 crw-rw 1 root dialout4, 66 Apr 30 18:25 /dev/ttyS2 crw-rw 1 root dialout4, 67 Apr 30 18:25 /dev/ttyS3 ttyS0 is the serial device i run mgetty-fax on to answer and process incoming faxes. so for ease of use, you might make a symbolic link from /dev/fax to /dev/ttySX since /dev/fax is the defualt device that efax looks for. m* -- "The Shining One" -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Is there a tool to mirror web sites?
R Chris Ross wrote: > > I have some users that heavily use a couple of web sites that > contain documentation and manuals. The standard mirror package is > only for FTP from what I see. Is there a tool to mirror web sites > too? > yup. try wget_1.4.4-6.deb ! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: why /var/tmp/ not be cleaned at boot time
George Bonser wrote: > > Yeah, so you can have some temporary scratch space that survives a reboot. > > Anything that can evaporate at reboot time, you put in /tmp, anything you want > to survive a reboot, you put in /var/tmp. > yup, like the vi.recover directory. i believe /var/tmp is the default location for vi.recover is it not? m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: RARP on MAC address?
>Have you tried something like 'arp -a | grep '? This yields a >hostname which can be fed into nslookup. if the addy is in the cache, 'arp -an' will list the ip addy and the MAC addy. no nslookup needed. 'tcpdump -e' will list MAC addresses in the dump and you can then see who the owner of that MAC address is. m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Linux as a mail and intranetserver
Dirk Kievith wrote: > > My purpose is to set up a small *intranet*, with about 2-3 machines to start > with, to offer email and web-browsing facilities to multiple users. > My main querry is how to go about it: > - which e-mail software, smail is the Debian preference and would probably be suitable for your intranet. on the other hand, sendmail is equally suitable and is still easy to configure. > - which web- and proxyserver to use apache! another Debian preference. it's proven to be flexible and bulletproof. > - Can one have a Linux server and W95 pc's as clients. Linux has brilliant Windoze support. i'd even go as far to say it's one of it's most valuable features when speaking of an office intranet. > - As such, is there a way that multiple users could *download* their mail > from the local Linux server into W95? Which mail package to use for that? Internet Explorer 4.0 Active Desktop is quickly invading the `Dozer realm , but there is Eudora, or the stalwart Navigator or others. > - Else should one leave Windoze for what it is and work only with Linux > packages. Which email-packages under Linux are most user-friendly? again, Netscape Navigator is a common tool but there are many others. just to see, browse http://www.xnet.com/~blatura/linapps.shtml. there are some powerful and useful desktop managers now and more exciting utilitites are introduced weekly. selection of an email package is somewhat dependent upon the the needs and abilities of the users, IMO. i would also suggest dropping some more RAM in your box. it's not required on headless server, that is a server without a graphial interface, but is sure is a great feeling to be able to fire up X Windows on your 486 and browse the net. ( i know because i have a former Windoze running Debian Linux 486 too! ) take the plunge! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Debian master maintenance
hello to all! tonight at 18:00 CST the Debian master will be taken down for system maintenance. estimated down time will be 1 hour or less. feel free to contact me with any questions or concerns. thanks, mark -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Debian master maintenance
hello there! Debian master maintenance completed. thanks, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: cdwrite trouble: SENSE_ERROR
Kirk Hilliard wrote: > > > # cdwrite -v --device /dev/sg0 UnixCD.iso > cdwrite 2.0 > Track 01: data 26 Mb > Manufacturer: YAMAHA > Model: CDR400t > Revision: 1.0d > Using mode:Yamaha > Using speed: 2 > mode_select6#2 result 0, pack_id 12 sense 70 00 05 00 00 00 00 0A > 00 00 00 00 26 02 00 00 > 18 of 18 mode_select6#2 reply bytes: 00 00 00 00 31 02 00 10 59 >41 4D 41 48 41 20 20 43 44 > write_data_track result 0, pack_id 14 sense 70 00 05 00 00 00 00 0A > 00 00 00 00 20 00 00 00 i've seen it and had the same problem. i never got an explanation as to what the nature of the problem was short of joerg schilling suggesting i use his cdrecord instead. my device was an HP4020i. i also know that the same error was encountered on a Dozer95 box. i have not been fortunate(?) enough to attempt a burn again with either cdwrite or cdrecord. but i am still interested in doing so! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: what package contains "unix2dos" and "dos2unix"?
Paul Miller wrote: > > ? > > -Paul > stable/binary-i386/utils/sysutils_1.2-1.deb -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Enlightenment window manager
Ana Silva wrote: > > In this point i can almost run the Enlightenment... When i run startx > it says it can't find the file startup/full-background.jpg! I have that > file at /etc/X11/enlightenment, so I just have to know where > is E looking for that file! > guess i never asked: what version of enlightenment have you loaded? older versions( DR-0.7 or .8 ) had this bug. if you get the latest DR ( 0.12 ) that bug does not exist. or feature or whatever it is. the install from the E website is a cinch. is there a debian install? try it! if you haven't, check: http://mandrake.net m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: [Q] login refused connections
Pere Camps wrote: > > Hi! > > If I have a service disabled in inetd.conf, how do I log > unsuccesful connections to that service? That is, I want to know if > somebody is probing any ports in my machine. > tcplogd, in the iplogger package, will log connection attempts in spite of disabled services in the inetd.conf file. for instance. i have telnet diabled on a machine. tcplogd will log: Oct 28 13:39:56 big_brain tcplogd: port 23 connection attempt from some.naughty.user.net hope this helps. m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: rsh
Syd Alsobrook wrote: > > Help, > What do I need to do to get rsh to work without passwords on a > closed network? see "man rhosts". m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Are there any efficient backup programs for Linux?
[EMAIL PROTECTED] wrote: > > > > > Hallo, > > > Howdy! > > > I would like to hear whether there is a successful backup program for > > Linux which can compare in efficiency with > Yes! Try BRU (Backup and Restore Utility) from est. It's not free, > but I've been burnt more than once by free backup/restore software. > My time, energy and certainly my data are worth the (fair) price for > this product. I've been using it on several different machines for > some time now and really like it. i'll also vouch for BRU. its reliable and they have good support if and when it's needed. i've several critcal restores and walked away smiling. there's an X version now as well ( which i don't use ). m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Apache question..
Ian Keith Setford wrote: > > I have Apache running but I am missing an important piece of information. > I *think* I have read all the documentation but I do not know where to > locate the "home" page for my server. > Thanks in advance! > look in your /etc/apache/httpd.conf file for the SeverRoot statement. your "home" page ( index.html is the default ) will go in that directory. i thought apache installed a default index file in the server root!?! if it didn't just put one there! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: pppd leaves lock file after quitting
> > > > I used pppd to connect to my university, which has a 2 hour limit on > > connections. > > > > Problem is, when pppd stops, it leaves the lock file in /var/lock. Do I > > have to remove the file itself? > > > > Also is there a better way to stop pppd than just killing it? the 2.2.0f-19 version comes with the script poff, as well as pon. poff cleanly kills ppp with a SIGTERM. i have also found that the lock file will be removed, actually by mgetty in my case, after about 40 seconds. so upgrade your ppp if necessary and let mgetty do the rest of the cleanup. good luck, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
mpg123
hello, are there any other apps like mpg123 that employ http get trickery to read mpeg files? does anyone have any opinions regarding mpeg decoders or other audio apps that have provided effective multimedia solutions? thanks, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
an archive of packages to downgrade to?
is there such an archive where i can get, let's say a 1.3.3 version netatalk package? thanks, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: 3COM 3C905-TX PCI NIC
Dave Cinege wrote: > > > I call upon you Kernel gods. You see, it will not end by itself. Please put > the words "and 3c90x" on the vortex driver line in the configs. (Or someone > submit a patch. I don't know how) > are the 90x cards even supported yet? then again i have not ventured beyond v2.0.30 yet, so... m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: 3COM 3C905-TX
> > >Dave Cinege wrote: > > Thus, and I swear I see it at least once a day, people keep asking if > the XL series is supported at all. this was the first i had heard of it, but great! thanks, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: nobody is running find at too high a priority
[EMAIL PROTECTED] wrote: > > jim writes: > > > I don't know debian well enough to know which process is running find at > > 7AM in the morning,... > > ... sounds like your system/cmos clock might be off an hour or so. anyone working at 7am needs a vacation... -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
drawing a blank here about dpkg error
i'm trying to clean up a system and am running into a dpkg opiton problem that i have seen before, but i can't remember now what the solution was. when i try to upgrade dpkg i get: Preparing to replace dpkg (using dpkg_1.4.0.8.deb) ... dpkg: unknown option --assert-support-predepends is the "--assert-support-predepends" being passed by the new dpkg package then causing the the current version of dpkg to fail? help from the Force will be appreciated! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
List server going down for hardware maintenance
hello, the Debian list server is going down at 11:05 p.m. CST for hardware maintenance. your patience is appreciated! -mark- -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
mirror question
hello. i have a mirror that mirrors some web directories. the mirror gets everything in the specified remote directoy, but then it won't create the symlinks from the /var/web/webspace directory to user public_html directories, i.e. /var/web/webspace/userx -> /home/userx/public_html why won't it ceate those symlinks? t.i.a. m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
RAID5 controller
can anyone recommend a couple of tried and true RAID5 controllers i could price out? thanks! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
colons (:) in package version numbers mucking up dselect?
went to upgrade the packages on the trusty old 386 and after i got the list of available packages dselect reported: - dpkg: parse error, in file `/var/lib/dpkg/available' near line 13565 package `cdda2wav': empty value for version update available list script returned error exit status 1. - afterward, selecting Select crashes dselect. changing the : in the version numbers for packages cdda2wav and sharutils to a . fixed it. thank you and have a nice day/night, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: colons (:) in package version numbers mucking up dselect?
Pawel Wiecek wrote: > > Upgrade dpkg to newer version by hand before upgrading other packages. > The colon delimits epoch and version number - and epochs were added in some > newer version of dpkg/dselect (around Debian 1.1 or 1.2). > oh okay. my mistake. Yafcot:atj(*), mark -- * Yet another fool coming over this: according to joey -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
quick one
my hopes are higher now than ever that Linux will rise above the frankenstein gangster alliances. i'd also like to extend my appreciation to everyone involved with the Debian project! m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
"Shut`er down Clancy! She's pumpin' mud!"
monday: having some hardware issues with the debian.novare.net server but i have it stabilized now. i also have a full volume backup in progress and it's completion is imperative. my apologies for any inconveniences. onward... m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
debian.novare.net
if you experienced a disconnect from debian.novare.net it was due to some minor but mandatory hardware maintanence. everything is back in order. my apologies for any inconveniences. thanks, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Re: Backup question
Shaleh wrote: > > I am doing a sytem backup, other than /etc, /usr/local stuff, and /home > or /root what else do I need to save?? > i'm not sure what backup utility you are using, but BACKUP EVERYTHING the first time around! paranoid about whether evrerything gets backed up, m* -- "The Shining One" -- -- TO UNSUBSCRIBE FROM THIS MAILING LIST: e-mail the word "unsubscribe" to [EMAIL PROTECTED] . Trouble? e-mail to [EMAIL PROTECTED] .
Recursively search through html files?
Dear Debian, Do you know of a program that will recursively search webpages for a given expression, starting at a given URL (or in my case I usually want to search local pages, e.g. file://~m/downloadedpages/index.html)? It should be reasonably easy to script something together with wget, sed and grep, but if there are already good solutions out there I might as well use one of them! Best Wishes, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
h323
Hi Someone have h323 modules (netfilter) working on Debian Sarge (Kernel 2.4.27)... i need these modules but i`m not sure about how to patch the kernel... There is a good document that explain the process? Thanks a lot Michael.- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: pine
It wasn't when I looked three or four years ago, but the source is available from Washington University (www.washington.edu/pine/) and it is (or was then) really easy to compile & install. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Kdesud locking up, JMicron card reader not working, USB 3 Controller stops working after resuming, horizontal tearing on fullscreen
Hello all, I'm facing some problems with Debian Unstable that are really annoying. I know how to report bugs, did that several times before, and that I should ask one question at a time. But in this case, I decided to first listen to the good folks in this list for input and feedback (and maybe even solutions!!!), to both report more useful bugs and see if someone else is facing the same problems that I am, so the bug report would not be forgotten or simply trashed, as it happened before. I've tested these problems on two different computers, one desktop and one laptop. So here it goes: 1) I use KDE 4.6, the latest version from unstable, and synaptic to install packages. synaptic needs sudo permissions, and KDE does that using kdesud. The problem is that sometimes the kdesud process hangs, and every other call to kdesud gets stalled. I have to go to the terminal and kill it by hand - after doing that, synaptic and any other process that calls kdesud works fine. This happens on ALL debian unstable installations, both desktop and laptop. 2) The laptop has a JMicron card reader that only works if the card is inserted at boot time. 3) The USB 3 controller on the laptop never worked correctly. It is USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev 03) USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 Enhanced Host Controller (rev 06) The two USB 3 ports never worked correctly: they disconnect or never connect usb peripherals, giving xhci_hcd errors like [ 6135.109318] xhci_hcd :05:00.0: WARN: short transfer on control ep [ 6135.112271] xhci_hcd :05:00.0: WARN: short transfer on control ep [ 6135.115274] xhci_hcd :05:00.0: WARN: short transfer on control ep Only the e-SATA port that uses a USB 2 controller worked consistently. The problem only gets worse when the computer is suspended and resumed. No USB port works after the cycle, connecting and disconnecting any kind of peripheral, with errors like [ 6203.513297] xhci_hcd :05:00.0: WARN: transfer error on endpoint [ 6203.513319] xhci_hcd :05:00.0: WARN: transfer error on endpoint [ 6203.513926] usb 3-1: USB disconnect, device number 2 [ 6207.579588] usb 3-1: new full speed USB device number 3 using xhci_hcd [ 6207.603530] xhci_hcd :05:00.0: WARN: Stalled endpoint [ 6207.605496] xhci_hcd :05:00.0: WARN: Stalled endpoint [ 6207.607532] xhci_hcd :05:00.0: WARN: Stalled endpoint 4) This happens with all video applications on KDE, VLC, mplayer, etc. When playing in fullscreen, both machines (with Nvidia graphics cards and the driver from Nvidia), with compositing or not, with opengl backend or not, vsync enabled or not, any video shows horizontal tearing. Any help with these issues, experience, how to solve, or who to contact to talk about it would be greatly appreciated. Please CC me as I'm not subscribed to the list. Cheers -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/CACd0G9yay5A3Tsg_RjALKALm784p_PyT0=de82+sb1h-lin...@mail.gmail.com
Kdesud locking up, JMicron card reader not working, USB 3 Controller stops working after resuming, horizontal tearing on fullscreen
Hello Camaleón, hello list, I had to search for this post on the interwebs, as I'm not subscribed. But finally a good soul answered me! Thanks, Camaleón! :-) On Mon, 31 Oct 2011 16:11:49 -0200, M. wrote: > I'm facing some problems with Debian Unstable that are really annoying. > I know how to report bugs, did that several times before, and that I > should ask one question at a time. But in this case, I decided to first > listen to the good folks in this list for input and feedback (and maybe > even solutions!!!), to both report more useful bugs and see if someone > else is facing the same problems that I am, so the bug report would not > be forgotten or simply trashed, as it happened before. I've tested these > problems on two different computers, one desktop and one laptop. >Good, but is usually better to send separate messages for each of the >problems you're facing, just to get a more clean thread. Agreed. But this email was for venting frustration too. Will do that in the future. > So here it goes: > > 1) I use KDE 4.6, the latest version from unstable, and synaptic to > install packages. synaptic needs sudo permissions, and KDE does that > using kdesud. The problem is that sometimes the kdesud process hangs, > and every other call to kdesud gets stalled. I have to go to the > terminal and kill it by hand - after doing that, synaptic and any other > process that calls kdesud works fine. This happens on ALL debian > unstable installations, both desktop and laptop. >Is that happening regardless of the command you run with "kdesu" or just >when you launch Synaptic? The only program that I' aware that's running kdesud is synaptic, so I dunno. > 2) The laptop has a JMicron card reader that only works if the card is > inserted at boot time. >Mmm... what's dmesg output when you connect a card? Is it detected/ >mounted? NO dmesg output. Not detected, not mounted, not anything. > 3) The USB 3 controller on the laptop never worked correctly. It is > > USB controller: NEC Corporation uPD720200 USB 3.0 Host Controller (rev > 03) USB controller: Intel Corporation 5 Series/3400 Series Chipset USB2 > Enhanced Host Controller (rev 06) > > The two USB 3 ports never worked correctly: they disconnect or never > connect usb peripherals, giving xhci_hcd errors like > > > [ 6135.109318] xhci_hcd :05:00.0: WARN: short transfer on control ep > [ 6135.112271] xhci_hcd :05:00.0: WARN: short transfer on control ep > [ 6135.115274] xhci_hcd :05:00.0: WARN: short transfer on control ep (...) >I have commented in another thread about a similar problem: >http://lists.debian.org/debian-user/.../msg02561.html I've blacklisted xhci_hcd, and so far the controller hasn't acted up. But this gonna take longer to test. > 4) This happens with all video applications on KDE, VLC, mplayer, etc. > When playing in fullscreen, both machines (with Nvidia graphics cards > and the driver from Nvidia), with compositing or not, with opengl > backend or not, vsync enabled or not, any video shows horizontal > tearing. >For this one I would start debugging a driver issue by loading "nouveau" >instead "nvidia". If both drivers experience the same it can be something >pointing to Xorg :-? The last time I tried to install nouveau, it tried to remove all nvidia packages, and after that, it didn't work - black screen, no output, no X, no console. I'll try again, but I reported this to the kde bug tracking, and they're also trying to figure it out. So far, no luck. > Please CC me as I'm not subscribed to the list. Sorry, I can't :-( I had to search this on a weird forum, but at least I found it. Why you can't CC me? Thanks! Greetings, -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/cacd0g9y-s9wxwdqnovw62jhi4oo+sngpperfne7ig5aaabe...@mail.gmail.com
Any news on KDE 4.8?
Hi all, Are there any news on some tentative release date for KDE 4.8? KDE 4.7.4 presently has several serious problems with the NVIDIA driver, and all I hear upstream is "this is fixed in 4.8"... Is there any way I can help to speed things up? Cheers M. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/CACd0G9zKVXTDq0=c2rpsodjup5cj7d-ekqbqf5rt8phahln...@mail.gmail.com
udev not setting the right permissions for cdrom drive
Hello all, I'm having some problems with my cdrom drive. I cannot mount it as a normal user, as the permissions for it are brw--- 1 root root 11, 0 Fev 10 08:03 /dev/sr0 and neither kde or gnome can mount it without the right udev file. udev is not creating the correct file on /lib/udev/rules.d, and even with the original one the drive did not work. I submitted a bug report (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612759) but the mantainer said that he doesn't have the time to "hold my hand" on this one. I can use the drive normally if I set the permissions by hand. I'm member of the cdrom and plugdev groups. Is anyone else suffering from the same problem? Thanks M. -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/aanlktinyc7+rhuhtlvbhwjxqr3etg2susbkhzz_gd...@mail.gmail.com
Can't make a HP Laserjet Professional p1606dn work - printer-state-reasons=hplip.plugin-error
Hi all, I'm trying to make a HP Laserjet Professional p1606dn over wired network work, to no avail. I've installed all the relevant packages from hplip and cups, and I can find the printer on the right address. But everytime I try to print, I get the message printer-state-reasons=hplip.plugin-error I removed everything and installed back, even purged all files and installed back, with no luck. Trying to install the hplip from the HP site stops when it asks for cups-devel, and as there is no cups-devel package on debian, it hangs there. Installing all cups | dev packages does not solve the installing problem, so I'm stuck. The full cups log is below. Thanks ++ D [07/Sep/2011:11:08:05 -0300] [Job 5] The following messages were recorded from 11:08:03 to 11:08:05 D [07/Sep/2011:11:08:05 -0300] [Job 5] Adding start banner page "none". D [07/Sep/2011:11:08:05 -0300] [Job 5] Adding end banner page "none". D [07/Sep/2011:11:08:05 -0300] [Job 5] File of type application/vnd.cups-banner queued by "root". D [07/Sep/2011:11:08:05 -0300] [Job 5] hold_until=0 D [07/Sep/2011:11:08:05 -0300] [Job 5] Queued on "HP_LaserJet_Professional_P1606dn" by "root". D [07/Sep/2011:11:08:05 -0300] [Job 5] job-sheets=none,none D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[0]="HP_LaserJet_Professional_P1606dn" D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[1]="5" D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[2]="root" D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[3]="Test Page" D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[4]="1" D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[5]="job-uuid=urn:uuid:d3d140a4-ec08-3d76-4e2d-76a7fe371c7d job-originating-host-name=localhost time-at-creation=1315404483 time-at-processing=1315404483 AP_D_InputSlot=" D [07/Sep/2011:11:08:05 -0300] [Job 5] argv[6]="/var/spool/cups/d5-001" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[0]="CUPS_CACHEDIR=/var/cache/cups" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[1]="CUPS_DATADIR=/usr/share/cups" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[2]="CUPS_DOCROOT=/usr/share/cups/doc-root" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[3]="CUPS_FONTPATH=/usr/share/cups/fonts" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[4]="CUPS_REQUESTROOT=/var/spool/cups" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[5]="CUPS_SERVERBIN=/usr/lib/cups" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[6]="CUPS_SERVERROOT=/etc/cups" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[7]="CUPS_STATEDIR=/var/run/cups" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[8]="HOME=/var/spool/cups/tmp" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[9]="PATH=/usr/lib/cups/filter:/usr/bin:/usr/sbin:/bin:/usr/bin" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[10]="SERVER_ADMIN=root@fangorn" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[11]="SOFTWARE=CUPS/1.5.0" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[12]="TMPDIR=/var/spool/cups/tmp" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[13]="TZ=America/Sao_Paulo" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[14]="USER=root" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[15]="CUPS_SERVER=/var/run/cups/cups.sock" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[16]="CUPS_ENCRYPTION=IfRequested" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[17]="IPP_PORT=631" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[18]="CHARSET=utf-8" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[19]="LANG=pt_BR.UTF-8" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[20]="PPD=/etc/cups/ppd/HP_LaserJet_Professional_P1606dn.ppd" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[21]="RIP_MAX_CACHE=128m" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[22]="CONTENT_TYPE=application/vnd.cups-banner" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[23]="DEVICE_URI=socket://192.168.15.101" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[24]="PRINTER_INFO=HP LaserJet Professional P1606dn" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[25]="PRINTER_LOCATION=Local Printer" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[26]="PRINTER=HP_LaserJet_Professional_P1606dn" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[27]="PRINTER_STATE_REASONS=none" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[28]="CUPS_FILETYPE=document" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[29]="FINAL_CONTENT_TYPE=printer/HP_LaserJet_Professional_P1606dn" D [07/Sep/2011:11:08:05 -0300] [Job 5] envp[30]="AUTH_I" D [07/Sep/2011:11:08:05 -0300] [Job 5] Started filter /usr/lib/cups/filter/bannertops (PID 20435) D [07/Sep/2011:11:08:05 -0300] [Job 5] Started filter /usr/lib/cups/filter/pstopdf (PID 20436) D [07/Sep/2011:11:08:05 -0300] [Job 5] Started filter /usr/lib/cups/filter/pdftopdf (PID 20437) D [07/Sep/2011:11:08:05 -0300] [Job 5] Started filter /usr/lib/cups/filter/gstoraster (PID 20438) D [07/Sep/2011:11:08:05 -0300] [Job 5] Started filter /usr/lib/cups/filter/hpcups (PID 20439) D [07/Sep/2011:11:08:05 -0300] [Job 5] Started backend /usr/lib/cups/backend/socket (PID 20441) D [07/Sep/2011:11:08:05 -0300] [Job 5] pstopdf 5 args: 5 root Test Page 1 job-uuid=urn:uuid:d3d140a4-ec
Problem with permission in /dev/sr0: k3b cannot find CDROM drive
Hi all, I'm facing for some time now problems with the permissions of my CDROM drive. Everytime I start k3b I receive this message: No optical drive found. K3b did not find any optical device in your system. Solution: Make sure HAL daemon is running, it is used by K3b for finding devices. I'm in the plugdev, cdrom, video, audio and disk groups, but I still get this message. Mounting the drive using mount works. The only solution that I've found for that is chmod 666 /dev/sr0, and that is not convenient, as I have to do it everytime I reboot. The permissions are ls -lah /dev/sr0 brw--- 1 root root 11, 0 Jun 24 03:56 /dev/sr0 and lrwxrwxrwx 1 root root 6 Nov 24 2009 /media/cdrom -> cdrom0 My /etc/fstab says /dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0 So I really don't know exactly what's happening here. Brasero or VLC doesn't work either. Should I file a bug report? If so, against what package? I'm running Sid AMD64. Thanks Ivan
Debian Book
Hi... i new at this list i want to buy a Debian Book, Someone can recommends a good Debian book? Thanks a lot.- Michael.- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Debian Book
Thanks a lot! i´will take a loot at it. Michael.- El mar, 17-01-2006 a las 16:27 -0500, Keith O'Brien escribió: > On Tue, 2006-01-17 at 14:17 -0700, Glenn English wrote: > > On Tue, 2006-01-17 at 17:11 -0300, Michael Fernández M. wrote: > > > > > i want to buy a Debian Book, Someone can recommends a good Debian book? > > > Accidentally responded only to poster. > > Here is a free book online that you can also buy: > http://www.oreilly.com/catalog/debian/chapter/book/ > > GL... > > > I've gotten a lot of useful info out of Martin Kraftt's "The Debian > > System." It covers the current stable (Sarge). Get the European printing > > if you can, from open source press (amazon.de has it). > > > > -- > > Glenn English > > [EMAIL PROTECTED] > > > > > > > > > This message is the property of R/GA and contains information which may be > privileged or confidential. It is meant only for the intended recipients > and/or their authorized agents. If you believe you have received this message > in error, please notify us immediately by return e-mail or by forwarding this > message to [EMAIL PROTECTED], and destroy any printed or electronic copies of > the message. Any unauthorized use, dissemination, disclosure, or copying of > this message or the information contained in it, is strictly prohibited and > may be unlawful. Thank you. > > > This email and any files transmitted with it are confidential and intended > solely for the use of the individual or entity to whom they are addressed. If > you have received this email in error please notify the system manager. This > message contains confidential information and is intended only for the > individual named. If you are not the named addressee you should not > disseminate, distribute or copy this e-mail. > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Debian Book
Thanks!! i will buy "The Debian System." by amazon. Michael.- El mar, 17-01-2006 a las 18:08 -0400, [EMAIL PROTECTED] escribió: > Glenn English wrote: > > On Tue, 2006-01-17 at 17:11 -0300, Michael Fernández M. wrote: > > > > > >> i want to buy a Debian Book, Someone can recommends a good Debian book? > >> > > > > I've gotten a lot of useful info out of Martin Kraftt's "The Debian > > System." It covers the current stable (Sarge). Get the European printing > > if you can, from open source press (amazon.de has it). > > > > > I have just bought this book and am impressed so far. > Regards, > Dave Whelan. > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Help with Acl`s Ldap on Debian Sarge.-
hi.. i need help with acl´s i`ve made some acl´s but this does not work,. i have the follows bases: for email accounts dn: ou=accounts, ou=domain.tld, ou=postfix,o=organization [EMAIL PROTECTED], ou=accounts, ou=domain.tld, ou=postfix,o=organization [EMAIL PROTECTED], ou=accounts, ou=domain.tld, ou=postfix,o=organization etc... for alias dn: ou=alias, ou=domain.tld, ou=postfix, o=organization [EMAIL PROTECTED], ou=accounts, ou=domain.tld, ou=postfix,o=organization etc... i have the user: cn=accountadmin, ou=users, o=organuization The thing is that others persons need to access to the ldap server by phpldapadmin, they need create, modify and erase accounts and alias.. How can i do an ACl that permits to this user erase, modidy and create accounts and alias but NOT delete de main ou? (ou=alias, ou=domain.tld, ou=postfix, o=organization / u=accounts, ou=domain.tld, ou=postfix, o=organization ) Thanks a lot!!! Michael.- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Horde.
Hi Can anybody tell me if exits a good HowTo to install Horde on Debian Sarge? Thanks a lot Michael.- -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to use old CPUs (Not Debian Specific)
Having said that though, personally, I would use the PII as the firewall, backup, file server etc etc. The new fast machine as the family desktop and ditch the other two. Using the same machine as a backup file server and a firewall seems a little foolhardy to me, especially given that there are spare machines to play with. A fortnight ago my landlady went out into the garage and found that the breaker had gone several days before and all the food in her freezer had gone, including her prize winning rowanberries - boohoo! Made me jump up and start trying to figure out a method for an alarm light to come on in the house whenever garage power was off. Now that's fairly simple to do and doesn't need a computer, but there are a huge number of related things that you could do and you could sensibly put an ancient machine at the heart of that. The older the better even, because it will draw less power when left on for long periods of time. My pap used to have a set of lights programmed to change in a random way and he kept an ancient box running for many years doing little other than that. Light up, gradually dim, switch off, the whole lot. Classic anti-burglar mechanism jazzed up to make it plausible day after day. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to use old CPUs (Not Debian Specific)
Actually, I've tried using old klunkers to do backups, and discovered that they can't take large hard disks. One of mine won't go beyond about 128 gig, tha other gets stuck somewhere between 2.5G and 80 G. I have an old clunker that wouldn't take a big HDD so, being utterly penniless I with great trepitation flashed the bios. It's not all that hard and the box took an 80G hard drive no problem after that. Again, with apologies to this list, I loaded the box with win98 first so that I could use the bios diagnostic tool on the AwardBios (now Phoenix) website. I sent them 30 USD, they sent me instructions and some files to put on a floppy disk, I booted from the floppy and all was fine and straightforward. (Talk about a controlled environment-they knew my hardware and bios inside out and the OS was on the floppy- it jolly well ought to be straightforward.) So if you're having HDD size problems, you know my advice! Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Network Bandwidth Monitoring Utility
Check out cacti, it will do SNMP pulls on the host. Both bandwidth and process. Its not a simple app, but very useful. Also if you have firewall setup on the box, you should be able to get stats on the ports/protocol. Have you ever used very basic snmp? I recently discovered the snmp command line programs (by the mechanism of typing "snmp" then tab twice into a terminal window) but I haven't yet been successful in pulling any values out of an snmp mib. The commands correspond exactly to the datagrams specified in the snmp rfc though, so it can't be all that hard to use them. Regards, Max. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: new users
I'm slowly developing myself a web-toolbox that I can access from anywhere. Anyone know where I can get a web-based antivirus client (applet) for windows that I can host for personal use? Oh and how about You could have an applet that scanned documents but you haven't a hope of doing a full antivirus with an applet. The whole "applet inside sandbox where it can't hurt mummy" strategy also means that the applet can't read arbitrary files or watch process behaviour - and I'd hope so too! At least that's the default security setting. I've never looked for ways of loosening those settings, maybe they exist. Mommy, remember to lock the computer down after you've finished fixing her up! A java application - more scope for that. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Writing technical text
Yes, there's Lyx and there's a commercial wysiwyg latex editor that my photonics friends at university used to rave about - can't remember the name of it though and it wasn't cheap - about 300 GBP=450 USD by memory. But these are rather like HTML editors - they don't give me the control I crave - and unless they are very good at not messing around my hand written code I have no time for them. Doesn't stop me from trying to make a good wysiwyg HTML editor though! Be prepared to ask lots of questions when using latex, rather than get frustrated. It's like unix - there's a simple way of doing most things but sometimes it's non-obvious. If there is a latex mailing list out there join it, and let us know about it too whilst you are at it! Best Wishes, Max. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: NFS shares over the internet
NFS may be attempting to use UDP - Unreliable Datagram Protocol (IIRC). I believe you'll find the acronym means "User Datagram Protocol". Yes, sure, but since when haven't the backronyms been more apt? Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: spurious mailman messages
Write a rule to banish furry white things from your inbox. I should imagine that it should stop after about 1152 hours aka 48 days, or whatever is the longest holding time of any of the mail servers involved. Maybe you can get at the mail queue directly and delete them from there if you own the mail server, which I imagine you do, but short of doing a fairly global grep for sheep I have no idea how to do that. What fun! It is or rather was your own mailing list, right? Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Writing technical text
Latex (long may it live) does anyone know whether v3 has come out yet and if so what's new? Has e.g. hyperlink support gone from being an extra to being in the core? Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Writing technical text
Absolutely true. When I started my blog esquipulas dot homeunix dot com, I was looking for a blog machine using LaTex. It does not exist, but what a chance. LaTex has it all and has had so for years. I've noticed that Wikipedia uses a funny combination of latex and ?ml as its input language. For a blog maybe that's the way to go. It shouldn't be hard to write a server side script to compile and display latex, probably as pdf. I'll write one for you if you like. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: [skype] X server and skype, that's a problem
Sound is very sensitive to temporal disturbance. Much more so than video. Hey, it's pressure changing over time. I imagine that almost certainly, if you can bump up the priority of the skype processes involved all should be fine. But I don't actually know any more than the theory. nice is the command for changing process priority levels. "nice -n -100 skypeProcessId" should raise the priority as high as it will go in user mode. If you change to root you can raise it further but you'd obviously have to be careful not to give skype so high a priority that something critical doesn't get a chance at the processor. It might also be some other related process that's not getting enough attention. I'm guessing, please someone correct me if I've got it all wrong. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Gimp and transparency in GIF images
What happens if you set the gif to 100% transparent and then speckle it with black or gray? That would work over multiple backgrounds. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: reduce write access to hard disk
What's the power consumption of dram compared with a conventional hard drive? Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Access to multiple terminal windows?
Dear all, When operating in terminal only mode (no X11, no graphical user interface) is there a way of having several active terminal windows? I seem to remember that something like F4 is meant to permit cycling through terminal windows but that doesn't seem to work. Unless perhaps I have to explicitly create a new terminal window and F4 is cycling me through all of one terminal windows. I'm on tty1 and for the time being seem to be stuck there! Thanks in advance, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Access to multiple terminal windows?
Thanks all. Knew it was something like that but was in a rather delicate state of development and didn't want to destroy everything by monkeying about! -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Vim question
No idea about vim. Sorry. Would be nice to know though! Isn't emacs meant to be the infinitely programmable editor? Wd be nice to know how to program it in any editor. If you wanted to instead replace line 1 line 2 line 3 with /* line 1 line 2 line 3 */ Commenting out C - traditional painful problem as the above will break if lines 1-3 contain any /* ... */ type comments themselves. Prefixing each line with // is an easy solution but // hasn't always been flavour of the month and isn't accepted by all C compilers. Does your installation have sed? There are several windows versions out there, the first I could find is at http://unxutils.sourceforge.net/ The sed to do the subsititution is: max$ echo gaga > temp max$ sed 's:^://:g' temp //gaga Should work with the windows version. Don't have a win box to play with at the mo - mine broke yet again. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Vim question
Substitute every beginning of a line with //: :% substitute ?^?//?g Thanks to the vim manual hanging off the main vim page. Please do purchase a hard copy - the profits go towards feeding Ugandan orphans. Regards, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to make boot CD to run your curent hard disk installed linux?
Why would you install two operating systems on a machine where you cannot choose the OS at boot time? Can you change the default selection from inside windows and then reboot? It's just a case of changing a text file so I imagine so. Regards, M. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Problems handling 1 GB RAM
The first thing to do is to test the new memory very thoroughly. The first ram test tool I found on the net is at: http://www.memtest86.com/ It's GPL'ed - and comes as an iso so you can burn it (from another computer), boot from it and if it's anything like the one I use it'll run for about an hour or more, the longer the better, and do a pretty thorough test. If it throws up errors, try re-fitting the memory first of all. Best Wishes, Max -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Shutdown due to thermal event (sid)
I note that fan 4 has a max speed of 0RPM. I take it there is a convention which means that max=0 => no known maximum? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Nuevo Lanzamiento TODO EN PESOS en San Telmo
Si desea obtener más información haga CLICK AQUI Poné Me Gusta y recomendá nuestra Fan Page a tus amigos Si le ha llegado por error o desea darse de baja por favor presione este link
Nuevo Lanzamiento TODO EN PESOS en Zona Tecnológica
Si desea obtener más información haga CLICK AQUI Poné Me Gusta y recomendá nuestra Fan Page a tus amigos Si le ha llegado por error o desea darse de baja por favor presione este link
Emprendimiento de Alta rentabilidad, APART-BOUTIQUE, San Telmo
Si desea obtener más información haga CLICK AQUI Poné Me Gusta y recomendá nuestra Fan Page a tus amigos Si le ha llegado por error o desea darse de baja por favor presione este link
Invierta en Suites Hoteleras en Pleno Centro de CABA
Si desea obtener más información haga CLICK AQUI Poné Me Gusta y recomendá nuestra Fan Page a tus amigos Si desea desuscribirse o modificar sus preferencias presione este link