Sponsored Content
Full Discussion: Linux problems
Top Forums UNIX for Dummies Questions & Answers Linux problems Post 17657 by LivinFree on Tuesday 19th of March 2002 04:34:18 AM
Old 03-19-2002
The newer kernel offers more hardware support, as always, but it also offers more security, like the new firewalling code. It should also offer better memory management (which should help even more in your first problem! Too much swapping is bad for media - too slow... Real memory works much better).

Kernel upgrades take time to get used to, and even longer to master. The first time I compiled my own kernel, it took me 3 or 4 tries to get one that booted completely. Go through the config (I like using "make menuconfig"), and only enable things you need, otherwise your kernel will not boot. Something have to be built in, like drivers for your disk and whatnot. Use the description (The hotkey is F1 or F2, I think) of each item in the config to see if you'll need it. If you want it, but don't need it, you could always build it as a Module.

The best thing, probably, is to just try rebuilding until it works. Just make sure to keep notes on what config you used, and try to know what hardware you use beforehand.

Good luck with the recompile!
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

a world of suse linux problems

1) how do i disable the graphic login in suse linux? 2) how do i disable the graphic boot-up in suse linux? 3) how do i disable the graphic console in suse linux? i think disabling graphic console will disable graphic booting, but what do i know, eh? 4) where is the dhcpcd directory and... (2 Replies)
Discussion started by: nydel
2 Replies

2. UNIX for Dummies Questions & Answers

Linux and in.telnetd problems

Hi, This is not the usual "unable to telnet to my machine" post. I: * have ensured that in.telnetd is started from inet.conf * that hosts.allow/deny are correctly configured * in.telnetd is listening, and on the correct port When I check my syslog i notice that tcpd (as I have... (3 Replies)
Discussion started by: sam_pointer
3 Replies

3. UNIX for Dummies Questions & Answers

Networking Problems On Linux

HI I JUST INSTALLED LINUX 7.0 ON MY COMPUTER AND IT WIPED OUT THE WHOLE WIN2K SO MY QUESTION IS THAT I CAN'T .....MY NETSCAPE NAVIGATOR DOESN'T WORK (NO INTERNET AT ALL) WHAT SHOULD I DO!... I HAVE A CABLE MODEM IP I USE TO SEARCH THE INTERNET WITH BOTH BROWSER IE AND NETS..NAV.. NOW I... (1 Reply)
Discussion started by: IMOTEB
1 Replies

4. UNIX for Advanced & Expert Users

Suse Linux mount problems ?

We are experiencing several startup problems at boot time. In our /etc/rc.d/boot script we have "swapon -a -v &> /dev/null/' (without the quotes). We have also added echo statements to make it visible on the HMC during IPL. The echo statements are seen but there no messages for the swapon... (1 Reply)
Discussion started by: darthur
1 Replies

5. IP Networking

radvd + ipv6 problems in Linux

Hi everyone, I have a weird problem in Linux. Well, for the past month i've been very interested in IPv6, and, a couple of days ago i decided to try to get it to work. I run Slackware 8.0 on my gateway/router-box, and, the freenet6.com-program and scripts started and worked just fine. There's one... (1 Reply)
Discussion started by: kuba
1 Replies

6. UNIX for Dummies Questions & Answers

linux xmms sound problems

Dear all, I have been using suse linux for as long as I can remember. However, for every installation I get the same problem. Once the installation is completed, and all of my devices (brand new hardware, from reknown brands) are detected, I decide to start doing some work, and play some... (2 Replies)
Discussion started by: bionicfysh
2 Replies

7. Linux

Feather Linux Problems

I am currently trying to create a Feather Linux boot disk using a Flash Drive. I have the Feather Kernel installed on the Flashrive, and am trying to make ot bootable with Syslinux. However i think that my Syslinux is faulty because whenever i try to run it in DOS to make the Flashdrive in Drive... (1 Reply)
Discussion started by: slats142
1 Replies

8. SuSE

Linux Network problems-Please help

Hullo everyone, I have recently installed SUSE 9.1 and attached it to my Network router (Actiontec 54Mbps Wireless DSL Gateway) but can't connect to the internet. It comes up with the following error message: An error occurred while loading "http://www.yahoo.com":Timeout on server - connection... (2 Replies)
Discussion started by: sybella1
2 Replies

9. UNIX for Dummies Questions & Answers

CD mounting problems with linux

Hi guys I'm a newbie with linux i recently installed mandrake linux 10.0 double boot(win 98se) on a pIII 300mhz 128mb ram PC I have a standard cd rom and for some reason, linux refuses to mount the CD drive it worked perfectly for the first cople of monthes and than suddenly it didn't it... (0 Replies)
Discussion started by: bentzi
0 Replies

10. UNIX for Dummies Questions & Answers

Problems logging into linux workstation

Hello everyone: I got this msg. when I tried to logging. "the files that contain your preference setings are currently in use" (I'm the only one). "You can continue to use the current session, but this might cause temporary problems with the preference settings in the other session". ... (2 Replies)
Discussion started by: marcvill
2 Replies
LINUX(4)						   BSD Kernel Interfaces Manual 						  LINUX(4)

NAME
linux -- Linux ABI support SYNOPSIS
To compile support for this ABI into an i386 kernel place the following line in your kernel configuration file: options COMPAT_LINUX for an amd64 kernel use: options COMPAT_LINUX32 Alternatively, to load the ABI as a module at boot time, place the following line in loader.conf(5): linux_load="YES" DESCRIPTION
The linux module provides limited Linux ABI (application binary interface) compatibility for userland applications. The module provides the following significant facilities: o An image activator for correctly branded elf(5) executable images o Special signal handling for activated images o Linux to native system call translation It is important to note that the Linux ABI support it not provided through an emulator. Rather, a true (albeit limited) ABI implementation is provided. The following sysctl(8) tunable variables are available: compat.linux.osname Linux kernel operating system name. compat.linux.osrelease Linux kernel operating system release. Changing this to something else is discouraged on non-development systems, because it may change the way Linux programs work. Recent versions of GNU libc are known to use different syscalls depending on the value of this sysctl. compat.linux.oss_version Linux Open Sound System version. The linux module can be linked into the kernel statically with the COMPAT_LINUX kernel configuration option or loaded as required. The fol- lowing command will load the module if it is neither linked into the kernel nor already loaded as a module: if ! kldstat -v | grep -E 'linux(aout|elf)' > /dev/null; then kldload linux > /dev/null 2>&1 fi Note that dynamically linked Linux executables will require a suitable environment in /compat/linux. Specifically, the Linux run-time linker's hints files should be correctly initialized. For this reason, it is common to execute the following commands to prepare the system to correctly run Linux executables: if [ -x /compat/linux/sbin/ldconfig ]; then /compat/linux/sbin/ldconfig -r /compat/linux fi For information on loading the linux kernel loadable module automatically on system startup, see rc.conf(5). This information applies regardless of whether the linux module is statically linked into the kernel or loaded as a module. FILES
/compat/linux minimal Linux run-time environment /compat/linux/proc limited Linux process file system /compat/linux/sys limited Linux system file system SEE ALSO
brandelf(1), elf(5), linprocfs(5), linsysfs(5) HISTORY
Linux ABI support first appeared in FreeBSD 2.1. BSD
February 8, 2010 BSD
All times are GMT -4. The time now is 06:49 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy