Re: ways to prevent certain programs accesing the internet in Linux
> I just wonder how I can control which programs can or cannot have > access to the internet/intranet or resources outside the local > computer. This may be what your are looking for. http://www.debian-administration.org/articles/120
How to automatic restore alsamixer settings with alsa-utils?
Hi, on my SID system, I experience that alsamixer settings are not restored after booting. It looks like /etc/rcS.d/S50alsa-utils is called at the wrong time (too early?). Because after rebooting I can restore alsamixer settings just by calling '/etc/init.d/alsa-utils start' or alternatively by calling 'alsactl restore'. And yes, alsa-utils is called while booting (I can see it's output). This is for quite a while now and just a bit annoying. I have this (kernel?) bug, where I have to switch off 'Headphone Jack Sense' and 'Line Jack Sense' to hear anything. Else, I wouldn't have noticed this alsa-utils behaviour. Did I miss something (maybe a packet or something)? Regards, Tim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Error message on upgrade & install
No luck googling ... This error message appears when apt-upgrading ( if there is(are) package(s) needed to be upgraded ), and installing. --- Traceback (most recent call last): File "/usr/bin/apt-history", line 33, in ? import apt_pkg ImportError: No module named apt_pkg -- But it upgrades the package(s) or installs successfully. Cheers, mslinuz -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: debian wireless setup
On Friday 26 August 2005 06:23, Ludovic Brenta wrote: > Ludovic Brenta <[EMAIL PROTECTED]> writes: > (typo in the To: address, resending) > > > Randy Foiles <[EMAIL PROTECTED]> writes: > >> OK. I am fully confused and ticked off :) > >> I am unable to configure ndiswrapper past > >> ndiswrapper -i bcmwl5.inf > >> ndiswrapper -L > >> bcmwl5 installed hardward present/driver present > >> modprobe ndiswrapper > >> > >> :error unknown ndiswrapper (I forget what but somethink like can't find) Try this: cd /usr/src/modules/ndiswrapper ./debian/rules binary-modules cd.. dpkg -i ndiswrapper-modules-.deb -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: mass user property changes
On Thursday, 25.08.2005 at 21:52 -0600, Dave Thayer wrote: > On Thu, Aug 25, 2005 at 10:33:21PM +0200, David Jardine wrote: > > Wouldn't > > > > #vi /etc/passwd > > /false > > cepasswd n.n.n.n.n (looking out for system accounts) > > > > That probably should be: > > #vipw /etc/passwd (...) > > According to man vipw: > [vipw] will set the appropriate locks to prevent file corruption Ah, didn't know that existed: nice. In my defence, my original suggestion used 'usermod' rather than directly editing /etc/passwd, which must at least in part be The Right Way :-) Dave. -- Please don't CC me on list messages! ... Dave Ewart - [EMAIL PROTECTED] - jabber: [EMAIL PROTECTED] All email from me is now digitally signed, key from http://www.sungate.co.uk/ Fingerprint: AEC5 9360 0A35 7F66 66E9 82E4 9E10 6769 CD28 DA92 signature.asc Description: Digital signature
i cant print from firefox?
Hi, I'm using a debian testing environment on my laptop, and most of the stuff works good now, but printing is still a bit strange. I can print pdfs with gpdf, and documents from openoffice, but I cant print anything from firefox, even though I select the same printers in the menus. I noticed that I have a line like this in the printer properties of firefox: lpr ${MOZ_PRINTER_NAME:+'-P'}${MOZ_PRINTER_NAME} I'm using cups, and I couldnt get the line above to work from the shell either, so it might be that? but what should the line say? :) Best regards, Eric -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to automatic restore alsamixer settings with alsa-utils?
Hi Tim, Try placing an executable file with "alsactl restore" in /etc/rc2.d and call the file S99alsa, or something. The important part is S99 which means alsactl is one of the last things which will be called while booting. David On Fri, 2005-08-26 at 09:54 +0200, Tim Ruehsen wrote: > Hi, > > on my SID system, I experience that alsamixer settings are not restored after > booting. It looks like /etc/rcS.d/S50alsa-utils is called at the wrong time > (too early?). Because after rebooting I can restore alsamixer settings just > by calling '/etc/init.d/alsa-utils start' or alternatively by calling > 'alsactl restore'. > > And yes, alsa-utils is called while booting (I can see it's output). > > This is for quite a while now and just a bit annoying. I have this (kernel?) > bug, where I have to switch off 'Headphone Jack Sense' and 'Line Jack Sense' > to hear anything. Else, I wouldn't have noticed this alsa-utils behaviour. > > Did I miss something (maybe a packet or something)? > > Regards, Tim > > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
How can I specify email address for log_accum.in (CVS)
Hi, I'd like to use the scripts log_accum.in for CVS and commit_prep.in for projects using CVS to send mails to a mailing list. I don't understand how to configure them well. Could you please help me to do this ? In fact, we are using CVS 1.12.9 included in Debian Sarge. I'm already tested other scripts but they didn't work well with the last format of message. I've downloaded the scripts from the package of CVS 1.12.10. So I've installed the scripts on CVSROOT on a project. I've changed the constant to use the new info format string, to emulate local users. I've put in CVSROOT/commitinfo : DEFAULT $CVSROOT/CVSROOT/commit_prep.in -- %r/%p %s And in CVSROOT/loginfo : DEFAULT $CVSROOT/CVSROOT/log_accum.in %{sVv} However I don't understand how I can specify the email where the message is sent. Could you please tell me this ? I seems that the email comes from the line : push(@mlist_list, &read_file_lines("$MLIST_FILE.$i.$id.$cvs_user")); And $MLIST_FILE.$i.$id.$cvs_user is the file : $TMPDIR/${FILE_PREFIX}files.mlist I don't understand how this file is generated. I had a look at commit_prep.in and it is : #!/usr/bin/perl $TMPDIR = $ENV{'TMPDIR'} || '/tmp'; $FILE_PREFIX = '#cvs.'; if ($ARGV[0] eq '-u') { shift @ARGV; $CVS_USERNAME = shift (@ARGV); } $LAST_FILE = "$TMPDIR/${FILE_PREFIX}lastdir"; sub write_line { my ($filename, $line) = @_; open(FILE, ">$filename") || die("Cannot open $filename: $!\n"); print(FILE $line, "\n"); close(FILE); } $id = getpgrp(); &write_line("$LAST_FILE.$id.$CVS_USERNAME", $ARGV[0]); exit(0); There is no mention of that file. Regards and thank you for your help. -- Xavier MOGHRABI - Consortium ObjectWeb Email: xavier.moghrabi at objectweb.org Phone: +33 4 76 61 52 35 - Skype ID: xavier.moghrabi.bureau
vim: non-root user in gnome-terminal
Hi all, I'm running sarge wuith Gnome and I have a problem when I start vim in a gnome-terminal (using vi, not gvim). No problem when I su root, but as a normal user I notice that any document I open gets scrambled as I try to move around the document. The document does not really get scrambled, rather it is its view in the terminal that does. When I resize (drag any border) the comamnd window where vim runs, the document view returns normal and since then I have no problems anymore. The TERM environment variable value is xterm for both root and non-root users. Any idea about which environment issue could affect vim behavior? Thanks in advance! P.S. Please reply on the list. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Sarge d-i and serial install
Hi, I hear rumours that if a machine has no video card, (sarge) debian-installer will try to open a serial console. I want to install on a mini-itx box with no monitor, but it's got a graphic card on-board that can't be disabled. Is there a way to have it start d-i on a serial console (say, not plug in a keyboard a la Sparc?). Even some set of commands to type in blind would help. Assuming I need to pass the kernel some custom CLI options, other strategies I can think of are: * boot floppy ( it's got no floppy drive either) * custom CD (when I asked about custom install CDs recently I got no answer) * boot d-i over PXElinux (an option? Bit cumbersome just for a serial console) Anyone know which are goers? Thanks in advance. -- Rasputin :: Jack of All Trades - Master of Nuns
Fwd: vim: non-root user in gnome-terminal
2005/8/26, Alex <[EMAIL PROTECTED]>: > Hi all, > > I'm running sarge wuith Gnome and I have a problem when I start vim in a > gnome-terminal (using vi, not gvim). > No problem when I su root, but as a normal user I notice that any > document I open gets scrambled as I try to move around the document. > The document does not really get scrambled, rather it is its view in the > terminal that does. > When I resize (drag any border) the comamnd window where vim runs, the > document view returns normal and since then I have no problems anymore. > > The TERM environment variable value is xterm for both root and non-root > users. > Any idea about which environment issue could affect vim behavior? > It might be a gterm configuration problem, you said in root no probs, while in non root you have problems, but non root is a single user (your personal account)? If yes you could try if vim works in gterm of another non root user (eventually you could create it). PAolo -- if you have a minute to spend pleas visit my photogrphy site: http://mypic.altervista.org
Re: OpenOffice Math and sum symbol
2005/8/25, Joachim Fahnenmüller <[EMAIL PROTECTED]>: > Hi Paolo, > > On Thu, Aug 25, 2005 at 06:44:33PM +0200, Paolo Pantaleo wrote: > > 2005/8/25, Jan T. Kim <[EMAIL PROTECTED]>: > > > On Thu, Aug 25, 2005 at 12:16:21PM +0200, Paolo Pantaleo wrote: > (...) > > > > > (1) Specify the sum symbol? It's missing from the snippet you quote, the > > > full spec should be: > > > > > > sum from{x} to{y} i > > Maybe i should know this... but on the other hand the Math button > > didn't put "sum" text > > There are two different buttons, look at the tooltips: The one showing only > 'sigma x' produces 'sum', the other one produces 'from to', i. e. the lower > and > upper boundary. These can be applied to the sum, product, integral, ... > signs, so > it makes sense that there are these different buttons. (Only the icon is a bit > misleading.) Yes it is the icon... > > > > > > (2) Use LaTeX if you can -- wrestling with OpenOffice's formula editor > > > easily wastes a lot of time... > > > > > hum... it sounds challenging :P > > Latex makes sense if you work with math formulas regularly. > What I like with OOO math: You can use the menu if you are a beginner or for > things you don't use often; for things you use more often you can learn the > keyword and type it. Well, once i started using latex, but i think it is a little difficult. now i have to do quickly a not so long work... so OO is perfect i think PAolo
Re: update-alternatives and window-manager and display-manager
2005/8/26, Marcel Gschwandl <[EMAIL PROTECTED]>: > On Mon, 2005-08-22 at 11:50 -0700, Marc Wilson wrote: > > > > I think that * update-alternatives is a good facility > > > > It isn't, really. > IMHO it is. Thnx fot the support Marcel, moreover i want to say that update-alternatives is documented in Debian Reference Manual, and it have a user interface, so it is not "internal". > > > > * there should be a unified method for chosing window/desktop manager or > > > whatever, since it gives the users some chances to do things without much > > > pain, and make easy to document and learn how things works > > > > No, actually a user should never be messing with the alternatives system. > > Further, users don't need to know and shouldn't have to know how things > > work. > Ok, not the average user, but root. I don't think that Paolo wanted each > user on the system to be able to change things with update-alternatives, > I think with user he meant a person with Debian installed on his > workstation, so this user would in fact have root privileges. > > > > > So, is update-alternatives the standard method? If not which is the > > > standard method? > > > > The standard method is to actually launch the environment you want. Gdm > > provides session files for this purpose, as does KDM. Xdm uses your > > ~/.xsession file. > Thats right, but update-alternatives would be the right place to set the > default one ( > In fact, so i think. Now just the last you install (kde, gnome, or whatever) let you configure, throught his own script, display manager and default desktop, and this is not good i think. Moreover there are a lot of single user Debian computer, and since Debian is one of the best distros about integrity and "out of the box" working, it is not so strange that a Debian root is kind of novice and doesn't know bash scripting, or other difficult things. PAolo
Fwd: call for a vote -- should debian-user mailing list replies go to author or to list?
2005/8/24, David Christensen <[EMAIL PROTECTED]>: > debian users: > > I am tired of replying to messages on this list, only to realize that my reply > went to the message author and not to the list. It is my understanding that > the > people in charge of this list think that his behavior is a feature, not a bug. > I disagree. > > > I acknowledge that this issue can be argued back and forth indefinitely, and > will never be unanimously decided. Therefore, I call for a simple majority > vote > to decide the matter, with a cutoff for voting of 72 hours from the time this > message is posted. > > > I vote for "Reply to list". > I vote for "Reply to list" it is more simple, i think that anybody at least onece replied to message author by mistake. PAolo -- if you have a minute to spend pleas visit my photogrphy site: http://mypic.altervista.org
Re: How to automatic restore alsamixer settings with alsa-utils?
Hi David, I linked /etc/init.d/alsa-utils to /etc/rc2.d/S98alsa-utils. That works fine (as I said: I works if I invoke it later). But this shouldn't be the general or official solution. Does it work for you by default, I mean without interfering manually? If yes, what's wrong with my system? Regards, Tim Am Freitag, 26. August 2005 10:16 schrieb David Huemer: > Hi Tim, > > Try placing an executable file with "alsactl restore" in /etc/rc2.d and > call the file S99alsa, or something. The important part is S99 which > means alsactl is one of the last things which will be called while > booting. > > David > > > > On Fri, 2005-08-26 at 09:54 +0200, Tim Ruehsen wrote: > > Hi, > > > > on my SID system, I experience that alsamixer settings are not restored after > > booting. It looks like /etc/rcS.d/S50alsa-utils is called at the wrong time > > (too early?). Because after rebooting I can restore alsamixer settings just > > by calling '/etc/init.d/alsa-utils start' or alternatively by calling > > 'alsactl restore'. > > > > And yes, alsa-utils is called while booting (I can see it's output). > > > > This is for quite a while now and just a bit annoying. I have this (kernel?) > > bug, where I have to switch off 'Headphone Jack Sense' and 'Line Jack Sense' > > to hear anything. Else, I wouldn't have noticed this alsa-utils behaviour. > > > > Did I miss something (maybe a packet or something)? > > > > Regards, Tim > > > > > > > > -- > 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: call for a vote -- should debian-user mailing list replies go to author or to list?
On Fri, Aug 26, 2005 at 04:51:06AM +0100, Wulfy wrote: } Gregory Seidman wrote: } } >On Thu, Aug 25, 2005 at 06:32:23AM +0100, Wulfy wrote: } >[...] } >} I find your side's evangelical zeal a little grating. If you have a } >} case, make it without calling those who disagree with you "brain-dead" } >} and "in denial". I thought there were standards of behaviour on this } >} list. Apparently, they only apply to those who disagree with you. } > } >First off, no one called you or anyone else brain-dead. What was labeled as } >brain-dead was your mail program of choice which does not honor } >Mail-Followup-To and does not handle list replies elegantly. Even your } >choice of mail program was not attacked, though I'd suggest that, having } >been enlightened about the existence of better mail programs you might want } >to change. } > } First, thank you for your polite reply. This is more the standard I expect } on e-mail lists. } } } } Oh, you use a brain-dead mailer that thinks it knows better than you? Your } loss. Think about it. } } } } If the mailer is "brain-dead" and I think it knows better than I do (if } I didn't, why would I use it? I'd craft my e-mails in a text editor and } hand send them, rather than using a tool specifically designed to do it } for me.) what does that make me? Uninformed. There is no shame in this as long as you seek to remedy it. It isn't that you knowingly chose a braindead mailer, but that the mailer you thought was modern and thoroughly compliant turns out not to be. Of course, now you are better informed. } I have had some ideas from this thread. It should not be difficult to } make e-mail clients have 4 buttons: Reply-To-Sender, Reply-To-List, } Reply-To-All and Forward. Mozilla clients would only need a small } change in the xul. Unfortunately, I don't program xul... } } But even if such patches were produced, how difficult would it be to get } them adopted in Debian? Or up-stream? I have no answers for these } questions, but the attitude of Marc Wilson and Paul Smith make it less } likely I'd ask anything on this list. That makes me sad as this is a } wonderful resource, squandered by bad manners. People are people all the world over. The difficulties of getting Mozilla to improve Thunderbird pale in comparison to the difficulties of making a world full of people, even the elite who have internet access (yes, we are the elite, we are among the wealthiest in the world), get along in perfect harmony. The best we can do is to maintain our calm and rationality and give others the benefit of the doubt. } Wulfmann --Greg -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to automatic restore alsamixer settings with alsa-utils?
On Fri, Aug 26, 2005 at 09:54:45AM +0200, Tim Ruehsen wrote: > on my SID system, I experience that alsamixer settings are not restored after > booting. It looks like /etc/rcS.d/S50alsa-utils is called at the wrong time > (too early?). Because after rebooting I can restore alsamixer settings just > by calling '/etc/init.d/alsa-utils start' or alternatively by calling > 'alsactl restore'. > > And yes, alsa-utils is called while booting (I can see it's output). I experienced the same problem. When alsa-utils was called, the driver module for my sound card was not loaded yet. alsa-utils wouldn't trigger autoloading of the module either, so it failed to restore the mixer settings. The module was autoloaded later, probably when KDE started up. My solution was to load the module explicitly in /etc/modules, so it gets loaded before /etc/init.d/alsa-utils is called. Installing discover or hotplug might also help, although I haven't tried this. There is some documentation at the top of /etc/init.d/alsa, and also in /usr/share/doc/alsa*/ . Mirko -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
unsuscribe
-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: email clients with reply-to-list feature
Hello, > >I would like to make a list of email clients which have a > > reply-to-list feature either built-in or as an add on. This is what I > > know so far from reading the archives. I am hoping that others would > > comment about whether their favorite email client has this feature or not. > > > > 1) mutt - Yes. > > 2) mozilla-thunderbird - no > > 3) outlook express - no > > kmail - yes > sylpheed-claws - yes > Evolution - yes Even my most-hated (www.dreckstool.de seems to be down for a while...) lotus notes has a reply-to-all button. I just think it is very unpractical that I have to delete the To: adress and therefore insert the CC adress... regards Markus Grunwald Softwareentwicklung PRÜFTECHNIK Condition Monitoring GmbH Oskar-Messter-Straße 19-21 85737 Ismaning www.pruftechnik.com Tel: +49 (0)89 99616177 Fax: +49 (0)89 99616200
Re: adding modules to an initrd image
On Thu, Aug 25, 2005 at 08:52:10PM -0500, Grant Thomas wrote: > I have recently installed Etch onto my computer, an ST20G5 from > shuttle. I am using a SATA HD, which is on a ULI SATA controller. > I am able to install to the hard-drive after I load the module > manually in the installer via modprobe. Everything installs fine, but > I have a problem on boot: > > When the initrd image tries to pivot_root, kernel panic happens > because it can't read the root fs correctly, and I think it is because > the SATA module isnt loaded by the initrd. You could check this by running (after having booted successfully, perhaps from another disk or a CD etc.) mount -t cramfs -o loop /mnt and then checking whether the modules in question are really absent. > Also the module sata_uli is > not in the /etc/modules directory. > I have tried just placing the module from the installer in > /etc/modules so it would load on boot, but it since it can't find the > fs to begin with, this is useless, as the initrd loads modules from > the image. Messing around with /etc/modules (or anything else on the file system other than the kernel and the initrd image files) won't solve the problem, as the kernel doesn't see the file system at the time the problem arises. > So, I have an un-bootable installation that needs an updated initrd > image. How would I go about creating this image? I've recently posted a similar question and got no answer, so I can't give one either. However, I solved my problem by compiling the stuff needed to boot my system (vesa framebuffer and framebuffer based console in my case) right into the kernel, rather than as a module. Perhaps, that's the easier way out of the problem. One advantage of the kernel building approach is that get a Debian kernel package that you can install with dpkg / aptitude etc., which may be much more convenient than manually assembling a custom initrd image file. Best regards, Jan P.S.: For the sake of knowing it, I'd still like to know how / whether it is possible to control the initrd assembly process of make-kpkg in order to get certain modules included -- I'm still puzzled by the fact that the modules were included in the initrd image in linux-image-2.6.12-1-686.deb but not in the initrd image in the package which I made from the Debian 2.6.12 kernel sources using make-kpkg... -- +- Jan T. Kim ---+ |*NEW*email: [EMAIL PROTECTED] | |*NEW*WWW: http://www.cmp.uea.ac.uk/people/jtk | *-=< hierarchical systems are for files, not for humans >=-* -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to automatic restore alsamixer settings with alsa-utils?
Hi, > I experienced the same problem. When alsa-utils was called, the driver > module for my sound card was not loaded yet. alsa-utils wouldn't trigger > autoloading of the module either, so it failed to restore the mixer > settings. The module was autoloaded later, probably when KDE started up. I have these lines in /etc/modules, but it does not help: snd-intel8x0 snd_pcm_oss Something else to test? > My solution was to load the module explicitly in /etc/modules, so it > gets loaded before /etc/init.d/alsa-utils is called. Installing > discover or hotplug might also help, although I haven't tried this. I have hotplug installed (I never got my USB working until I installed hotpug). But that is not the solution. > There is some documentation at the top of /etc/init.d/alsa, and also in > /usr/share/doc/alsa*/ . Due to the docs in /etc/init.d/alsa-utils, /etc/rcS.d/S50alsa-utils should be the right choice to restore alsa settings. Do you know how to switch /var/log/boot.log (or similar) on? I definitely do not have the boot messages written into a log file. See this: -rw-r--r-- 1 root root 4036 Dec 29 2003 boot -rw-r--r-- 1 root root 3306 Dec 11 2003 boot.0 It stopped ~Dec 29th 2003. Some experiments with /etc/syslog.conf and local7.* just generated an empty file. Regards, Tim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
/media/cdrom0 disappears
Hi, My /media/cdrom0 disappears by itself. I run testing on a Dell Inspiron 8600 with a DVD-RW drive in a removable bay. Every time I reboot it looks like: nils:/# ls -l /media/ totalt 0 lrwxrwxrwx 1 root root 6 2004-12-12 23:51 cdrom -> cdrom0 nils:/# and I can't use my CD/DVD drive. I then do (as root): nils:/# mkdir /media/cdrom0 nils:/# ls -l /media/ totalt 4 lrwxrwxrwx 1 root root6 2004-12-12 23:51 cdrom -> cdrom0 drwxr-xr-x 2 root root 4096 2005-08-26 11:52 cdrom0 and now I can use my CD/DVD. The disappearing didn't happen from the beginning, I think it started when I once unplugged the DVD-drive - I just yanked it out of the bay while the computer was running. Any suggestions on a permanent cure? Or what data should I supply for further debugging? Best Regards /Gerhard Start your day with Yahoo! - make it your home page http://www.yahoo.com/r/hs -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: i cant print from firefox?
On Fri, 26 Aug 2005 10:40:12 +0200, Eric Persson wrote: > I'm using cups, and I couldnt get the line above to work from the shell > either, so it might be that? but what should the line say? :) Cups (if you've got cupsys-bsd installed) provides an lp command rather than an lpr one. You should also install xprint-xorg if you've not already got it. -- Stephen Patterson [EMAIL PROTECTED] http://patter.mine.nu/ GPG: E3E8E974 Jabber: patter on jabber.earth.li MSN: [EMAIL PROTECTED] "Whoever said nothing is impossible never tried slamming a revolving door." -- Melissa O'Brien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to compile in Debian?
Sent: Thursday, August 25, 2005 8:01 AM Subject: Re: How to compile in Debian? On 8/25/05, Teilhard Knight <[EMAIL PROTECTED]> wrote: Suppose you want to compile your drivers for your wireless adapter, which is what I actually want to do. If I am not mistaken, I need a build symbolic link in "uname -r" to the kernel-source, and I need a linux symbolic link from /usr/src where to the kernel source too, which also resides there. Now, uname -r is for me: 2.6.8-2-686-smp, and the kernel source for a 2.6.8 in the distribution only is found with Debian version 16 (2.6.8-16). Are the kernel source and my kernel compatible? Well, I am a newbie in Debian, and I am translating the little I know about Mandrake. First think that called my attention was that after a fresh install of Debian, the directory /usr/src, was empty. I would appreciate any help you can give me to compile my drivers. And yes, I have Googled but without luck. apt-get install module-assistant m-a prepare That'll install the right kernel headers for you. Thank you very much. I did as you said, but when I issue the command "m-a prepare", I get the warning: "/usr/src/kernel-source-2.6.8 seems to contain unconfigured kernel source". Is that bad?, and if so, how can I configure my kernel source? I know how to configure the kernel, but not the kernel source. I aborted and still the program installed the package "build essential". I issued the command again and the warning keeps coming up. Could you tell me what to do?. Thanks. Teilhard. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Fwd: call for a vote -- should debian-user mailing list replies go to author or to list?
Paolo Pantaleo wrote: I vote for "Reply to list" it is more simple, i think that anybody at least onece replied to message author by mistake. PAolo Is it really all that hard? 'Reply to all' (in this case, Thunderbird), and delete the non-applicable address. It is possible to have life too easy. How about the vast majority of user space that may never subscribe to a list? Keep things simple, and free of bloat. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Portable OGG Player
On 8/6/05, Steven Pasternak <[EMAIL PROTECTED]> wrote: > Hi! Does anybody know if there is such thing as a portable OGG player? > (like iPod,MuVO,etc. NOT software) > -Steven I'm going to buy a samsung YP-C1Z, which is a 1GB flash player that supports ogg and is quite reasonable in price (I think). I'll post here how it turns out. greets, Wim
Re: Newbie: How-to Disable onboard sound
On 8/24/05, Joachim Fahnenmüller <[EMAIL PROTECTED]> wrote: > Hi Roger, > > On Mon, Aug 22, 2005 at 10:47:18PM -0400, Roger Creasy wrote: > > Hello: > > > > I am trying to get ALSA to use an Ensonic 1371 sound card instead of > > the onboard card. I cannot find a way to disable the onboard card in > > the bios. > > Read your motherboard's manual. On mine, it is not done by BIOS setting, but > by > a jumper on the motherboard. > > > Also, I want to use Audacity, but get errors when it starts. > > Start audacity from the commandline and post the error messages displayed. > Do other sound programs work? > > > any suggestions? If you need more info, let me know what you need and > > how I can find it, and I will post it. > > HTH > -- > Joachim Fahnenmüller > > Thanks for the reply. I dropped trying to use the ens 1371. It doesn't have a synth built in, and I want to set up Rosegarden later. I don't want to deal with software synth when I do. So, now I am trying to get the onboard sound to work with Audacity. Here is the error I get when I start from the command line: "There was an error initializing the audio i/o layer. You will not be able to play or record audio. Error:Host error." Let me know what else I can post that may help. Thanks
Re: Portable OGG Player
On Friday, 26.08.2005 at 13:07 +0200, Wim De Smet wrote: > On 8/6/05, Steven Pasternak <[EMAIL PROTECTED]> wrote: > > Hi! Does anybody know if there is such thing as a portable OGG player? > > (like iPod,MuVO,etc. NOT software) > > -Steven > > I'm going to buy a samsung YP-C1Z, which is a 1GB flash player that > supports ogg and is quite reasonable in price (I think). I'll post > here how it turns out. I got an Ibead 400: 1GB flash RAM and a 'proper' USB mass storage interface. http://www.goaudio.co.uk/viewprod.php?flt=&search=i-bead&vt=list&product_id=2944&max_cat_id=-1&vt=list Dave. -- Please don't CC me on list messages! ... Dave Ewart - [EMAIL PROTECTED] - jabber: [EMAIL PROTECTED] All email from me is now digitally signed, key from http://www.sungate.co.uk/ Fingerprint: AEC5 9360 0A35 7F66 66E9 82E4 9E10 6769 CD28 DA92 signature.asc Description: Digital signature
blind spot for java
Hi, I know this might seem a little strange but my system seems to have developed a blind spot for Java. I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to execute [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java I get bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory which is quite plainly wrong as the file most certainly does exist and has execution rights. I have another (very slightly older and 64-bit) version of Java installed via java-package which works fine but I need to get this one working. Any ideas what might be wrong? All the other applications seems to be working fine. I have re-installed the JDK and tried other versions and all produce the same message. This is a long shot I know but I am using the 64bit debian port and this is a 32bit VM it is therefore relying on some libraries provided by the 32bit chroot. It was working fine yesterday but I also upgraded the chroot yesterday. I'm wonering if the two could be linked. The problem is that it just doesn't seem to even find the java file to get. TIA, Graham. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: adding modules to kernel
Adam Hardy <[EMAIL PROTECTED]> writes: > Secondly, why do I need root privileges for make-kpkg kernel-image? This > step merely creates the kernel*.deb file, I thought. Perhaps fakeroot works? See the --rootcmd option for make-kpkg. Kai -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
It took me a couple of times to notice I had a slight typo in my setup before I reeally relaized what was going on, once I slowed down and double checked my install from( http://www.debian.org/doc/manuals/debian-java-faq/ch11.html ) all went quite well. On Friday August 26 2005 7:32 am, Graham Smith wrote: > Hi, > > I know this might seem a little strange but my system seems to have > developed a blind spot for Java. > > I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to execute > > [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java > > I get > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > which is quite plainly wrong as the file most certainly does exist and has > execution rights. I have another (very slightly older and 64-bit) version > of Java installed via java-package which works fine but I need to get this > one working. > > Any ideas what might be wrong? > > All the other applications seems to be working fine. I have re-installed > the JDK and tried other versions and all produce the same message. This is > a long shot I know but I am using the 64bit debian port and this is a 32bit > VM it is therefore relying on some libraries provided by the 32bit chroot. > It was working fine yesterday but I also upgraded the chroot yesterday. I'm > wonering if the two could be linked. The problem is that it just doesn't > seem to even find the java file to get. > > TIA, Graham. -- Bill Day "A rich man isn't always wealthy, he just has all the love he can give and ever wanted.." http://counter.li.org #384146 284016 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
nforce4 PATA support?
Hi, after some research, I ordered a MSI Neo4 Platinum Mainboard, which uses the nforce 4 chipset. Until today, I was fairly confident that I could get the planned configuration to run, but just now I'm not so sure anymore. Each and every writeup I found so far on the 'net talked only about SATA support, which I won't need. I need my PATA drive to work, preferably without an expensive adapter. The kernel up to 2.6.12.5 doesn't seem to have any support for PATA on any nforce chipset. Is it really impossible to use it? Or is it just part of the SATA driver? Does someone here have experience with that topic? -- Got Backup? Jabber: Shadowdancer at jabber.fsinf.de pgpBeAEOb4hOn.pgp Description: PGP signature
Re: blind spot for java
Thanks for the pointer. The problem, though, is not getting Java installed; I have it installed and I am using the 64bit linux version as I write. The problem is that a 32bit VM that I use (because the 64 bit version doesn't have a client mode) has for some reason stopped working. I am concerned that it claims the file is not found when it is, plain as day, sitting there on the disk and is displayed with ls -l with all the right permissions. My initial thought was I had some how been rooted but I have run chkrootkit and that doesn't seem to be the case. I also think that it would be a strange root kit that took out only 32bit JVMs on AMD64 :o) Graham On Friday 26 August 2005 11:52, Bill Day wrote: > It took me a couple of times to notice I had a slight typo in my setup > before I reeally relaized what was going on, once I slowed down and double > checked my install > from( http://www.debian.org/doc/manuals/debian-java-faq/ch11.html ) all > went quite well. > > On Friday August 26 2005 7:32 am, Graham Smith wrote: > > Hi, > > > > I know this might seem a little strange but my system seems to have > > developed a blind spot for Java. > > > > I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to > > execute > > > > [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java > > > > I get > > > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > > > which is quite plainly wrong as the file most certainly does exist and > > has execution rights. I have another (very slightly older and 64-bit) > > version of Java installed via java-package which works fine but I need to > > get this one working. > > > > Any ideas what might be wrong? > > > > All the other applications seems to be working fine. I have re-installed > > the JDK and tried other versions and all produce the same message. This > > is a long shot I know but I am using the 64bit debian port and this is a > > 32bit VM it is therefore relying on some libraries provided by the 32bit > > chroot. It was working fine yesterday but I also upgraded the chroot > > yesterday. I'm wonering if the two could be linked. The problem is that > > it just doesn't seem to even find the java file to get. > > > > TIA, Graham. > > -- > > > Bill Day > > "A rich man isn't always wealthy, he just has all the love he can give and > ever wanted.." > http://counter.li.org #384146 284016 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
Graham Smith wrote: >I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to >execute >> >> [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java >> >I get >> bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory >which is quite plainly wrong as the file most certainly does exist and >has execution rights. > > >I am concerned that it claims the file is not found when it is, plain as day, >sitting there on the disk and is displayed with ls -l with all the right >permissions. My initial thought was I had some how been rooted but I have run >chkrootkit and that doesn't seem to be the case. I also think that it would >be a strange root kit that took out only 32bit JVMs on AMD64 :o) > How 'bout showing us the output of "ls -l /usr/local/jdk1.5.0_04/bin/java"? Here's mine: [EMAIL PROTECTED]:/home/westk> ls -l /usr/local/jdk1.5.0/bin/java -rwxr-xr-x 1 root staff 64492 Sep 15 2004 /usr/local/jdk1.5.0/bin/java -- Kent -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Can't install Sarge on an HP NetServer
On Thu, 25 Aug 2005 21:33:32 +0100, Clive Menzies wrote: > On (25/08/05 11:27), Raquel Rice wrote: > > "marco_elen" <[EMAIL PROTECTED]> wrote: > > > Finally after many tries and (actually unuseful) web searches I > > > could install Debian on an HP NetServer LH4. As suggested by > > > Raquel I simply installed Woody booting with "vanilla". I > > > installed only the base system from the first cd. > > > > > > Now I have to upgrade to Sarge. > > > Can I do it simply with apt-get dist-upgrade ? > > > Will this remove the old kernel and replace with a kernel that > > > won't work ? (I'm afraid I'll encounter the same SCSI problem I > > > experienced while trying to install Sarge, but can anyone please > > > tell if I'm wrong?) > > > > The upgrade "manual" suggests using aptitude dist-upgrade and doing > > the kernel upgrade in a separate step. After upgrading to Sarge, I > > later upgraded the kernel on the server to 2.4.27 and all went well. > > But keep your old kernel around ... just in case. ;-) > > > > BTW ... I'm booting off the SCSI drive too. Sorry, but I can't understand the meaning of this last sentence (my english is not good) > > I've got an LH3 also upgraded to sarge recently (from an original woody > install) and upgrading with aptitude worked flawlessly. I also had a > couple of LHPro200's which I've now given away but the last one also > upgraded to sarge without a problem. The all booted off the SCSI RAID > drives. > > Regards > > Clive Ok, so I can install a base Woody, then add the Sarge cd-rom to apt sources and launch apt-get dist-upgrade. May I also upgrade to a new kernel (If I install also a newer kernel will the system still be able to see the drives)? I'm asking this because I couldn't do a Sarge installation because of the error reported in my first e-mail: error loading "modprobe -v sym53c8xx_2" Furthermore I have two 2G disks, which I would prefer to manage with LVM. I read I have these alternatives: 1) Make the LVM arrangement of the disks at installation time (I've seen an HOWTO about this: Root-on-LVM-on-RAID HOWTO). But this would require to use a kernel from a diskette, and I don't know if this kernel will recognize my SCSI drives (as up to now I could only do it booting Woody with vanilla). 2) Install Woody on first disk (partitioned as ext2), and after installation change it to LVM (described in the LVM HOWTO). I'm proceeding this way, but I don't know when it is best to do the LVM conversion: before or after upgrading to sarge, before or after an (eventual) upgrade to a new kernel. Also, which version of LVM shall I use (of course this depends on which kernel I will be able to install)? Has anyone else used LVM on a NetServer with Debian? Thanks for your help; It's very helpful because I'm a bit confused (It's my first attempt in installing a server). Best regards, Marco Ballini 6X velocizzare la tua navigazione a 56k? 6X Web Accelerator di Libero! Scaricalo su INTERNET GRATIS 6X http://www.libero.it
Re: blind spot for java
On Friday 26 August 2005 13:10, Kent West wrote: > > How 'bout showing us the output of "ls -l > /usr/local/jdk1.5.0_04/bin/java"? Here's mine: > > [EMAIL PROTECTED]:/home/westk> ls -l /usr/local/jdk1.5.0/bin/java > -rwxr-xr-x 1 root staff 64492 Sep 15 2004 /usr/local/jdk1.5.0/bin/java Well if you show me yours I suppose I have got to show you mine ;o) [EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ ll total 3160 -rwxr-xr-x 1 root staff 72760 2005-08-26 12:21 appletviewer -rwxr-xr-x 1 root staff 71600 2005-08-26 12:21 apt -rwxr-xr-x 1 root staff 4153 2005-08-26 12:21 ControlPanel -rwxr-xr-x 1 root staff 71600 2005-08-26 12:21 extcheck -rwxr-xr-x 1 root staff 1080 2005-08-26 12:21 HtmlConverter -rwxr-xr-x 1 root staff 71632 2005-08-26 12:21 idlj -rwxr-xr-x 1 root staff 71600 2005-08-26 12:21 jar -rwxr-xr-x 1 root staff 71600 2005-08-26 12:21 jarsigner -rwxr-xr-x 1 root staff 64492 2005-08-26 12:21 java ... snip more progs ... [EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ ./java -version bash: ./java: No such file or directory foo is a member of group staff but the problem is the same if I try and run it as root. Odd isn't it? Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: upgrade from kernel 2.4 to 2.6
Jon Dowland <[EMAIL PROTECTED]> writes: > apt-get install kernel-2.6, for stable > in unstable (and poss.testing) renamed to sometihng else, do dpkg -l > '*kernel*' In unstable, it's linux-image instead of kernel-image, linux-headers instead of kernel-headers, and so on. Kai -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Nagios : need some advice
Hello, I'm new user of nagios, and i'm not sure of everything i want to do. All is ok, but my boss (he give me a lot of trouble!) want to nagios do the service check faster (every 10second for example). So a lot of question come into my too small head : - Do i need to use another monitoring software? - Is MRTG(i'm think now it has a new name) could be useful for me? - Is this setup could be interressant for me : In the main configuration file, the unit of time is set to 10sec : timing_interval_lenght = 10 And the update of status : status_update_interval = 10 If i do so, i change my check_normal_interval for all my service in the service configuration file. And maybe i must change another option (but what options?) and is nagios will be happy to do as i want? Say me if you think that my idea is not so bad. thanks. nk.
U.S. federal income tax program
Are there any income tax computation programs available for Linux (Debian)? Since Google has not found any, I assume the answer is "no"; so what is the best solution (well-debugged, simple to use, relatively long-lived) one can find short of installing a separate partition or disk which can handle either a Windows- or Mac-compatible program? By the way, this is virtually the only Windows or Mac application I would normally use. sam -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
Graham Smith wrote: >On Friday 26 August 2005 13:10, Kent West wrote: > > >>[EMAIL PROTECTED]:/home/westk> ls -l /usr/local/jdk1.5.0/bin/java >>-rwxr-xr-x 1 root staff 64492 Sep 15 2004 /usr/local/jdk1.5.0/bin/java >> >> > >[EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ ll >total 3160 >-rwxr-xr-x 1 root staff 64492 2005-08-26 12:21 java > >[EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ ./java -version >bash: ./java: No such file or directory > >foo is a member of group staff but the problem is the same if I try and run it >as root. > >Odd isn't it? > > Yes, it is. Try performing some other action on the file, such as renaming it. Also try it from a different shell (tcsh, etc). -- Kent -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Nagios : need some advice
On Fri, Aug 26, 2005 at 12:36:29PM +, [EMAIL PROTECTED] wrote: > - Do i need to use another monitoring software? I depends on what you want to monitor and what your boss wants to see. I recently started using munin in addition to nagios and other monitoring software and I am impressed with the ease of installation. I have not fully mastered it yet, but it is already very usefull and helped me to identify a misconfiguration on one of my servers. > If i do so, i change my check_normal_interval for all my service in the > service configuration file. And maybe i must change another option (but > what options?) and is nagios will be happy to do as i want? Every 10 seconds can put a lot of load on your network connections especially if you monitor a lot of services and servers. I would certainly not do that for most of the servers/services. Regards Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van Stellenbosch "Seeing then that all these things shall be dissolved, what manner of persons ought ye to be? You ought to live holy and godly lives as you look forward to the day of God and speed its coming." II Peter 3:11,12 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Fwd: vim: non-root user in gnome-terminal
It might be a gterm configuration problem, you said in root no probs, while in non root you have problems, but non root is a single user (your personal account)? If yes you could try if vim works in gterm of another non root user (eventually you could create it). PAolo you're right. it works with other users. Thanks: I then looked at my .vimrc and found the answer: I was using "set columns" and "set lines" in it, which doesn't really make sense in xterm mode Ciao, Alex -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
Graham Smith <[EMAIL PROTECTED]> writes: > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory This message makes you think that /usr/local/jdk1.5.0_04/bin/java does not exist. But that is sometimes wrong. Look if this file is a shell script. If so, look at its shebang line and fix it if necessary. (If you have a script /bin/foo that starts with "#!/bin/bar", but you don't have /bin/bar, then you'll get a message "/bin/foo: No such file or directory", but the truth is that it is the file /bin/bar that's missing...) Kai -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
tiny fonts in xmms and xchm
Hi, there are two applications in my sarge installation (using GNOME) for which displayed fonts are so small that I can't even read them. This also applies to the menu items. I have the same problem with xmms and xchm, but all the other applications are fine. Any idea? FYI, an excerpt from dpyinfo: XFree86 version: 4.3.0.1 dimensions:1280x1024 pixels (342x271 millimeters) resolution:95x96 dots per inch Preemptive thanks! Alex -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 13:47, Kent West wrote: > > Try performing some other action on the file, such as renaming it. Yep I can rename it. -rwxr-xr-x 1 root staff 64492 2005-08-26 12:21 javarenamed # ./javarenamed -su: ./javarenamed: No such file or directory > > Also try it from a different shell (tcsh, etc). > I've never switched shell before so here's my best guess at how to do it (I feel like a complete noob now :o)) [EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ tcsh foo:/usr/local/jdk1.5.0_04/bin> ./java ./java: Command not found. foo:/usr/local/jdk1.5.0_04/bin> ls -l -rwxr-xr-x 1 root staff 64492 2005-08-26 12:21 java foo:/usr/local/jdk1.5.0_04/bin> exit exit [EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ sh sh-3.00$ ./java sh: ./java: No such file or directory sh-3.00$ exit exit [EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ csh foo:/usr/local/jdk1.5.0_04/bin> ./java ./java: Command not found. Looks like it doesn't work in any shell. I have tried moving the JDK install to another location on the disk as well (to under /var/local) and no joy their either. Graham > -- > Kent -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: email clients with reply-to-list feature
[EMAIL PROTECTED] wrote: Hello, I would like to make a list of email clients which have a reply-to-list feature either built-in or as an add on. This is what I know so far from reading the archives. I am hoping that others would comment about whether their favorite email client has this feature or not. 1) mutt - Yes. 2) mozilla-thunderbird - no 3) outlook express - no kmail - yes sylpheed-claws - yes Evolution - yes Even my most-hated (www.dreckstool.de seems to be down for a while...) lotus notes has a reply-to-all button. I just think it is very unpractical that I have to delete the To: adress and therefore insert the CC adress... regards Markus, I did not understand your statement completely. Could you explain more clearly? Does lotus notes have reply-to-list feature? Please note that reply-to-all is different from reply-to-list. reply-to-all means replying to the sender+mailing list under consideration. reply-to-list means replying to mailing list alone. raju -- Kamaraju S Kusumanchi Graduate Student, MAE Cornell University http://www.people.cornell.edu/pages/kk288/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 13:30, Kai Grossjohann wrote: > Graham Smith <[EMAIL PROTECTED]> writes: > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > This message makes you think that /usr/local/jdk1.5.0_04/bin/java does > not exist. But that is sometimes wrong. Look if this file is a shell > script. If so, look at its shebang line and fix it if necessary. > > (If you have a script /bin/foo that starts with "#!/bin/bar", but you > don't have /bin/bar, then you'll get a message "/bin/foo: No such file > or directory", but the truth is that it is the file /bin/bar that's > missing...) > > Kai Cheers, Unfortunately I had thought of that and the java file in question is a binary not a shell script. Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Installation problems
Ken Heard wrote: > After considerable web research on various distros I decided to > try the then new Debian 3.1r0a-i386 "Sarge". > > After booting -- I thought successfully -- strange things happened > which did not strike me as quite right. For example: > > 1. Printing > > I tried first to use CUPS. However, it would only print pdf, html > and plain text files from Konqueror. It would not print anything from > Mozilla, nor would it print in terminal mode using the lpr command. I > then tried LPRng, but nothing would print. Printing is still a nightmare in Linux, in my opinion. Some ideas: * "apt-get install cupsys"; point your web browser to "http://localhost:631/admin"; * be aware that some printing systems on Debian use lpr; some use lp; with CUPS, you may need to install cupsys-bsd or some similar package * printer drivers for cups has, at least in the past, been in some oddly-named package referring to gimp, something like gimp-printer-drivers. Your instinct is to think that printing is more generic than gimp printing, therefore this package must be irrelevant. It's not. * basically, you need to do research. As mentioned, printing is still a nightmare in Linux. > 2. Removable media > > I could not use the 9 cm floppy drive. Let's see; 2.54 inches to a cm, therefore 9 * 2.54 is something like 18 and some change; wow! An 18- to 27-inch floppy?! Oh, wait, I never could do math. Maybe that should be 9 / 2.54, which is going to be somewhere around 3 inches or so. I bet you're referring to a 3.5 inch floppy. > It took an inordinate time to mount. When it did, I could not write > anything to an empty mounted floppy. The machine returned the message > "disk full". Have you tried a different floppy. What specific command are you using to mount the floppy? > > Konqueror apparently has provision to unmount and eject CDROMs by > right-clicking on the appropriate file. However this feature did not > work. I discovered that I could only unmount CDROMs in root. You probably need to make the cdrom device mountable by normal users. I believe this is done in the /etc/fstab entry for your cdrom. There may be some sort of debconf setting that controls this as well, such as "dpkg-reconfigure cdrom", but I can't think of anything other than k3b and similar cdrom-accessing applications that have such debconf settings, so don't spend too much time researching this line of thought. > > I also have an internal Zip 750 drive connected to one of the IDE > cables. This drive I could not use at all. I've never used Zip on Debian, but I remember from reading posts several years back that you have to mount the sda4 partition (I believe). > There were several other problems, but these will do for now. > Perhaps the others will disappear if these ones are rectified. In general, you'll probably get better responses if you post only one problem per thread. > What I did last week was to take the hda in the P3 box and install > it in the P4 box in place of the hda in the P4 box which had RH 8 > installed on it. On boot up, hotplug installed without error. Since you said "these will do for now", and then had a bunch of error logs that didn't seem relevant to the above-mentioned problems, I nearly missed this stuff at the end. > However, another problem occurred. Neither XFree86 nor KDE would > boot. The boot process left the machine in terminal mode with the > shell octothorpe prompt (#). When I ran the command startx the machine > would not respond. The last message in the boot up log read: > > Fatal server error: > no screens found This is a generally useless error message. What's important is the stuff above, like what you include further down. > > I did however notice one oddity in this log file. Almost at the > end of it appears this entry: > > (II) MGA: driver for Matrox chipsets: mga2064w, mga1064sg, mga2164w, > mga2164w AGP, mgag100, mgag100 PCI, mgag200, mgag200 > PCI, mgag400, mgag550 > > I find this entry suspicious. The P3 Celeron Coppermine box, > where I originally tried to install Sarge, has a Matron AGP video > card. It was possible to run KDE on this box, although there were > several features which would not work, including 1 and 2 above. > > However, the P4 box has Radeon 7500 card, which presumably > requires a different front end. If so, should not Sarge be able to > find it? I did note that earlier in the log file the Radeon card is > correctly identified. Sarge's version of X still relies fairly heavily on manual configuration. Try running "dpkg-reconfigure xserver-xfree86". Below are some of the more interesting tidbits relating to your problems. > (II) MGA: driver for Matrox chipsets: mga2064w, mga1064sg, mga2164w, > mga2164w AGP, mgag100, mgag100 PCI, mgag200, mgag200 PCI, mgag400, > mgag550 > (II) Primary Device is: PCI 01:00:0 > (EE) No devices detected. > > Fatal server err
rsync knoppix dvd download
How to download knoppix dvd using rsync. I am accessing internet through a proxy. I tried rsync src des. I get error as [EMAIL PROTECTED] ~]$ rsync ftp://ftp.free.fr/mirrors/download.linuxtag.org/knoppix/dvd/KNOPPIX_V4.0DVD-2005-08-16-EN.iso /mnt/wind/lvg/Linux/ ssh: ftp: Temporary failure in name resolution rsync: connection unexpectedly closed (0 bytes received so far) [receiver] rsync error: error in rsync protocol data stream (code 12) at io.c(359). Any pointer is welcome. -- L.V.Gandhi http://lvgandhi.tripod.com/ linux user No.205042
Re: Nagios : need some advice
>> - Do i need to use another monitoring software? >I depends on what you want to monitor and what your boss wants to see. The essential things to monitor is switch, gateway .. >Every 10 seconds can put a lot of load on your network connections >especially if you monitor a lot of services and servers. I would >certainly not do that for most of the servers/services. So i will set a fast monitoring only for things like cpu load. thanks for your advice.
Problem with update of libc6 in unstable?
I have tried to update libc6 in unstable. Every time I try it says it will remove my active kernel. I have not seen that before or if so I have forgotten it. I am using a kernel that I compiled ver 2.4.22 I do NOT want to upgrade my kernel as I will need to recompile it for my hardware. Is this a normal situation when upgrading libc6 or is this a bug? -- John Foster -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Debian Wiki Down: Permanantly?
On Thu, Aug 25, 2005 at 08:23:00PM -0400, kamaraju kusumanchi wrote: > http://www.linuks.mine.nu/debian-faq-wiki/ This wiki was developed by folks in #debian on irc to answer the FAQs we get on a daily basis. Accounts are limited but can be requested from the maintainer. -- asg -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: rsync knoppix dvd download
On Fri, Aug 26, 2005 at 06:38:56PM +0530, L.V.Gandhi wrote: > How to download knoppix dvd using rsync. I am accessing internet > through a proxy. I tried rsync src des. I get error as > [EMAIL PROTECTED] ~]$ rsync > ftp://ftp.free.fr/mirrors/download.linuxtag.org/knoppix/dvd/KNOPPIX_V4.0DVD-2005-08-16-EN.iso > /mnt/wind/lvg/Linux/ If you want to download from ftp.free.fr first make sure there is an rsync server willing to serve you: $rsync ftp.free.fr::(Note no ftp:// here) rsync: failed to connect to ftp.free.fr: Connection refused (111) rsync error: error in socket IO (code 10) at clientserver.c(99) $ It does not seem to be the case. Anyhow if there was one, it would have replied with the names of the rsync packages available. Let us try download.linuxtag.org: $ rsync download.linuxtag.org:: knoppix KNOPPIX rsync repository OpenBSD OpenBSD rsync repository $ Now there is progress. Next step: $ rsync download.linuxtag.org::knoppix/dvd/ drwxr-xr-x4096 2005/08/23 16:07:50 . -rw-r--r-- 35634 2005/08/18 03:34:26 KNOPPIX-CHANGELOG.txt -rwxr--r--1320 2005/08/18 03:36:03 KNOPPIX_V4.0.1DVD-knoppix-terminalserver.patch -rw-r--r-- 68 2005/08/16 09:03:56 KNOPPIX_V4.0DVD-2005-08-16-DE.iso.md5 -rw-r--r-- 304 2005/08/16 09:22:30 KNOPPIX_V4.0DVD-2005-08-16-DE.iso.md5.asc -rw-r--r-- 76 2005/08/16 09:09:14 KNOPPIX_V4.0DVD-2005-08-16-DE.iso.sha1 -rw-r--r-- 312 2005/08/16 09:22:33 KNOPPIX_V4.0DVD-2005-08-16-DE.iso.sha1.asc -rw-r--r-- 68 2005/08/16 09:13:36 KNOPPIX_V4.0DVD-2005-08-16-EN.iso.md5 -rw-r--r-- 304 2005/08/16 09:22:35 KNOPPIX_V4.0DVD-2005-08-16-EN.iso.md5.asc -rw-r--r-- 76 2005/08/16 09:18:17 KNOPPIX_V4.0DVD-2005-08-16-EN.iso.sha1 -rw-r--r-- 312 2005/08/16 09:22:37 KNOPPIX_V4.0DVD-2005-08-16-EN.iso.sha1.asc -rw-r--r-- 138 2005/08/17 18:39:41 __the_big_iso_only_via_rsync__ -rw-r--r--9656 2005/08/16 11:04:02 knoppix-cheatcodes.txt -rw-r--r-- 260219 2005/08/16 09:25:06 packages-dvd.txt $ Now I can download the dvd using $ rsync -av --progress --partial download.linuxtag.org::knoppix/dvd/KNOPPIX_V4.0DVD-2005-08-16-EN* . to download all the files starting with KNOPPIX_V4.0DVD-2005-08-16-EN to the directory from where I am working. Regards Johann -- Johann Spies Telefoon: 021-808 4036 Informasietegnologie, Universiteit van Stellenbosch "Seeing then that all these things shall be dissolved, what manner of persons ought ye to be? You ought to live holy and godly lives as you look forward to the day of God and speed its coming." II Peter 3:11,12 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Sendmail woes
On Thu, 2005-25-08 at 14:14 -0700, Alvin Oga wrote: > use sendmail from sendmail.org ... and it'd work fine > > you will also need to have the proper support files in addition > to access Yes, I could install the version from sendmail.org, however that's not what I would prefer. The debian package should still be able to support mailertable and access table with the make without me having to jump through hoops. Could this possibly be a bug? -- o)Derek Wueppelmann (o (D .[EMAIL PROTECTED]D). ((` http://monkey.homeip.net/ ( ) ` signature.asc Description: This is a digitally signed message part
Re: U.S. federal income tax program
Sam Rosenfeld wrote: Are there any income tax computation programs available for Linux (Debian)? Since Google has not found any, I assume the answer is "no"; so what is the best solution (well-debugged, simple to use, relatively long-lived) one can find short of installing a separate partition or disk which can handle either a Windows- or Mac-compatible program? By the way, this is virtually the only Windows or Mac application I would normally use. sam I have searched for this before and there are none AFAIK. raju -- Kamaraju S Kusumanchi Graduate Student, MAE Cornell University http://www.people.cornell.edu/pages/kk288/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: U.S. federal income tax program
On Friday 26 August 2005 13:37, Sam Rosenfeld wrote: > Are there any income tax computation programs available for Linux > (Debian)? Since Google has not found any, I assume the answer is "no"; so > what is the best solution (well-debugged, simple to use, relatively > long-lived) one can find short of installing a separate partition or disk > which can handle either a Windows- or Mac-compatible program? By the way, > this is virtually the only Windows or Mac application I would normally > use. > > sam Does the Windows version run under Wine? David -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: email clients with reply-to-list feature
2005/8/26, kamaraju kusumanchi <[EMAIL PROTECTED]>: > Hi >I would like to make a list of email clients which have a > reply-to-list feature either built-in or as an add on. This is what I > know so far from reading the archives. I am hoping that others would > comment about whether their favorite email client has this feature or not. What about webmail ? Gmail does not have it sqwebmail neither. -- Pooly Webzine Rock : http://www.w-fenec.org/
Re: Debian Wiki Down: Permanantly?
kamaraju kusumanchi wrote: C Shore wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've confirmed that that debian wiki is down for others as well as myself, so I am wondering if anyone knows whether it has disappeared permanently or if it will be back soon. (http://wiki.debian.net) Thanks, Daniel Does not work for me and has been like that for the past 2 days. Nothing loads and the request just times out. I currently live in Ithaca, NY, USA. wiki.debian.net is working fine now for me. -- Kamaraju S Kusumanchi Graduate Student, MAE Cornell University http://www.people.cornell.edu/pages/kk288/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Portable OGG Player
On Fri, 2005-26-08 at 12:23 +0100, Dave Ewart wrote: > I got an Ibead 400: 1GB flash RAM and a 'proper' USB mass storage > interface. Anybody have a player that has at least 20GB of storage that plays oggs? My rio karma crapped out and they just gave me my money back, now I don't have a player any more. :( -- o)Derek Wueppelmann (o (D .[EMAIL PROTECTED]D). ((` http://monkey.homeip.net/ ( ) ` signature.asc Description: This is a digitally signed message part
Re: Lost Labyrinth
Hi! * Markus Döbele <[EMAIL PROTECTED]> [050824 22:20]: > I fear I can't use this command, because I lack access to a debian machine > right now. No problem, you could use simple e-mail vor submitting bugs against the "wnpp" (work needing and prospective packages) package. Place "ITP" for "intend to package" in the subject, http://www.debian.org/Bugs/Reporting lists some details about howto submitt bugs without reportbug. > I released Version 1.0.2 of Laby yesterday. As a Zip File and a rpm. > > Could anybody help me in doing a deb out of it? > Help would be greatly appreciated! I took a deeper look at the package but honestly speaking: I'm not sure, what it is. Never saw the suffix "pb" before, and I'm not familiar with the language you are using... Am I guessing correctly, that you are using "PureBasic" or something similar? That would make the whole thing a bit more complicated... if there is no free (in the free speach meaning, not the free beer one) compiler for that language, your game wouldn't be qualify for Debian main, but for contrib. Sorry, I'm not familar with that, and don't have the time at the moment to test your game with the demo compiler they are overing at their website... I think debian-mentors@lists.debian.org would be the proper place to ask for details on how to package that game with that tool... Yours sincerely, Alexander -- http://learn.to/quote/ http://www.catb.org/~esr/faqs/smart-questions.html signature.asc Description: Digital signature
Re: blind spot for java
Hi Graham, - make shure, that file is not a symlink. It should tell you if you do 'ls -la'. - make shure that not one of the directories has obscure permissions. You could (as root) copy the java file into /tmp and try to execute it there. Does it work? If not, maybe the file is corrupt. Try things like 'file java' or 'ldd java', just to see Tools like file and/or ldd recognise it as executable. Tim Am Freitag, 26. August 2005 13:32 schrieb Graham Smith: > Hi, > > I know this might seem a little strange but my system seems to have developed > a blind spot for Java. > > I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to execute > > [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java > > I get > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > which is quite plainly wrong as the file most certainly does exist and has > execution rights. I have another (very slightly older and 64-bit) version of > Java installed via java-package which works fine but I need to get this one > working. > > Any ideas what might be wrong? > > All the other applications seems to be working fine. I have re-installed the > JDK and tried other versions and all produce the same message. This is a long > shot I know but I am using the 64bit debian port and this is a 32bit VM it is > therefore relying on some libraries provided by the 32bit chroot. It was > working fine yesterday but I also upgraded the chroot yesterday. I'm wonering > if the two could be linked. The problem is that it just doesn't seem to even > find the java file to get. > > TIA, Graham. > > > -- > 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: i cant print from firefox?
On Fri, 26 Aug 2005, Eric Persson wrote: I'm using a debian testing environment on my laptop, and most of the stuff works good now, but printing is still a bit strange. Cupsys and gimp-print have improved things tremendously, if your printer is supported... Unfortunately, firefox uses Xprt instead and we need to deal with it too. I'm under the (possibly mistaken) impression that Xprt is considered the better of the two. Be aware however, that the default Xprt shipped with your X server is said to be seriously broken. Debian provides other packages to replace it. I can print pdfs with gpdf, and documents from openoffice, but I cant print anything from firefox, even though I select the same printers in the menus. Using "PostScript/lpr" in the list works for me. It was provided by the xprint package (testing/unstable, it might be called xprint-xorg in stable). Making it the default required some editing of /etc/Xprint/C/print/Xprinters: Augment_Printer_List %none% # Printer xp_pdf_spooldir_HOME_Xprintjobs # Printer xp_ps_spooldir_HOME_Xprintjobs Hang in there, it'll work eventually! :-) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
I just forgot: make shure, you don't have an alias in your shell. Try 'alias' in your bash. Tim Am Freitag, 26. August 2005 13:32 schrieb Graham Smith: > Hi, > > I know this might seem a little strange but my system seems to have developed > a blind spot for Java. > > I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to execute > > [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java > > I get > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > which is quite plainly wrong as the file most certainly does exist and has > execution rights. I have another (very slightly older and 64-bit) version of > Java installed via java-package which works fine but I need to get this one > working. > > Any ideas what might be wrong? > > All the other applications seems to be working fine. I have re-installed the > JDK and tried other versions and all produce the same message. This is a long > shot I know but I am using the 64bit debian port and this is a 32bit VM it is > therefore relying on some libraries provided by the 32bit chroot. It was > working fine yesterday but I also upgraded the chroot yesterday. I'm wonering > if the two could be linked. The problem is that it just doesn't seem to even > find the java file to get. > > TIA, Graham. > > > -- > 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: blind spot for java
On Fri, Aug 26, 2005 at 02:03:42PM +0100, Graham Smith wrote: > On Friday 26 August 2005 13:30, Kai Grossjohann wrote: > > Graham Smith <[EMAIL PROTECTED]> writes: > > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > > > This message makes you think that /usr/local/jdk1.5.0_04/bin/java does > > not exist. But that is sometimes wrong. Look if this file is a shell > > script. If so, look at its shebang line and fix it if necessary. > > > > (If you have a script /bin/foo that starts with "#!/bin/bar", but you > > don't have /bin/bar, then you'll get a message "/bin/foo: No such file > > or directory", but the truth is that it is the file /bin/bar that's > > missing...) > > > > Kai > > Cheers, > > Unfortunately I had thought of that and the java file in question is a binary > not a shell script. Then maybe it's a shared library that's missing? I had a problem like this years ago with Modula 3. There's some kind of command (strace ? -- I forget the name; I use it so rarely) that will trace all the system calls while your program is starting up (and thereafter). That might make it clearer what file it is complaining about. -- hendrik -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Can't install Sarge on an HP NetServer
On (25/08/05 11:27), Raquel Rice wrote: > The upgrade "manual" suggests using aptitude dist-upgrade and doing > the kernel upgrade in a separate step. After upgrading to Sarge, I > later upgraded the kernel on the server to 2.4.27 and all went well. > But keep your old kernel around ... just in case. ;-) > > BTW ... I'm booting off the SCSI drive too. On Thu, 25 Aug 2005 21:33:32 +0100, Clive Menzies wrote: > I've got an LH3 also upgraded to sarge recently (from an original woody > install) and upgrading with aptitude worked flawlessly. I also had a > couple of LHPro200's which I've now given away but the last one also > upgraded to sarge without a problem. The all booted off the SCSI RAID > drives. > > Regards > > Clive First of all, thanks to you all. You suggestion are really helpful. But unfortunately I'm still having troubles and I'm desperate. I tried installing Woody (booting with vanilla) and adding as an apt source only the first CD (yes I have CDs because it's an internal server and can't connect it to internet). Then I rebooted and added the first three Sarge CDs (because adding all 14 CDs requires too much time just to see if things works). Then I launched apt-get dist-upgrade. After a few question, it apt-get finished. Then I rebooted the machine. And... THE SYSTEM HANGS. It just write "LI" (maybe it starts to write LILO?) and hangs :( Don't know why, and actually don't know how to proceed. I'm thinking that there is no way of installing. Would adding all 7 Woody CDs and all the 14 Sarge CDs make the installation and upgrade process work? Furthermore, I need to have LVM management and this is further compicating the installation. RedHat installs with no problem, but I really liked to have Debian because I know it is better :). Only that it is so hard to install... Best regards, Marco Ballini 6X velocizzare la tua navigazione a 56k? 6X Web Accelerator di Libero! Scaricalo su INTERNET GRATIS 6X http://www.libero.it
Re: blind spot for java
Graham Smith wrote: >On Friday 26 August 2005 13:47, Kent West wrote: > > >>Try performing some other action on the file, such as renaming it. >> >> > >Yep I can rename it. > >-rwxr-xr-x 1 root staff 64492 2005-08-26 12:21 javarenamed > ># ./javarenamed >-su: ./javarenamed: No such file or directory > > > >>Also try it from a different shell (tcsh, etc). >> >> > > >[EMAIL PROTECTED]:/usr/local/jdk1.5.0_04/bin$ tcsh >foo:/usr/local/jdk1.5.0_04/bin> ./java >./java: Command not found. > >Looks like it doesn't work in any shell. > >I have tried moving the JDK install to another location on the disk as well >(to under /var/local) and no joy their either. > > As Tim mentioned, run "alias" to make sure you don't have an alias for "java", although going into a different shell would probably eliminate this possibility. Try "strace ./java" and see if that gives any interesting clues. -- Kent West Technology Support /A/bilene /C/hristian /U/niversity -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 14:34, Tim Ruehsen wrote: > Hi Graham, > > - make shure, that file is not a symlink. It should tell you if you do 'ls > -la'. nope it's not a symlink > - make shure that not one of the directories has obscure permissions. drwxr-xdrwxr-xr-x 12 root root 4096 2005-08-22 16:17 usr drwxrwsr-x 11 root staff 4096 2005-08-26 12:21 local drwxr-sr-x 9 root staff 4096 2005-08-26 12:21 jdk1.5.0_04 drwxr-sr-x 2 root staff 4096 2005-08-26 13:51 bin don't think there is anything odd there > > You could (as root) copy the java file into /tmp and try to execute it > there. Does it work? Nope, same error message. > If not, maybe the file is corrupt. Very very unlikely. Could only be corrupt if it became corrupt when I copied it over from the server. The exact same JDK runs fine on the server (a 32bit testing machine). Interestingly though the install won't run on this machine either (it too runs fine on the server). The installer fails to create the jdk1.5.0_04 directory. > Try things like > 'file java' $file java java: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, dynamically linked (uses shared libs), stripped > or 'ldd java', this looks bad $ldd java /usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) >I just forgot: make shure, you don't have an alias in your shell. Try 'alias' >in your bash. $alias alias la='ls -A' alias ll='ls -l' alias ls='ls --color=auto' Many thanks for the help so far. I suspect the fact ldd failed has something to do with the problem but I'm just taking an educated guess there. Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: upgrade from kernel 2.4 to 2.6
Thanks everyone for the reply. I installed kernel-image-2.6.11 in Debian Testing. > I want to upgrade my kernel from 2.4 to 2.6. Yeah, I know the simple > answer is install the 2.6 kernel and boot into it. It actually *IS*. > For me particularly, I use SCSI emulation for my CDs in kernel 2.4... > If I upgrade my kernel to 2.6, I think I have to tweak those CD modules > manually -- to use the ATAPI interface only. To my greatest surprise, they just work out of box -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Sendmail woes
"Derek \"The Monkey\" Wueppelmann" <[EMAIL PROTECTED]> writes: > It used to be that when I went into the /etc/mail directory and made > changes to the access file then typed make, the access.db file would be > updated and I could then reload sendmail. It seems now with Sarge that > it does not do this update, if I do a make access.db, the access.db file > is updated correctly, but I have to be explicit about it. Am I missing > something? I think that Debian itself runs /usr/share/sendmail/update_sendmail. That ought to be almost as convenient as running make. Does it do the trick? Kai -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
Graham Smith <[EMAIL PROTECTED]> writes: > I have a JDK installed in /usr/local/jdk1.5.0_04/ when I attempt to execute > > [EMAIL PROTECTED] /usr/local/jdk1.5.0_04/bin/java > > I get > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > which is quite plainly wrong as the file most certainly does exist and has > execution rights. I have another (very slightly older and 64-bit) version of > Java installed via java-package which works fine but I need to get this one > working. What happens when you do strace -f /usr/local/jdk1.5.0_04/bin/java ? That should show you which files it was looking for that don't exist. Perhaps that output is elucidating. Can you do "java -version"? Kai -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Problems with Opera and X
Hi I have problems running Opera versions >=8.01 on my Debian box. After some time (could be after clicking on the fourth link, or even earlier), Opera exits with a message Fatal IO error: client killed I made some captures and it seems that the X server is causing this (if connection is over TCP, he sends the first FIN packet). However, I didn't try to read the whole capture (decoding thousands of requests is a work for masochists only). The version of xfree86 is 4.3.0.dfsg.1-10 Any suggestions would be welcome. Jiri Palecek _ Mit der Gruppen-SMS von WEB.DE FreeMail können Sie eine SMS an alle Freunde gleichzeitig schicken: http://freemail.web.de/features/?mc=021179
Re: blind spot for java
On Friday 26 August 2005 14:43, Hendrik Boom wrote: > > Then maybe it's a shared library that's missing? I had a problem like this > years ago with Modula 3. There's some kind of command (strace ? -- I > forget the name; I use it so rarely) that will trace all the system > calls while your program is starting up (and thereafter). That might > make it clearer what file it is complaining about. Well I gave it a shot. I don't know what the output means but it doesn't look like it provides much more information. #strace -otrace.txt ./java strace: exec: No such file or directory #cat trace.txt execve("./java", ["./java"], [/* 18 vars */]) = -1 ENOENT (No such file or directory) dup(2) = 3 fcntl(3, F_GETFL) = 0x8002 (flags O_RDWR|O_LARGEFILE) fstat(3, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 1), ...}) = 0 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aac3000 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) write(3, "strace: exec: No such file or di"..., 40) = 40 close(3)= 0 munmap(0x2aac3000, 4096)= 0 exit_group(1) = ? Thanks, Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: U.S. federal income tax program
What exactly are you looking for? There are a large number of 100% web-based tax programs available. These work very well on Linux. -- --- Paul D. Smith <[EMAIL PROTECTED]> HASMAT--HA Software Mthds & Tools "Please remain calm...I may be mad, but I am a professional." --Mad Scientist --- These are my opinions--Nortel takes no responsibility for them. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: call for a vote -- should debian-user mailing list replies go to author or to list?
On Fri, 26 Aug 2005 05:47:49 -0400 Gregory Seidman <[EMAIL PROTECTED]> wrote: > (yes, we are > the elite, we are among the wealthiest in the world) And we owe it all to the fact that we've opted for a /free/ OS! Cybe R. Wizard -take /that/, MS! -- Luck, bad if not good, will always be with us. But it has a way of favouring the intelligent and showing its back to the stupid. John Dewey -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 14:37, Kai Grossjohann wrote: > What happens when you do > > strace -f /usr/local/jdk1.5.0_04/bin/java In another post there is a strace without the -f option here is one with it. # strace -otrace.txt -f /usr/local/jdk1.5.0_04/bin/java strace: exec: No such file or directory # cat trace.txt 11050 execve("/usr/local/jdk1.5.0_04/bin/java", ["/usr/local/jdk1.5.0_04/bin/java"], [/* 18 vars */]) = -1 ENOENT (No such file or directory) 11050 dup(2)= 3 11050 fcntl(3, F_GETFL) = 0x8002 (flags O_RDWR|O_LARGEFILE) 11050 fstat(3, {st_mode=S_IFCHR|0600, st_rdev=makedev(136, 1), ...}) = 0 11050 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x2aac3000 11050 lseek(3, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek) 11050 write(3, "strace: exec: No such file or di"..., 40) = 40 11050 close(3) = 0 11050 munmap(0x2aac3000, 4096) = 0 11050 exit_group(1) = ? > > Can you do "java -version"? Nope. /usr/local/jdk1.5.0_04/bin# ./java -su: ./java: No such file or directory Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: /media/cdrom0 disappears
En/La my deb ha escrit, a 26/08/05 12:21: > Hi, > My /media/cdrom0 disappears by itself. > I run testing on a Dell Inspiron 8600 with a DVD-RW > drive in a > removable bay. Every time I reboot it looks like: > > nils:/# ls -l /media/ > totalt 0 > lrwxrwxrwx 1 root root 6 2004-12-12 23:51 cdrom -> > cdrom0 > nils:/# > > and I can't use my CD/DVD drive. > I then do (as root): > > nils:/# mkdir /media/cdrom0 > nils:/# ls -l /media/ > totalt 4 > lrwxrwxrwx 1 root root6 2004-12-12 23:51 cdrom > -> cdrom0 > drwxr-xr-x 2 root root 4096 2005-08-26 11:52 cdrom0 > > and now I can use my CD/DVD. > > The disappearing didn't happen from the beginning, I > think it > started when I once unplugged the DVD-drive - I just > yanked it > out of the bay while the computer was running. > > Any suggestions on a permanent cure? Or what data > should I supply > for further debugging? > > Best Regards > /Gerhard > Hi Gerhard, This issue has been discussed at length on this list. The thread starts here: http://lists.debian.org/debian-user/2005/05/msg01703.html I'd suggest that when you have a problem try googling the list first. You'll often find a solution/discussion about it. I googled using: /media/cdrom0 site:lists.debian.org google is your friend. Cheers, Jonathan -- Please don't cc: your posting to my personal address. Thank you. signature.asc Description: OpenPGP digital signature
Re: blind spot for java
On Fri, Aug 26, 2005 at 02:03:42PM +0100, Graham Smith wrote: > On Friday 26 August 2005 13:30, Kai Grossjohann wrote: > > Graham Smith <[EMAIL PROTECTED]> writes: > > > bash: /usr/local/jdk1.5.0_04/bin/java: No such file or directory > > > > This message makes you think that /usr/local/jdk1.5.0_04/bin/java does > > not exist. But that is sometimes wrong. Look if this file is a shell > > script. If so, look at its shebang line and fix it if necessary. > > > > (If you have a script /bin/foo that starts with "#!/bin/bar", but you > > don't have /bin/bar, then you'll get a message "/bin/foo: No such file > > or directory", but the truth is that it is the file /bin/bar that's > > missing...) > > > > Kai > > Cheers, > > Unfortunately I had thought of that and the java file in question is a binary > not a shell script. > You haven't got an invisible character (space, for example) at the end of the name by chance, have you? I.e "java ". -- David Jardine "Running Debian GNU/Linux and loving every minute of it." -L. von Sacher-M.(1835-1895) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
> > or 'ldd java', > > this looks bad > > $ldd java > /usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory > ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) Here we go. Let's concentrate on this. Normally, /lib/ld-linux.so.2 is a symlink to e.g. (on my SID system) /lib/ld-2.3.5.so. So try ls -la /lib/ld-*, and see if the file that the symlink points to exists. Just to show you the output on my system: blitz-lx:~# ls -la /lib/ld-* -rwxr-xr-x 1 root root 90028 Aug 19 14:43 /lib/ld-2.3.5.so lrwxrwxrwx 1 root root11 Aug 22 14:36 /lib/ld-linux.so.2 -> ld-2.3.5.so Tim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 15:32, Kent West wrote: > Graham Smith wrote: > >On Friday 26 August 2005 14:34, Tim Ruehsen wrote: > >>or 'ldd java', > > > >this looks bad > > > >$ldd java > >/usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory > >ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) > > What's the result of "ls -ld /lib/ld-linux*"? # ls -ld /lib/ld-linux* lrwxrwxrwx 1 root root 11 2005-08-22 16:17 /lib/ld-linux-x86-64.so.2 -> ld-2.3.5.so I note the lack of /lib/ld-linux.so.2 my ld.so.conf contains # cat /etc/ld.so.conf /usr/X11R6/lib # chroot i386 system libs /var/chroot/sid-ia32/lib /var/chroot/sid-ia32/usr/lib /var/chroot/sid-ia32/usr/X11R6/lib /var/chroot/sid-ia32/usr/local/lib running the ls _inside_ the chroot shows the required file to be present. # ls -ld /lib/ld-linux* lrwxrwxrwx 1 root root 11 2005-08-25 18:12 /lib/ld-linux.so.2 -> ld-2.3.5.so > > -- > Kent West > Technology Support > /A/bilene /C/hristian /U/niversity -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 15:46, David Jardine wrote: > > > > Cheers, > > > > Unfortunately I had thought of that and the java file in question is a > > binary not a shell script. > > You haven't got an invisible character (space, for example) at the > end of the name by chance, have you? I.e "java ". Nice try but nope. Thanks, Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
Graham Smith wrote: >On Friday 26 August 2005 14:34, Tim Ruehsen wrote: > > >>or 'ldd java', >> >> > >this looks bad > >$ldd java >/usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory >ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) > > What's the result of "ls -ld /lib/ld-linux*"? -- Kent West Technology Support /A/bilene /C/hristian /U/niversity -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: tiny fonts in xmms and xchm
En/La Alex ha escrit, a 26/08/05 14:36: > Hi, > > there are two applications in my sarge installation (using GNOME) for > which displayed fonts are so small that I can't even read them. This > also applies to the menu items. > I have the same problem with xmms and xchm, but all the other > applications are fine. > > Any idea? > > FYI, an excerpt from dpyinfo: > XFree86 version: 4.3.0.1 > dimensions:1280x1024 pixels (342x271 millimeters) > resolution:95x96 dots per inch > > Preemptive thanks! > > Alex > > Have a look at the fonts section of your XF86Config-4. Assuming you're not running a font server, try making it look like this: FontPath"/usr/X11R6/lib/X11/fonts/misc:unscaled" FontPath"/usr/X11R6/lib/X11/fonts/100dpi:unscaled" FontPath"/usr/X11R6/lib/X11/fonts/75dpi:unscaled" any of your other font paths can follow these. Cheers, Jonathan -- Please don't cc: your posting to my personal address. Thank you. signature.asc Description: OpenPGP digital signature
Re: blind spot for java
On Friday 26 August 2005 15:42, Tim Ruehsen wrote: > > > or 'ldd java', > > > > this looks bad > > > > $ldd java > > /usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory > > ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) > > Here we go. Let's concentrate on this. Normally, /lib/ld-linux.so.2 is a > symlink to e.g. (on my SID system) /lib/ld-2.3.5.so. > > So try ls -la /lib/ld-*, and see if the file that the symlink points to > exists. > > Just to show you the output on my system: > blitz-lx:~# ls -la /lib/ld-* > -rwxr-xr-x 1 root root 90028 Aug 19 14:43 /lib/ld-2.3.5.so > lrwxrwxrwx 1 root root11 Aug 22 14:36 /lib/ld-linux.so.2 -> > ld-2.3.5.so > # ls -la /lib/ld-* -rwxr-xr-x 1 root root 97904 2005-08-20 00:03 /lib/ld-2.3.5.so lrwxrwxrwx 1 root root11 2005-08-22 16:17 /lib/ld-linux-x86-64.so.2 -> ld-2.3.5.so Hmmm I wonder if this is has something to do with the upgrades going on in unstable at the minute. Shouldn't this line /var/chroot/sid-ia32/lib from ld.so.conf have pulled in the required ld-linux.so.2 link? Graham > Tim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
Graham Smith wrote: >On Friday 26 August 2005 15:32, Kent West wrote: > > >>Graham Smith wrote: >> >> >>>$ldd java >>>/usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory >>>ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) >>> >>> >>What's the result of "ls -ld /lib/ld-linux*"? >> >> > ># ls -ld /lib/ld-linux* >lrwxrwxrwx 1 root root 11 2005-08-22 16:17 /lib/ld-linux-x86-64.so.2 -> >ld-2.3.5.so > >I note the lack of /lib/ld-linux.so.2 > >running the ls _inside_ the chroot shows the required file to be present. > ># ls -ld /lib/ld-linux* >lrwxrwxrwx 1 root root 11 2005-08-25 18:12 /lib/ld-linux.so.2 -> ld-2.3.5.so > > I'm a little hazy on the chroot; is your "./java" command failing to be found while in chroot, or while not in chroot. If while in, that seems odd, as the symlink is there. If while not in, I'd just create a new symlink: ln -s /lib/ld-2.3.5.so /lib/ld-linux.so.s should do it. -- Kent West Technology Support /A/bilene /C/hristian /U/niversity -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
DMA not working
Hi, I'm using kernel 2.6.12.4 (vanilla), recompiled, on a Kubuntu, and when I try to enable DMA, I get this error: sudo hdparm -d1 /dev/hdc /dev/hdc: setting using_dma to 1 (on) HDIO_SET_DMA failed: Operation not permitted using_dma= 0 (off) I know that this typically means that the IDE chipset support is not compiled in the kernel, but it is: I have this IDE lspci | grep IDE :00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4) Ultra ATA Storage Controller (rev 01) and so I have th module PIIX but the error still remains... any clue, please? thanks in advance Lorenzo -- +-+ | Lorenzo Bettini ICQ# lbetto, 16080134 | | PhD in Computer Science| | Dip. Sistemi e Informatica, Univ. di Firenze | | Florence - Italy(GNU/Linux User # 158233) | | Home Page: http://www.lorenzobettini.it| | http://music.dsi.unifi.it XKlaim language | | http://www.lorenzobettini.it/purpleCover Band | | http://www.gnu.org/software/src-highlite | | http://www.gnu.org/software/gengetopt | | http://www.lorenzobettini.it/software/gengen | | http://www.lorenzobettini.it/software/doublecpp| +-+ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On 8/26/05, Graham Smith <[EMAIL PROTECTED]> wrote: > $file java > java: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for GNU/Linux > 2.2.5, dynamically linked (uses shared libs), stripped Crazy question: You are trying this from the 32-bit chroot, right? > $ldd java > /usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory > ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) Is this missing from your chroot? Of course, if it were, then /bin/ls wouldn't work either. I'd guess this is where the real problem is. If there's a statically linked version of java available, you might give that a try. -- Michael A. Marsh http://www.umiacs.umd.edu/~mmarsh http://mamarsh.blogspot.com
Installation woes: How can I network boot a dell gx280, including tg3? May require kernel 2.6.12.
Dell Gx280 installation Tigon3 ethernet card is not supported on the debian testing network install download(kernel 2.6.8). (http://cdimage.debian.org/pub/cdimage-testing/daily/) Error: [tg3:eth%d:Firmware "tg3/tso-1.4.0" not loaded; continuing without TS0] The sarge network install failed due to missing modules, network worked but I could not access my hard drive. The issues (due to non free license) are allegedly resolved in 2.6.12 . Options: 1/ Wait for testing network install to include 2.6.12 2/ Try another distro 3/ Install sarge from cd/dvd set (which is more likely to include the relevent modules) and upgrade to testing 4/ Shoehorn kernel from www.kernel.org 5/ ??? Any suggestions? I suppose my next angle of approach is 3. I do have a flat screen which may need configuration so my journey is just starting. Thank you for your time, Turloch
LinuxBasic.org is now offering a free Linux class
Hello all just thought that some would find the info below very usefull. LinuxBasic.org is now offering a free Linux class for people who want to learn what is under the hood of a Linux-System. Course will be using the RUTE-Book for it's study material. Details can be found here: http://linuxbasics.org/course/start If you are a debian user just "aptitude install rutebook" You will need add "non-free" to your apt source Or download the html book from : http://rute.2038bug.com/rute.html.gz Or wget -O - http://rute.2038bug.com/rute.html.tar.bz2 |tar -xvvjf - Yours' sincerely peter colton -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Nagios : need some advice
* [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > >> - Do i need to use another monitoring software? > >I depends on what you want to monitor and what your boss wants to see. > The essential things to monitor is switch, gateway .. Bosses always appreciate - besides the uptime of your systems ;) - nifty graphs visualizing internet link usage or the like. I found cacti (www.cacti.net) to do a very good job at that. Most of the time you don't know whats going on on your systems or your network in terms of utilization. Cacti brings total transparancy to that and supports you in long term capacity planning and retrospective troubleshooting. It does not do alerting (like nagios), but does a perfect job at graphing measuring data (cpu load, memory / harddisk usage, link usage, ...). So it's a complement to nagios i consider worth using. > >Every 10 seconds can put a lot of load on your network connections > >especially if you monitor a lot of services and servers. I would > >certainly not do that for most of the servers/services. > So i will set a fast monitoring only for things like cpu load. Do you think it is really necessary to monitor cpu load every 10 seconds? I don't. We check it at about every 5 minutes. Rather use tresholds to do a more frequent checking when you get in the range of a possible overusage. So normally check every 5 minutes but when you get to a repeated 5-min load of 1 (for a 1 cpu system), do a more frequent checking. It is a lot about figuring out whats the best procedure for you specific environment, but i definitly would not trigger a check every 10 seconds. - sebastian -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
> # ls -la /lib/ld-* > -rwxr-xr-x 1 root root 97904 2005-08-20 00:03 /lib/ld-2.3.5.so > lrwxrwxrwx 1 root root11 2005-08-22 16:17 /lib/ld-linux-x86-64.so.2 -> > ld-2.3.5.so > > Hmmm I wonder if this is has something to do with the upgrades going on in > unstable at the minute. Shouldn't this line > > /var/chroot/sid-ia32/lib > > from ld.so.conf have pulled in the required ld-linux.so.2 link? I am a bit unshure about these chroot things. I use a chroot env for compiling special things, but lot's of things do not work in there. So, I can't tell anything else than Kent and Michael at the moment. Tim -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: call for a vote -- should debian-user mailing list replies go to author or to list?
On Thursday 25 August 2005 11:28 pm, Wulfy wrote: > Antonio Rodriguez wrote: > >These people are the guides. If they thought as the rest of the guided > >humans, the future would be blackly dark, as when under a > >thunderstorm. They have created Debian by not listening to the > >multitudes. The multitudes lack vision. > > When this vision is shared openly, joyfully and with respect to all, it > is a beautiful thing. But when it's shared with snide remarks, put > downs and arrogance, how is it different from any other Big Brother > bullying? Alienating the people you are trying to help will not make > people understand. True guides don't need to share with snide remarks. As I said to someone else in an off-list reply: Most, if not all of the people I'm referring to -- the ones that seem to love to patronize others who aren't using the same "uber-geek" programs and systems they are (I guess that makes them feel superior or something), are not the creators. It is merely those who want to piss on the local trees to say to everyone else, "Hey, I'm an uber-alpha-geek, look at me with awe. Be as impressed with me as I am with myself." The forum then, in a discussion like this, becomes nothing more than a pissing contest with some trying to prove their superiority by throwing at the rest of us the most excrement. Hal
Re: Sendmail woes
On Fri, 2005-26-08 at 15:35 +0200, Kai Grossjohann wrote: > I think that Debian itself runs /usr/share/sendmail/update_sendmail. > That ought to be almost as convenient as running make. Does it do the > trick? It looks like it does more from the output, however it still doesn't create either an access.db or a mailertable.db file. Even though these options are turned on in my sendmail.mc file. This causes big problems as sendmail likes to fail when it can't find a mailertable.db file when it's been instructed to find one. -- o)Derek Wueppelmann (o (D .[EMAIL PROTECTED]D). ((` http://monkey.homeip.net/ ( ) ` signature.asc Description: This is a digitally signed message part
Re: Portable OGG Player
On Fri August 26 2005 06:33 am, Derek "The Monkey" Wueppelmann wrote: > On Fri, 2005-26-08 at 12:23 +0100, Dave Ewart wrote: > > I got an Ibead 400: 1GB flash RAM and a 'proper' USB mass storage > > interface. > > Anybody have a player that has at least 20GB of storage that plays oggs? > My rio karma crapped out and they just gave me my money back, now I > don't have a player any more. :( I've been using the karma for quite some time now. The first one I had got stollen, so I got another on ebay (refurbished) for a good price. Maybe check it out an ebay and see what you come up with. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 15:55, Kent West wrote: > > I'm a little hazy on the chroot; is your "./java" command failing to be > found while in chroot, or while not in chroot. If while in, that seems > odd, as the symlink is there. If while not in, I'd just create a new > symlink: > > ln -s /lib/ld-2.3.5.so /lib/ld-linux.so.s > > should do it. > It was failing outside the chroot (in the host system). I created the symlink as you suggested and all is now working again. The question is though how did the original link go missing? This was working fine yesterday after I upgraded both the host system and the chroot. I wonder if something only changed when the machine was rebooted. I know that the chroot under went the C++ upgrade yesterday so maybe that was it but I wouldn't have thought that could remove the symlink in the host system. Anyway. Many thanks. Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Portable OGG Player
At 14:33 26/08/2005, Derek \"The Monkey\" Wueppelmann wrote: On Fri, 2005-26-08 at 12:23 +0100, Dave Ewart wrote: > I got an Ibead 400: 1GB flash RAM and a 'proper' USB mass storage > interface. Anybody have a player that has at least 20GB of storage that plays oggs? My rio karma crapped out and they just gave me my money back, now I don't have a player any more. :( -- o)Derek Wueppelmann (o (D .[EMAIL PROTECTED]D). ((` http://monkey.homeip.net/ ( ) ` My friend and I have been very happy with our iRivers. The HP1** and 4** both work flawlessly in Linux (standard USB mass storage devices) and the quality is great, and there's even a Linux tool available to update the player's database (although you don't need it). As long as you don't mind paying iPod prices they're a great option. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: blind spot for java
On Friday 26 August 2005 15:56, Michael Marsh wrote: > On 8/26/05, Graham Smith <[EMAIL PROTECTED]> wrote: > > $file java > > java: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), for > > GNU/Linux 2.2.5, dynamically linked (uses shared libs), stripped > > Crazy question: You are trying this from the 32-bit chroot, right? > > > $ldd java > > /usr/bin/ldd: line 171: /lib/ld-linux.so.2: No such file or directory > > ldd: /lib/ld-linux.so.2 exited with unknown exit code (127) > > Is this missing from your chroot? Of course, if it were, then /bin/ls > wouldn't work either. I'd guess this is where the real problem is. > > If there's a statically linked version of java available, you might > give that a try. Thanks for all the help. I've got it working now. It was simply a matter of making this link in the host system ln -s /var/chroot/sid-ia32/lib/ld-linux.so.2 /lib/ld-linux.so.2 fingers crossed that doesn't break anything else though. I have been do all of this diagnosis from the host system with the exception of the one "ls -ld /lib/ld-linux*" command that I ran in the 32 bit chroot to see if I had ld-linux.so.2 in there. I haven't had a problem with this set up before and the 32bit JVM seems quite happy running like this. Perhaps I should move it into the chroot though. There are no statically linked versions of Sun Java to the best of my knowledge. Graham -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Can't install Sarge on an HP NetServer
On (26/08/05 14:28), marco_elen wrote: > On Thu, 25 Aug 2005 21:33:32 +0100, Clive Menzies wrote: > > I've got an LH3 also upgraded to sarge recently (from an original woody > > install) and upgrading with aptitude worked flawlessly. I also had a > > couple of LHPro200's which I've now given away but the last one also > > upgraded to sarge without a problem. The all booted off the SCSI RAID > > drives. > > > > Regards > > > > Clive > > > Ok, so I can install a base Woody, then add the Sarge cd-rom > to apt sources and launch apt-get dist-upgrade. > May I also upgrade to a new kernel (If I install also a newer kernel will the > system still be able to see the drives)? > I'm asking this because I couldn't do a Sarge installation because of the > error reported in my first e-mail: > error loading "modprobe -v sym53c8xx_2" > I'm running 2.4.27-2-686 and sym53c8xx_2 is available as a module > > Furthermore I have two 2G disks, which I would prefer to manage with LVM. I > read I have these alternatives: > > 1) Make the LVM arrangement of the disks at installation time (I've seen an > HOWTO about this: Root-on-LVM-on-RAID HOWTO). > But this would require to use a kernel from a diskette, and I don't know if > this kernel will recognize my SCSI drives (as up to now I could only do it > booting Woody with vanilla). Sorry I use ext2 and don't know. > > 2) Install Woody on first disk (partitioned as ext2), and after installation > change it to LVM (described in the LVM HOWTO). > I'm proceeding this way, but I don't know when it is best to do the LVM > conversion: before or after upgrading to sarge, before or after an (eventual) > upgrade to a new kernel. > Also, which version of LVM shall I use (of course this depends on which > kernel I will be able to install)? Regards Clive -- www.clivemenzies.co.uk ... ...strategies for business -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: tiny fonts in xmms and xchm
"apt-get install xfonts-100dpi-transcoded xfonts-75dpi -transcoded xfonts-base -transcoded" will help you. Flori -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: email clients with reply-to-list feature
> >> >I would like to make a list of email clients which have a >> > reply-to-list feature either built-in or as an add on. This is what I >> > know so far from reading the archives. I am hoping that others would >> > comment about whether their favorite email client has this feature or > not. Or use the newsgroup :) -- Stephen Patterson [EMAIL PROTECTED] http://patter.mine.nu/ GPG: E3E8E974 Jabber: patter on jabber.earth.li MSN: [EMAIL PROTECTED] "Whoever said nothing is impossible never tried slamming a revolving door." -- Melissa O'Brien -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Can't install Sarge on an HP NetServer
On Fri, 26 Aug 2005 14:28:28 +0200 "marco_elen" <[EMAIL PROTECTED]> wrote: > > On (25/08/05 11:27), Raquel Rice wrote: > > > > > > BTW ... I'm booting off the SCSI drive too. > > > Sorry, but I can't understand the meaning of this last sentence > (my english is not good) > I don't know if I can explain it, but I'll try. The server in question doesn't boot off an IDE drive, but rather boots directly off the SCSI drive. > > > Furthermore I have two 2G disks, which I would prefer to manage > with LVM. I read I have these alternatives: > I have 3-4.3GB drives using reiserfs, so I don't know about LVM. Sorry. > -- Raquel I believe in equality for everyone, except reporters and photographers. --Mohandas Gandhi pgpnI0uz2bMUI.pgp Description: PGP signature