LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch
User Name
Password
Linux From Scratch This Forum is for the discussion of LFS.
LFS is a project that provides you with the steps necessary to build your own custom Linux system.

Notices


Reply
  Search this Thread
Old 07-01-2015, 02:43 AM   #16
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412

kernel config is done on this page
http://www.linuxfromscratch.org/lfs/...08/kernel.html

it will open a menu config which you need to go through.

If you have built LFS and is only kernel/grub stopping it from starting Dont rebuild lfs, it,s almost there
 
Old 07-01-2015, 08:06 AM   #17
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by veerain View Post
And primary hard drive partitions are named by Linux kernel as 'sda' and secondary as 'sdb'.

And one that boots is primary so 'sda'.

So change both kernel parameter and fdisk entry as set. Both using '/dev/sda2'.
No matter what i do i get:
Kernel panic - not syncing VFS - Unable to mount root fs on block (0,0)


I dont understand this , u said
So change both kernel parameter and fdisk entry as set. Both using '/dev/sda2'
kernel parameter and fdisk entry - were is that entry(Do u mean on grub command line, on there u cant access fdisk)
 
Old 07-01-2015, 08:16 AM   #18
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by spiky0011 View Post
kernel config is done on this page
http://www.linuxfromscratch.org/lfs/...08/kernel.html

it will open a menu config which you need to go through.

If you have built LFS and is only kernel/grub stopping it from starting Dont rebuild lfs, it,s almost there
Can you please verify that at this stage i can redo (start from kernel config again) LIke u mentioned on the link.
If i do that ,the LFS in not gonna be fukedup. Please let me know is it safe to start from that section again.
 
Old 07-01-2015, 10:13 AM   #19
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Linux From Scratch - Version 7.7
Chapter 8. Making the LFS System Bootable
8.3. Linux-3.19
OK i did the kernel setup again as it follow. Please correct me if i did something wrong.
I already did the mount thing and login.

On my LFS i do this:

root:/sources# tar -xf linux-3.19.tar.xz
root:/sources# cd linux-3.19
root:/sources/linux-3.19# make mrproper
root:/sources/linux-3.19# make defconfig
root:/sources/linux-3.19# make menuconfig

after i execute last command i get the menu config of kernel.
and select like it says from the book

Device Drivers --->
Generic Driver Options --->
[ ] Support for uevent helper [CONFIG_UEVENT_HELPER][*] Maintain a devtmpfs filesystem to mount at /dev [CONFIG_DEVTMPFS]

I save and exit the menu.

root:/sources/linux-3.19# make
root:/sources/linux-3.19# make modules_install
root:/sources/linux-3.19# cp -v arch/x86/boot/bzImage /boot/vmlinuz-3.19-lfs-7.7
root:/sources/linux-3.19# cp -v System.map /boot/System.map-3.19
root:/sources/linux-3.19# cp -v .config /boot/config-3.19
root:/sources/linux-3.19# install -d /usr/share/doc/linux-3.19
root:/sources/linux-3.19# cp -r Documentation/* /usr/share/doc/linux-3.19

DONE
==============================================================================

Now The grub installation process.

root:/sources# tar -xf grub-2.02~beta2.tar.xz
root:/sources# cd grub-2.02~beta2
root:/sources/grub-2.02~beta2# grub-install /dev/sda (this time i did sda , i removed all hd's and just used 1 hd(the LFS)

DONE
==============================================================================

GRUB CONFIG

cat > /boot/grub/grub.cfg << "EOF"
# Begin /boot/grub/grub.cfg
set default=0
set timeout=5

insmod ext2
set root=(hd0,2)

menuentry "GNU/Linux, Linux 3.19-lfs-7.7" {
linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sda2 ro
}
EOF

The fstab already points at /dev/sda1 as swap and dev/sda2 as / ext4 (bootable)

After all this , same thing happened.
Kernel panic - not syncing VFS - Unable to mount root fs on block (0,0)
And sometimes i get other kernel panics.

Last edited by HashNoob; 07-01-2015 at 10:20 AM.
 
Old 07-01-2015, 10:18 AM   #20
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,554
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
Quote:
Originally Posted by HashNoob View Post
On my fstab i put(not showing all, just some of important ones)

/dev/sdb2 / ext4
/dev/sdb1 swap swap

Second , i did this.
Instead of grub-install /dev/sda i did, grub-install /dev/sdb

3d: My grub config

cat > /boot/grub/grub.cfg << "EOF"
# Begin /boot/grub/grub.cfg
set default=0
set timeout=5

insmod ext4
set root=(hd1,2)

menuentry "GNU/Linux, Linux 3.19-lfs-7.7" {
linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sdb2 ro
}
EOF

....
Okay,

Try this:

Change...

Code:
set root=(hd1,2)
To...

Code:
set root=(hd1,msdos1)
Also load:

insmod part_msdos

This should get you booted.
 
Old 07-01-2015, 10:57 AM   #21
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ReaperX7 View Post
Okay,

Try this:

Change...

Code:
set root=(hd1,2)
To...

Code:
set root=(hd1,msdos1)
Also load:

insmod part_msdos

This should get you booted.
# Begin /boot/grub/grub.cfg
set default=0
set timeout=5

insmod part_msdos
insmod ext2

set root=(hd0,msdos2)

menuentry "GNU/Linux, Linux 3.19-lfs-7.7" {
linux /boot/vmlinuz-3.19-lfs-7.7 root=/dev/sda2 ro
}

At this point (hd0,msdos2) points at ext* filesystem and (hd1,msdos1) points to ntfs.
I have removed all other hard drive, i have only one active now ( THat is The LFS)
I have only 2 partitions on LFS hard drive:
The sda1 as swap and sda2 as / ext4 (* bootable)
Still - I get same nightmare - Kernel panic - not syncing VFS - Unable to mount root fs on block (0,0)
And sometimes i get other kernel panics.

Can you please review the kernel installation i did above. I think im missing somethign there, not sure, just a hunch.

Second Maybe Ubuntu is not allowing me to install the kernel.


This is my partition table

cfdisk (util-linux 2.20.1)

Disk Drive: /dev/sda
Size: 250059350016 bytes, 250.0 GB
Heads: 255 Sectors per Track: 63 Cylinders: 30401

Name Flags Part Type FS Type [Label] Size (MB)
------------------------------------------------------------------------------
sda1 Primary swap 2048.10
sda2 Boot Primary ext4 100002.96
Pri/Log Free Space 148008.31*

Last edited by HashNoob; 07-01-2015 at 11:42 AM.
 
Old 07-01-2015, 11:11 AM   #22
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
This is my config-3.19 file
Attached Files
File Type: txt config-3.19.txt (98.5 KB, 16 views)
 
Old 07-01-2015, 03:53 PM   #23
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
Ok can you post lspci output use ubuntu.

Yes you can do the kernel build as many times as you want it will not affect lfs.

Can you also confirm what HD,s you have in there, is it still sda with windows sdb with lfs,
and what is fstab showing and grub.cfg
 
Old 07-01-2015, 04:57 PM   #24
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by spiky0011 View Post
Ok can you post lspci output use ubuntu.

Yes you can do the kernel build as many times as you want it will not affect lfs.

Can you also confirm what HD,s you have in there, is it still sda with windows sdb with lfs,
and what is fstab showing and grub.cfg
IM dying to boot this mother.

my lspci is below from ubuntu as sudo -s

========================================
lspci
00:00.0 Host bridge: NVIDIA Corporation C55 Host Bridge (rev a2)
00:00.1 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.2 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.3 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.4 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.5 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a2)
00:00.6 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.7 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.0 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.1 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.2 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.3 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.4 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.5 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.6 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:02.0 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:02.1 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:02.2 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:03.0 PCI bridge: NVIDIA Corporation C55 PCI Express bridge (rev a1)
00:06.0 PCI bridge: NVIDIA Corporation C55 PCI Express bridge (rev a1)
00:07.0 PCI bridge: NVIDIA Corporation C55 PCI Express bridge (rev a1)
00:09.0 RAM memory: NVIDIA Corporation MCP55 Memory Controller (rev a1)
00:0a.0 ISA bridge: NVIDIA Corporation MCP55 LPC Bridge (rev a2)
00:0a.1 SMBus: NVIDIA Corporation MCP55 SMBus (rev a2)
00:0b.0 USB controller: NVIDIA Corporation MCP55 USB Controller (rev a1)
00:0b.1 USB controller: NVIDIA Corporation MCP55 USB Controller (rev a2)
00:0d.0 IDE interface: NVIDIA Corporation MCP55 IDE (rev a1)
00:0e.0 IDE interface: NVIDIA Corporation MCP55 SATA Controller (rev a2)
00:0e.1 IDE interface: NVIDIA Corporation MCP55 SATA Controller (rev a2)
00:0e.2 IDE interface: NVIDIA Corporation MCP55 SATA Controller (rev a2)
00:0f.0 PCI bridge: NVIDIA Corporation MCP55 PCI bridge (rev a2)
00:0f.1 Audio device: NVIDIA Corporation MCP55 High Definition Audio (rev a2)
00:11.0 Bridge: NVIDIA Corporation MCP55 Ethernet (rev a2)
00:12.0 Bridge: NVIDIA Corporation MCP55 Ethernet (rev a2)
00:13.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
00:14.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
00:15.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
00:16.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
00:17.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
00:18.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
01:00.0 PCI bridge: PLX Technology, Inc. PEX 8547 48-lane, 3-port PCI Express Switch (rev aa)
02:00.0 PCI bridge: PLX Technology, Inc. PEX 8547 48-lane, 3-port PCI Express Switch (rev aa)
02:0c.0 PCI bridge: PLX Technology, Inc. PEX 8547 48-lane, 3-port PCI Express Switch (rev aa)
03:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] R680 [Radeon HD 3870 X2]
04:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] R680 [Radeon HD 3870 X2]
04:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] RV670/680 HDMI Audio [Radeon HD 3690/3800 Series]
07:06.0 Multimedia controller: Philips Semiconductors SAA7134/SAA7135HL Video Broadcast Decoder (rev 01)
07:07.0 Network controller: Ralink corp. RT2561/RT61 802.11g PCI
07:0b.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller (rev c0)
====================================================

I have removed all HD drives, im just using one hard drive(THe LFS hard drive)
I did reinstall the kernel and grub install on dev/sda
Everything is correct , i get same error - the kernel panic error.
======================================================

lspci -k

00:00.0 Host bridge: NVIDIA Corporation C55 Host Bridge (rev a2)
00:00.1 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.2 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.3 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.4 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.5 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a2)
00:00.6 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:00.7 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.0 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.1 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.2 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.3 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.4 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.5 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:01.6 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:02.0 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:02.1 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:02.2 RAM memory: NVIDIA Corporation C55 Memory Controller (rev a1)
00:03.0 PCI bridge: NVIDIA Corporation C55 PCI Express bridge (rev a1)
Kernel driver in use: pcieport
00:06.0 PCI bridge: NVIDIA Corporation C55 PCI Express bridge (rev a1)
Kernel driver in use: pcieport
00:07.0 PCI bridge: NVIDIA Corporation C55 PCI Express bridge (rev a1)
Kernel driver in use: pcieport
00:09.0 RAM memory: NVIDIA Corporation MCP55 Memory Controller (rev a1)
Subsystem: ASUSTeK Computer Inc. Device cb84
00:0a.0 ISA bridge: NVIDIA Corporation MCP55 LPC Bridge (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
00:0a.1 SMBus: NVIDIA Corporation MCP55 SMBus (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: nForce2_smbus
00:0b.0 USB controller: NVIDIA Corporation MCP55 USB Controller (rev a1)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: ohci-pci
00:0b.1 USB controller: NVIDIA Corporation MCP55 USB Controller (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: ehci-pci
00:0d.0 IDE interface: NVIDIA Corporation MCP55 IDE (rev a1)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: pata_amd
00:0e.0 IDE interface: NVIDIA Corporation MCP55 SATA Controller (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: sata_nv
00:0e.1 IDE interface: NVIDIA Corporation MCP55 SATA Controller (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: sata_nv
00:0e.2 IDE interface: NVIDIA Corporation MCP55 SATA Controller (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: sata_nv
00:0f.0 PCI bridge: NVIDIA Corporation MCP55 PCI bridge (rev a2)
00:0f.1 Audio device: NVIDIA Corporation MCP55 High Definition Audio (rev a2)
Subsystem: ASUSTeK Computer Inc. Device 81f2
Kernel driver in use: snd_hda_intel
00:11.0 Bridge: NVIDIA Corporation MCP55 Ethernet (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: forcedeth
00:12.0 Bridge: NVIDIA Corporation MCP55 Ethernet (rev a2)
Subsystem: ASUSTeK Computer Inc. Device cb84
Kernel driver in use: forcedeth
00:13.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
Kernel driver in use: pcieport
00:14.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
Kernel driver in use: pcieport
00:15.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
Kernel driver in use: pcieport
00:16.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
Kernel driver in use: pcieport
00:17.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
Kernel driver in use: pcieport
00:18.0 PCI bridge: NVIDIA Corporation MCP55 PCI Express bridge (rev a2)
Kernel driver in use: pcieport
01:00.0 PCI bridge: PLX Technology, Inc. PEX 8547 48-lane, 3-port PCI Express Switch (rev aa)
Kernel driver in use: pcieport
02:00.0 PCI bridge: PLX Technology, Inc. PEX 8547 48-lane, 3-port PCI Express Switch (rev aa)
Kernel driver in use: pcieport
02:0c.0 PCI bridge: PLX Technology, Inc. PEX 8547 48-lane, 3-port PCI Express Switch (rev aa)
Kernel driver in use: pcieport
03:00.0 Display controller: Advanced Micro Devices, Inc. [AMD/ATI] R680 [Radeon HD 3870 X2]
Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Device 2042
04:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] R680 [Radeon HD 3870 X2]
Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] Device 2542
Kernel driver in use: radeon
04:00.1 Audio device: Advanced Micro Devices, Inc. [AMD/ATI] RV670/680 HDMI Audio [Radeon HD 3690/3800 Series]
Subsystem: Advanced Micro Devices, Inc. [AMD/ATI] RV670/680 HDMI Audio [Radeon HD 3690/3800 Series]
Kernel driver in use: snd_hda_intel
07:06.0 Multimedia controller: Philips Semiconductors SAA7134/SAA7135HL Video Broadcast Decoder (rev 01)
Subsystem: Avermedia Technologies Inc Device 2c05
Kernel driver in use: saa7134
07:07.0 Network controller: Ralink corp. RT2561/RT61 802.11g PCI
Subsystem: Belkin F5D7000 v6000 Wireless G Desktop Card
Kernel driver in use: rt61pci
07:0b.0 FireWire (IEEE 1394): VIA Technologies, Inc. VT6306/7/8 [Fire II(M)] IEEE 1394 OHCI Controller (rev c0)
Subsystem: ASUSTeK Computer Inc. Motherboard
Kernel driver in use: firewire_ohci
====================================================


By the way my (LFS HARD DRIVE)boot folder contains:
312 items, totalling 22.0 MB.
I still have the source folder on (LFS HARD DRIVE), is that bad.

Last edited by HashNoob; 07-01-2015 at 05:21 PM.
 
Old 07-01-2015, 05:01 PM   #25
Krejzi
Member
 
Registered: Jan 2015
Posts: 215

Rep: Reputation: Disabled
http://www.linuxfromscratch.org/~kre...sic-kernel.txt

This ought to be enough to compile a kernel that boots.
 
Old 07-01-2015, 05:26 PM   #26
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Krejzi View Post
http://www.linuxfromscratch.org/~kre...sic-kernel.txt

This ought to be enough to compile a kernel that boots.
On my config it says:
# CONFIG_SATA_NV is not set

ANd on lspci -k the kernel is set to sata_nv.

HOw can i enable this , just for testing. DO i have to recompile the whole thing just for this line.
Can i just edit that line in config file like this:
CONFIG_SATA_NV=y

xd

Last edited by HashNoob; 07-01-2015 at 05:35 PM.
 
Old 07-01-2015, 05:35 PM   #27
Krejzi
Member
 
Registered: Jan 2015
Posts: 215

Rep: Reputation: Disabled
Quote:
Originally Posted by HashNoob View Post
On my config it says:
# CONFIG_SATA_NV is not set

ANd on lspci -k the kernel is set to sata_nv.

HOw can i enable this , just for testing. DO i have to recompile the whole thing just for this line.
Just navigate through menu, the document is set of menuconfig entries described in a similar way to the one in LFS kernel config page.
 
Old 07-01-2015, 05:41 PM   #28
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Krejzi View Post
Just navigate through menu, the document is set of menuconfig entries described in a similar way to the one in LFS kernel config page.
For this to work , i guess i have to recompile the kernel again just for one line. Is that correct.
 
Old 07-01-2015, 05:48 PM   #29
Krejzi
Member
 
Registered: Jan 2015
Posts: 215

Rep: Reputation: Disabled
Quote:
Originally Posted by HashNoob View Post
For this to work , i guess i have to recompile the kernel again just for one line. Is that correct.
Wasn't that obvious?



... Yes
 
Old 07-01-2015, 06:03 PM   #30
HashNoob
Member
 
Registered: Jun 2015
Posts: 37

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by Krejzi View Post
Wasn't that obvious?



... Yes
Thnx krejzi, but i will go even crazy myself this time xd.
I will compile this mother bit by bit , till i find the kernel panic error.
I will post later on , maybe in some hours time the result.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
stuck on chapter 6.26 of lfs 7.5 Roy_SRC Linux From Scratch 3 07-25-2014 11:40 AM
[SOLVED] Making LFS 6.8 bootable slipstreamed Linux From Scratch 3 03-22-2013 01:15 AM
error making glibc in chapter 6 LFS raza.ajmi Linux From Scratch 15 12-19-2012 03:58 AM
Stuck at Chapter 5.4, Error when making dir for Binutils 2.20 BrandonJ Linux From Scratch 6 04-02-2010 09:14 PM
Stuck on chapter 5 when building Tcl-8.4.6 For LFS-5.1 deMilo Linux From Scratch 2 06-20-2004 03:31 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch

All times are GMT -5. The time now is 07:57 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration