Commands not found at startup
On a newly installed Debian Woody, I have made a new kernel with pristine 2.4.22 kernel sources and make-kpkg. When I boot the new kernel I get messages, such as: "getent: command not found" "head: command not found" "awk: command not found" and the system does not boot up fully, seemingly because many other binaries cannot be found either. I do get a prompt, but no programs are available, only the bash builtins. When I boot the original 2.4.18 kernel there are no problems - except that I only utilize one of the systems' two processors. Those are all commands from /usr/bin. I have a separate /usr partition. Could that cause it? What could I do about it? Thanks in advance. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Commands not found at startup
On Mon, 15 Sep 2003, David List wrote: >On a newly installed Debian Woody, I have made a new kernel with >pristine 2.4.22 kernel sources and make-kpkg. >When I boot the new kernel I get messages, such as: >"getent: command not found" >"head: command not found" >"awk: command not found" >and the system does not boot up fully, seemingly because many other >binaries cannot be found either. I do get a prompt, but no programs are >available, only the bash builtins. >When I boot the original 2.4.18 kernel there are no problems - except >that I only utilize one of the systems' two processors. > >Those are all commands from /usr/bin. I have a separate /usr partition. >Could that cause it? Yes it could. I had accidentally chosen ReiserFS instead of Ext3 when configuring the kernel, so when I tried issuing 'mount -s' after booting the new kernel, I got a message about mount not knowing anything about Ext3. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Compiling Mozilla 1.4 on Debian Woody
Has anyone here compiled Mozilla 1.4 on Debian Woody? I'm trying, but I seem to be unable to get a working result. Already when I run the configure script coming with the source code, I get an error message in the output: ./conftest: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory When the configure script has run I can issue 'make' and everything seems to run OK, but when I have issued 'make install' and try to run the newly installed Mozilla 1.4, I get an error message telling me the same thing as the one I got from the configure script. The strange thing is that I *do* have a libstdc++.so.5 since I have gcc 3.3 installed under /usr/local: [EMAIL PROTECTED]:~$ gcc -v Reading specs from /usr/local/lib/gcc-lib/i686-pc-linux-gnu/3.3/specs Configured with: ../gcc-3.3/configure --prefix=/usr/local --enable-threads=posix --enable-languages=c,c++,java,ada Thread model: posix gcc version 3.3 [EMAIL PROTECTED]:~$ find /usr -name libstdc++\.so* 2> /dev/null | xargs ls -l lrwxrwxrwx1 root root 33 Sep 13 18:25 /usr/lib/gcc-lib/i386-linux/2.95.4/libstdc++.so -> ../../../libstdc++-libc6.2-2.so.3 lrwxrwxrwx1 root root 18 Sep 13 18:25 /usr/lib/libstdc++.so.3 -> libstdc++.so.3.0.4 -rw-r--r--1 root root 570460 Apr 8 2002 /usr/lib/libstdc++.so.3.0.4 lrwxrwxrwx1 root staff 18 Sep 13 23:18 /usr/local/lib/libstdc++.so -> libstdc++.so.5.0.4 lrwxrwxrwx1 root staff 18 Sep 13 23:18 /usr/local/lib/libstdc++.so.5 -> libstdc++.so.5.0.4 -rwxr-xr-x1 root staff 4229977 Sep 13 23:18 /usr/local/lib/libstdc++.so.5.0.4 So - what am I missing? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Compiling Mozilla 1.4 on Debian Woody
On Mon, 15 Sep 2003, Torsten Reuss wrote: >> ./conftest: error while loading shared libraries: libstdc++.so.5: cannot >> open shared object file: No such file or directory > >This might be too obvious, but do you have /usr/local/lib in your >/etc/ld.so.conf ? No, only these: /usr/X11R6/lib /usr/lib/atlas I tried putting /usr/lib /usr/local/lib into the file and that made no difference. >Have you tried setting LD_LIBRARY_PATH to /usr/local/lib? >You should also find your mozilla binary and run ldd on it to see what >it's trying to link to. I issued export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH before configuring Mozilla 1.4 again, and this time I didn't get the complaint about the libstdc++.so.5 missing. I'm building Mozilla 1.4 right now (that takes a little while), and will try to run ldd on the final binary when it's done. Thank you for your answer. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
xdm setup
I'm looking into the graphical login setup on my newly installed Debian Woody. I'm used to having a line near the end of /etc/inittab that says how the graphical login screen should behave, for instance: # Run XDM in run level 5 x:5:respawn:/usr/bin/X11/xdm -nodaemon I don't see this in the default Debian /etc/inittab file (I chose xdm as my display manager during installation). In which file(s) is it decided how the login screen should act, on a Debian system? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: xdm setup
On Tue, 16 Sep 2003, Oki DZ wrote: >On Tue, Sep 16, 2003 at 10:14:41AM +0200, David List wrote: >> In which file(s) is it decided how the login screen should act, on a >> Debian system? > >/etc/init.d/xdm > >See man update-rc.d. Thanks, I'll look into those. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
No sourcing of ~/.profile at login
It seems to me that ~/.profile is not being sourced at login, but ~/.bashrc is, on my newly installed Debian Woody. I'm used to having this in ~/.profile: if test -f /etc/profile; then . /etc/profile fi if test -f ~/.bashrc; then . ~/.bashrc fi ...since I'm used to ~/.profile being guaranteed as being sourced at user login, and then having contents in ~/.profile that make sure that ~/.bashrc is being sourced also. It seems things are the other way around on Debian...or am I just confused? If I'm right, how do I control what *does* happen at user login? Hope you can help. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: No sourcing of ~/.profile at login
On Tue, 16 Sep 2003, Johann Koenig wrote: >I do not have a ~/.profile, but rather a ~/.bash_profile. Perhaps that >is what you're looking for? I tried copying my ~/.profile into ~/.bash_profile and log in again. No effect. I also tried removing both ~/.bash_profile and /etc/skel/.bash_profile as mr. Reuss suggested. Still no effect. Thanks for the answer. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: No sourcing of ~/.profile at login
On Tue, 16 Sep 2003, Torsten Reuss wrote: >>I do not have a ~/.profile, but rather a ~/.bash_profile. Perhaps that >>is what you're looking for? >> >.profile is not parsed if a .bash_profile exists. I don't know with what >bash version this behavior was introduced, but you can get normal >behavior by just ensuring there is no .bash_profile. Also I recommend >removing the .bash_profile from your /etc/skel directory. I tried both suggestions: 1) Copying the contents of ~/.profile into ~/.bash_profile. No effect. 2) Removing ~/.bash_profile and /etc/skel/.bash_profile. Still no effect. Is there any way I can see *precisely* what happens during a user's login - what files are being sourced and such? Thanks for the answer. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: No sourcing of ~/.profile at login
On Tue, 16 Sep 2003, Torsten Reuss wrote: >Hmm. Two more ideas: >- Are you sure you are actually using bash as your shell (check in >/etc/passwd) ? Absolutely. >- How exactly do you try to logout and login again (e.g. a `su user´ >will not parse .profile, while a `su - user´ will). Regular logins and logouts. No su'ing or the like. >Note on the /etc/skel/.bash_profile: Removing it will not have any >effect, it will just avoid .bash_profile being created in new users' >home directories if you create them. I guessed as much. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Compiling Mozilla 1.4 on Debian Woody
On Mon, 15 Sep 2003, Torsten Reuss wrote: .. >>I tried putting >> >>/usr/lib >>/usr/local/lib >> >>into the file and that made no difference. >> >You should run ldconfig after making changes to the file. /usr/lib does >not need to be in there, as it is one of the standard directories which >is hardcoded in the linker. That helped. Thank you very much for your help. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: No sourcing of ~/.profile at login
On Tue, 16 Sep 2003, Paul Smith wrote: >%% David List <[EMAIL PROTECTED]> writes: > > dl> Regular logins and logouts. No su'ing or the like. > >Just to be clear, when you say this you mean logins at the console, for >example, right? If you're using a graphical login manager like GDM or >XDM, then these methods of login never actually invoke a login shell, >and so your profile file is never sourced. Darn, I see that you're right. It occurred to me that I *had* tried logging in through a virtual console and that it didn't work there either, but I tried it now, and it did. Thanks to your and mr. Reuss for your help. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: No sourcing of ~/.profile at login
On Wed, 17 Sep 2003, Ashish Ariga wrote: >On Wed, 2003-09-17 at 09:56, Daniel B. wrote: >> Paul Smith wrote: >> > >> > .. If you're using a graphical login manager like GDM or >> > XDM, then these methods of login never actually invoke a login shell, >> >> Why not? (Why shouldn't logging in via GDM execute your login-time >> shell initialization?) >> > >That's the default behaviour. See Xsession (under /etc/X11/*) >Change the first line "#!/bin/bash" to "#!/bin/bash --login" > >Then all the talk about .bash_profile, .profiles, ... comes into play. Umm...didn't get that. The first line in my /etc/X11/Xsession says #!/bin/sh. Here is what I can find that's bash-related under /etc/X11: dt:/etc/X11# find . -type f | xargs grep bash ./twm/menudefs.hook: "Bash"f.exec "x-terminal-emulator -T \"Bash\" -e /bin/bash -login &" ./twm/system.twmrc: "Bash"f.exec "x-terminal-emulator -T \"Bash\" -e /bin/bash -login &" ./sawfish/debian-menu.jl: '("Bash" (system "exec x-terminal-emulator -T \"Bash\" -e /bin/bash -login &")) Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Procmail logging
Is it possible to get procmail to tell in its logfile which recipe that was triggered by every mail that is being logged? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Son of Swen?
On Fri, 26 Sep 2003, Wayne Topa wrote: .. >http://www.spamless.us/pub/procmail/virussnag.rc > >You need an account to look at it. ;-( What are you talking about? I have just copied it into my home directory and have set it up as the author suggests, to see how effective it is. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
My @INC has been corrupted
Somehow my Perl @INC when running dselect has been corrupted. I have had a newer version of Perl installed under /usr/local, and at some point I have begun getting error messages when committing the changes from "Select" in dselect. The error messages are all about some DebConf/*.pm files not being found in @INC, and the @INC being shown only contains /usr/local/. paths. After I have begun getting these error messages, I have removed everything related to the /usr/local installation of a newer Perl version. I still get the error messages when running dselect. What has happened, and how can I set things back to normal again? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Errors when CPAN installing SpamAssassin
Could anyone explain the errors, I get, when trying to install SpamAssassin 2.60 on a Debian stable system through CPAN? Here is a small excerpt: Subroutine WEIRD_PORT_uri_test redefined at /etc/spamassassin/20_uri_tests.cf, rule WEIRD_PORT, line 8. Subroutine FREEWEBCO_NET_URL_uri_test redefined at /etc/spamassassin/20_uri_tests.cf, rule FREEWEBCO_NET_URL, line 8. Subroutine CLICKSFORMONEY_NET_uri_test redefined at /etc/spamassassin/20_uri_tests.cf, rule CLICKSFORMONEY_NET, line 8. Subroutine HTTP_CTRL_CHARS_HOST_uri_test redefined at /etc/spamassassin/20_uri_tests.cf, rule HTTP_CTRL_CHARS_HOST, line 8. Subroutine BIZ_TLD_uri_test redefined at ../rules/20_uri_tests.cf, rule BIZ_TLD, line 8. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
ssh is slow
Wheen ssh'ing to and from my Debian 3.0r1, ssh acts dead slow when connecting, even when all keys are installed and no passwords are used. Could this be solved in some way? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
How to set two IP addresses on the same NIC?
How do I set two IP addresses on the same NIC? I know I can use ifconfig, but is there a debian-specific way of doing it - some script for instance? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: ssh is slow
On Thu, 7 Aug 2003, Roberto Sanchez wrote: > --- David List <[EMAIL PROTECTED]> escribió: >> Wheen ssh'ing to and from my Debian 3.0r1, ssh acts dead slow when >> connecting, even when all keys are installed and no passwords are used. >> >> Could this be solved in some way? >> >> Best regards, >> David List > >If it is only slow while negotiating the connection, it is because it is >trying to look up the host via /etc/hosts and then DNS (a friend of mine >pointed >this out to me). All I needed to do was edit the /etc/hosts file on the three >machines on my private subnet, and viola. Everything works great now and the >negotiation is nearly instantaneous. The two systems between which I experience the problem know about each other through /etc/host files, so I'm not sure that's the problem. The one system is a SuSE Linux system with openSSH 3.4p1 that I can ssh to from outside my LAN. The authentication has always been *very* swift on that system. The other system is a Debian 3.0r1 also with openSSH 3.4p1 (the default Debian package). I experience slow authentications both ways with this system. I just tried copying the sshd_config file from the SuSE system to the Debian system, and when I restarted the sshd server, I got a message about the protocol version being disabled, because the host key could not be loaded. Does this have anything to do with the problem? Thank you for your answer. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: How to set two IP addresses on the same NIC?
On Thu, 7 Aug 2003, Wolfgang Fischer wrote: >On Thu, 07 Aug 2003 14:10:10 +0200, David List wrote: > >> How do I set two IP addresses on the same NIC? I know I can use >> ifconfig, but is there a debian-specific way of doing it - some script >> for instance? >> >Edit /etc/network/interfaces (see interfaces(5)) I'll look into that. Thank you for your answer. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
exim runtime configuration file
I'm looking through the exim documentation coming with Debian 3.0r1 since I wish to try it out for my mailserver. I cannot seem to find any default or example runtime configuration file for exim. I have this under /etc: sol:~# find /etc -name exim* 2> /dev/null | xargs ls -ldG -rw-r--r--1 root 191 Mar 10 2002 /etc/cron.d/exim -rwxr-xr-x1 root 669 Mar 10 2002 /etc/cron.daily/exim drwxr-xr-x2 root 4096 May 30 17:26 /etc/exim -rwxr-xr-x1 root 1315 Mar 10 2002 /etc/init.d/exim -rwxr-xr-x1 root 84 Mar 10 2002 /etc/ppp/ip-up.d/exim sol:~# ls -alG /etc/exim total 8 drwxr-xr-x2 root 4096 May 30 17:26 . drwxr-xr-x 75 root 4096 Aug 24 00:34 .. And when I try to dry-run exim to check the syntax of the runtime configuration file, I get this: sol:~# exim -bV Exim version 3.35 #1 built 10-Mar-2002 01:32:04 Copyright (c) University of Cambridge 2001 2003-08-24 01:04:26 Failed to open configuration file /etc/exim/exim.conf Is there an example runtime configuration file included in the Debian 3.0r1 exim package somewhere? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: exim runtime configuration file
On Sun, 24 Aug 2003, Ryan Nowakowski wrote: >On Sun, Aug 24, 2003 at 01:11:49AM +0200, David List wrote: >> Is there an example runtime configuration file included in the Debian >> 3.0r1 exim package somewhere? > >Check out: >/usr/share/doc/exim/example.conf.gz I'll look into it. Thank you for your answer. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
exim run-time option for seeing compile-time options
Is there a way of getting to see what compile-time options the exim 3.35 binary that comes with Debian 3.0r1 was built with? I have looked through the exim man page, but I didn't see a run-time option for outputting the compile-time options for the binary. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: exim run-time option for seeing compile-time options
On Sun, 24 Aug 2003, Colin Watson wrote: >Ensure that you have deb-src entries paralleling the deb entries in >/etc/apt/sources.list; 'dselect update' if necessary; then 'apt-get >source exim'. debian/rules in the resulting source tree is the master >build script. Thanks. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Using make-kpkg
Just to make sure that I have understood the man page for make-kpkg right: If I issue 'make-kpkg kernel_image', the kernel is built *and* installed *and* any symlink are set correctly. Is this correct? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Using make-kpkg
On Fri, 6 Jun 2003, Colin Watson wrote: >On Fri, Jun 06, 2003 at 01:56:42PM +0200, David List wrote: >> Just to make sure that I have understood the man page for make-kpkg >> right: >> If I issue 'make-kpkg kernel_image', the kernel is built *and* installed >> *and* any symlink are set correctly. > >Not quite; the kernel is built but not installed. When you install the >package that make-kpkg spits out (using 'dpkg -i'), the kernel is >installed and the /vmlinuz symlink is set correctly. I see. Since SILO works as it does (as opposed to LILO), I should then be able to boot the new kernel immediately, right? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Where is the kernel config file?
Where does one find the kernel config file for the kernel that is installed by default on a Debian system? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Where is the kernel config file?
On 6 Jun 2003, Jeremy Brooks wrote: >Look in /boot. There's a config-x.x.x file there. On a system running >Woody with the 2.4 kernel installed, it is called >/boot/config-2.4.18-bf2.4. I see. I thank you and mr. Saunders for answering my question. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Where is the kernel config file?
On Fri, 6 Jun 2003, Kevin McKinley wrote: >On Fri, 6 Jun 2003 18:10:34 +0200 (CEST) >David List <[EMAIL PROTECTED]> wrote: > >> I see. I thank you and mr. Saunders for answering my question. > >Here's an answer for a question you didn't ask: :) > >http://newbiedoc.sourceforge.net/system/kernel-pkg.html Thanks. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
depmod error when running make-kpkg
>From [EMAIL PROTECTED] Sat Jun 7 13:22:19 2003 Date: Sat, 7 Jun 2003 11:53:41 +0200 (CEST) From: David List <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: depmod error when running make-kpkg Resent-Date: Sat, 7 Jun 2003 05:10:22 -0500 (CDT) Resent-From: [EMAIL PROTECTED] I have tried running make-kpkg as a first attempt in making my own kernel on a newly installed Debian 3.0_r1 on a Sun Ultra 1. To be sure I would get working kernel in first try I used the 2.4.18 kernel sources included in the distribution and used the config file that the running kernel was built from: /boot/config-2.4.18 The idea was to ensure that this worked and then begin to modify. I cannot even get a working kernel with the default config! This is what I issue: # cd /usr/src # tar -xjvf kernel-source-2.4.18.tar.bz2 # cd kernel-source-2.4.18 # make menuconfig .. Here I load the config file under /boot . # make-kpkg kernel_image The last lines I see from make_kpkg are these: cd /usr/src/kernel-source-2.4.18/debian/tmp-image/lib/modules/2.4.18; \ mkdir -p pcmcia; \ find kernel -path '*/pcmcia/*' -name '*.o' | xargs -i -r ln -sf ../{} pcmcia if [ -r System.map ]; then /sbin/depmod -ae -F System.map -b /usr/src/kernel-source-2.4.18/debian/tmp-image -r 2.4.18; fi depmod: *** Unresolved symbols in /usr/src/kernel-source-2.4.18/debian/tmp-image/lib/modules/2.4.18/kernel/fs/binfmt_elf.o depmod: mem_map_zero depmod: get_user_pages make[2]: *** [_modinst_post] Error 1 make[2]: Leaving directory `/usr/src/kernel-source-2.4.18' make[1]: *** [real_stamp_image] Error 2 make[1]: Leaving directory `/usr/src/kernel-source-2.4.18' What could cause this behaviour? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: depmod error when running make-kpkg
On Sat, 7 Jun 2003, Kevin McKinley wrote: >What version of gcc are you using? sol:~# gcc -v Reading specs from /usr/lib/gcc-lib/sparc-linux/2.95.4/specs gcc version 2.95.4 20011002 (Debian prerelease) I have gcc 3.2 installed under /usr/local, but that's not the version that the root user sees. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Ethernet lockup
I have noticed a thread on this list around a week ago that dealt with the ethernet lockup with the Linux hme driver. There was a posting by Joshua Uziel that pointed to a patch to this driver. I'm new to Debian so my question may seem strange to some here, but I cannot see how to use this patch since the 2.4.18 kernel that comes with my 3.0_r1 installation seems to be monolithic, and vanilla kernel source does not build on my system. How does one go about this? Thanks in advance. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Ethernet lockup
On Tue, 3 Jun 2003, David List wrote: >I have noticed a thread on this list around a week ago that dealt with >the ethernet lockup with the Linux hme driver. .. Oops, that was on the debian-sparc list. Sorry. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Kernel symlinks
I have built a new kernel with make-kpkg and installed it with dpkg -i .deb I then checked /boot and saw that the vmlinuz symlink there still points to the old kernel, whereas the vmlinuz symlink under / points to the recently installed kernel. Why is there a vmlinuz symlink under /boot if it not necessary to change it to point to a new kernel? Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Kernel symlinks
On Mon, 9 Jun 2003, Colin Watson wrote: >On Mon, Jun 09, 2003 at 06:03:21PM +0200, David List wrote: >> I have built a new kernel with make-kpkg and installed it with >> dpkg -i .deb >> I then checked /boot and saw that the vmlinuz symlink there still points >> to the old kernel, whereas the vmlinuz symlink under / points to the >> recently installed kernel. >> >> Why is there a vmlinuz symlink under /boot if it not necessary to change >> it to point to a new kernel? > >Perhaps you created that symlink yourself? I've never seen it after >installing Debian kernel-image packages. > >(Alternatively, it might have been a temporary thing which has >disappeared.) I'm mystified, but just in case I have pointed the symlink under /boot to the new kernel. Best regards, David List -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]