LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 02-26-2008, 04:43 AM   #1
anillohchab007
Member
 
Registered: Nov 2007
Location: Bangalore, India
Distribution: kubuntu Intrepid Ibex & debian etch & fedora sulphur & centos 5.3
Posts: 32

Rep: Reputation: 15
Problem in mounting hard disk when install through FAI


I have problem when installing a system through fai.
On the client system hard disk is partitioned successfully.
But problem with mount, it says
mount: unknown filesystem type 'reiserfs'


Can any body help me on this.

some par of log file fai.log is down there


after this it installed package then gives error
'No space left on device'. and ask for reboot.

Need help thanks in advance......

-------------------------------------------------
Fully Automatic Installation - FAI

FAI 3.2.4, 29 Nov 2007 Copyright (c) 1999-2007
Thomas Lange <lange@informatik.uni-koeln.de>
-------------------------------------------------

Calling task_confdir
Kernel currently running: Linux 2.6.20-15-generic i686 GNU/Linux
Kernel parameters: initrd=initrd.img-2.6.20-15-generic ip=dhcp root=/dev/nfs nfsroot=/srv/fai/nfsroot boot=live FAI_FLAGS=ve\
rbose,sshd,createvt FAI_ACTION=install BOOT_IMAGE=vmlinuz-2.6.20-15-generic
Reading /tmp/fai/boot.log
FAI_FLAGS: verbose sshd createvt
Configuration space caco:/srv/fai/config mounted to /var/lib/fai/config
No monitor daemon defined.
Calling task_setup
FAI_FLAGS: verbose sshd createvt
Press ctrl-c to interrupt FAI and to get a shell
Calling task_defclass
/usr/bin/fai-class: Defining classes.
Executing /var/lib/fai/config/class/10-base-classes.
10-base-classes OK.
Executing /var/lib/fai/config/class/20-hwdetect.source.
find: /lib/modules/2.6.20-15-generic/kernel/drivers/ide: No such file or directory
loading kernel module rtc
loading kernel module floppy
loading kernel module usbkbd
loading kernel module ide-disk
loading kernel module ide-cd
loading kernel module ehci-hcd
loading kernel module ohci-hcd
loading kernel module uhci-hcd
loading kernel module usbhid
loading kernel module usbmouse
loading kernel module ide-generic
loading kernel module mptspi
loading kernel module ata_piix
FATAL: Could not load /lib/modules/2.6.20-15-generic/modules.dep: No such file or directory
20-hwdetect.source OK.
Executing /var/lib/fai/config/class/50-host-classes.
50-host-classes OK.
List of all classes: DEFAULT LINUX I386 RAM256_40G DEBCONF XORG GNOME PACKAGE CS GRUB host LAST
Calling task_defvar
Executing CS.var
++ FAI_ALLOW_UNSIGNED=1
++ CONSOLEFONT=
++ KEYMAP=us-latin1
++ UTC=yes
++ TIMEZONE=Asia/Calcutta
++ ROOTPW='$1$kBnWcO.E$djxB128U7dMkrltJHPf6d1'
++ MODULESLIST='usbkbd ehci-hcd ohci-hcd uhci-hcd usbhid psmouse'
Loading keymap(s) us-latin1 ...done.
Calling task_action
FAI_ACTION: install
Performing FAI installation. All data may be overwritten!
^G^G^G
Calling task_install
Calling task_partition
Partitioning local harddisks
setup_harddisks version 0.43fai
Probing disks: /dev/sda
Disks found: sda

Using config file: /var/lib/fai/config/disk_config/RAM256_40G
Mapping disk name disk1 to sda
Creating partition table: LC_ALL=C sfdisk -q /dev/sda < /tmp/fai/partition.sda
Creating file systems:
echo y | LC_ALL=C mkreiserfs /dev/sda1
<----------------

Partition happen here with no error
--------------------------->

Calling task_mountdisks
Enable swap device /dev/sda2
Mounting /dev/sda1 to /target/
mount: unknown filesystem type 'reiserfs'
Mounting /dev/sda7 to /target/home
mount: unknown filesystem type 'reiserfs'
Mounting /dev/sda8 to /target/others
mount: unknown filesystem type 'reiserfs'
Mounting /dev/sda5 to /target/tmp
mount: unknown filesystem type 'reiserfs'
Mounting /dev/sda6 to /target/usr
mount: unknown filesystem type 'reiserfs'
Mounting /dev/sda3 to /target/var
mount: unknown filesystem type 'reiserfs'
Calling task_extrbase
Unpacking Debian base archive
,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
 
Old 02-26-2008, 09:51 PM   #2
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
Is reiserfs compiled into your kernel ?
If not, where did you load the module for it, it's not loaded by default on Debian..

Code:
debianetch:~$ cat /proc/filesystems

nodev   sysfs
nodev   rootfs
nodev   bdev
nodev   proc
nodev   cpuset
nodev   debugfs
nodev   securityfs
nodev   sockfs
nodev   pipefs
nodev   futexfs
nodev   tmpfs
nodev   inotifyfs
nodev   eventpollfs
nodev   devpts
        cramfs
nodev   ramfs
nodev   mqueue
nodev   usbfs
        ext3
        udf
        iso9660
        vfat
nodev   binfmt_misc


default@debianetch:~$ /sbin/modinfo reiserfs

filename:       /lib/modules/2.6.18-5-686/kernel/fs/reiserfs/reiserfs.ko
description:    ReiserFS journaled filesystem
author:         Hans Reiser <reiser@namesys.com>
license:        GPL
vermagic:       2.6.18-5-686 SMP mod_unload 686 REGPARM gcc-4.1
depends:
I don't think this is a networking issue.. it looks like you need to modify something in your fai config so the system loads the reiserfs module, so it can then mount the partitions.

Last edited by farslayer; 02-26-2008 at 09:54 PM.
 
Old 02-27-2008, 03:11 AM   #3
anillohchab007
Member
 
Registered: Nov 2007
Location: Bangalore, India
Distribution: kubuntu Intrepid Ibex & debian etch & fedora sulphur & centos 5.3
Posts: 32

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by farslayer View Post
Is reiserfs compiled into your kernel ?
If not, where did you load the module for it, it's not loaded by default on Debian..

Code:
debianetch:~$ cat /proc/filesystems

nodev   sysfs
nodev   rootfs
nodev   bdev
nodev   proc
nodev   cpuset
nodev   debugfs
nodev   securityfs
nodev   sockfs
nodev   pipefs
nodev   futexfs
nodev   tmpfs
nodev   inotifyfs
nodev   eventpollfs
nodev   devpts
        cramfs
nodev   ramfs
nodev   mqueue
nodev   usbfs
        ext3
        udf
        iso9660
        vfat
nodev   binfmt_misc


default@debianetch:~$ /sbin/modinfo reiserfs

filename:       /lib/modules/2.6.18-5-686/kernel/fs/reiserfs/reiserfs.ko
description:    ReiserFS journaled filesystem
author:         Hans Reiser <reiser@namesys.com>
license:        GPL
vermagic:       2.6.18-5-686 SMP mod_unload 686 REGPARM gcc-4.1
depends:
I don't think this is a networking issue.. it looks like you need to modify something in your fai config so the system loads the reiserfs module, so it can then mount the partitions.
Yup ! you are right modules are not loaded but i dont know how to load them.
Code:
root@temphost:/# /proc/filesystems
nodev   sysfs
nodev   rootfs
nodev   bdev
nodev   proc
nodev   cpuset
nodev   debugfs
nodev   securityfs
nodev   sockfs
nodev   pipefs
nodev   futexfs
nodev   tmpfs
nodev   inotifyfs
nodev   eventpollfs
nodev   devpts
        cramfs
nodev   ramfs
nodev   mqueue
nodev   usbfs
nodev   rpc_pipefs
nodev   nfs
nodev   nfs4
nodev   unionfs
root@temphost:/#/sbin/modinfo reiserfs
modinfo: could not open /lib/modules/2.6.20-15-generic/modules.dep
thnx for reply
 
Old 02-27-2008, 08:48 AM   #4
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
The scripts 20-hwdetect.source loads kernel modules on demand. The complete description of all these scripts can be found in Scripts in /fai/scripts, Section 7.9. http://www.informatik.uni-koeln.de/f...tml#s-cscripts


http://www.physics.ubc.ca/mbelab/ber.../html/fai.html


maybe this will help...

moduleslist line perhaps ?
 
Old 02-28-2008, 04:03 AM   #5
anillohchab007
Member
 
Registered: Nov 2007
Location: Bangalore, India
Distribution: kubuntu Intrepid Ibex & debian etch & fedora sulphur & centos 5.3
Posts: 32

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by farslayer View Post
The scripts 20-hwdetect.source loads kernel modules on demand. The complete description of all these scripts can be found in Scripts in /fai/scripts, Section 7.9. http://www.informatik.uni-koeln.de/f...tml#s-cscripts


http://www.physics.ubc.ca/mbelab/ber.../html/fai.html


maybe this will help...

moduleslist line perhaps ?

Yup I got the soln as well as what really the problem is.

thanx a lot for help.
 
Old 02-28-2008, 07:57 PM   #6
farslayer
LQ Guru
 
Registered: Oct 2005
Location: Northeast Ohio
Distribution: linuxdebian
Posts: 7,249
Blog Entries: 5

Rep: Reputation: 191Reputation: 191
just glad I could help
 
  


Reply



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
Grafpup 2.0 Hard Disk install problem PBH Grafpup 3 06-01-2007 04:42 PM
Mounting problem with My Book hard disk Roger D Linux - Hardware 0 10-23-2006 02:47 PM
problem on large hard disk during install mking007 Linux - Hardware 2 06-25-2006 10:12 AM
Problem mounting Hard Disk on Mandriva 2005 LE captainsensible0 Linux - Hardware 1 10-12-2005 10:16 AM
Problem mounting ext3 filesystem on 2nd Hard Disk judgedeath2 Linux - Hardware 2 08-16-2004 09:43 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 04:14 PM.

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