LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 10-28-2003, 11:42 PM   #1
Erdna
LQ Newbie
 
Registered: Oct 2003
Posts: 13

Rep: Reputation: 0
can't boot with net.i floppy


Hi all,
I am trying to install slackware 7.1. (why 7.1. because that was the last one that featured net.i boot disk image)
My system has a brandnew 20G harddrive and I can't use cd's to install, so I was figuring I boot from floppy then do an ftp install.
Right now, I am stuck at the lilo boot prompt with error code 0x04.
What next?
 
Old 10-29-2003, 02:32 AM   #2
Erdna
LQ Newbie
 
Registered: Oct 2003
Posts: 13

Original Poster
Rep: Reputation: 0
ok, I think I solved my own problem - maybe others can learn from this.

Starting from slack v8.1 (I think) net.i is obsolete because it tries to detect too many network adapters which can cause problems. An explanation can be found in:
ftp://ftp.slackware.com/pub/slackwar...144/README.TXT

It is now suggested to use the following method:

bootdisk: bare.i
rootdisks: install.1 & install.2 & network.dsk
 
Old 10-29-2003, 03:32 AM   #3
rotvogel
Member
 
Registered: Oct 2003
Posts: 534

Rep: Reputation: 30
An ftp install is as far as I know not supported in Slackware. The net rootdisk is used for installing using a NFS share.
 
Old 10-29-2003, 03:24 PM   #4
Erdna
LQ Newbie
 
Registered: Oct 2003
Posts: 13

Original Poster
Rep: Reputation: 0
actually there is:
http://emsi.it.pl/SuckSlack/ (nice name )
http://sourceforge.net/projects/slackftp

I tried slackftp already but it wouldn't work with my slack 9.1 disks, so I am about to try SuckSlack.
 
Old 10-30-2003, 02:43 AM   #5
Erdna
LQ Newbie
 
Registered: Oct 2003
Posts: 13

Original Poster
Rep: Reputation: 0
suckslack somewhat worked, at least it started to download the packages - problem is that my network connection dropped out in the middle somewhere.
I was hoping that enough packages had been installed, but the system won't even boot without the boot disk.
Then when I use the bootdisk and do mount=/dev/hda3
which is where my root is, system goes into a kernel panik saying that there is no init.
what now?
 
Old 10-31-2003, 03:20 PM   #6
Erdna
LQ Newbie
 
Registered: Oct 2003
Posts: 13

Original Poster
Rep: Reputation: 0
I'm somewhat frustrated to say the least....
I finally had suckslack working, but my network connection keeps dropping out and then I have to start all over again :-(
So in the meantime I got RH9 installed on a different server on the same network so I can install slack using NFS.... but I am getting the following error:

====
mount: RPC: Port mapper failure - RPC: Unable to receive
====
I then got out of setup, configured eth0 and I can ping my nfs host. How can I try the nfs mount from the console?

Also, I was able to install all *a* packages with suckslack, so the kernel is on the damn harddisk, how can I now boot from the hd instead of the boot floppy?

I just ordered the slack 9.1 cd's but if this nfs doesn't work, I'm screwed.
 
Old 10-31-2003, 04:26 PM   #7
DaHammer
Member
 
Registered: Oct 2003
Location: Planet Earth
Distribution: Slackware, LFS
Posts: 561

Rep: Reputation: 30
Quote:
Originally posted by Erdna

====
mount: RPC: Port mapper failure - RPC: Unable to receive
====
Did you set up any NFS shares on the PC hosting it? Anyway, things to check on the PC hosting the share.

1) Make sure that both portmap and nfsd are running.
Code:
ps aux | grep portmap

or

ps aux | grep rpc
Code:
ps aux | grep nfsd
If they aren't then start them.

2) Make sure you in fact have an NFS share. Peek at /etc/exports. You should see something similiar to this for each share:
Code:
/tmp                  192.168.0.2(rw,sync)
The above shares "/tmp" with any PC at IP 192.168.0.2, allowing it both read and write access. This would need to be the IP address you enter for the PC you're installing slackware on when you setup the NFS installion. You can also use a FQDN instead of IP if you're running a DNS server for the IP/PC. I think you could also use a subnet, making the share available to every PC on your network. Check the NFS documentation for more info on the parameters. Of course anytime you make changes to this file you'll need to restart nfsd.

3) Make sure you are actually exporting the share, even if it was listed in /etc/exports. Run exportfs to see if it's there.

Code:
root@slack:~# /usr/sbin/exportfs
/tmp            192.168.0.2
That should get you going. You can also use rpcinfo to make sure the client sees the share. But the slackware installion should pick it right up once it's available. Anyway, the command to do that would be something like so:

Code:
/usr/sbin/rpcinfo -p 192.168.0.1
assuming 192.168.0.1 is the address of the PC running nfsd. Good luck.

Last edited by DaHammer; 10-31-2003 at 04:27 PM.
 
Old 10-31-2003, 05:30 PM   #8
Erdna
LQ Newbie
 
Registered: Oct 2003
Posts: 13

Original Poster
Rep: Reputation: 0
Hi DaHammer,

I'm pretty sure that I setup everything correctly on my nfs host:
output from command 'rpcinfo -p' (on host):
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper
100024 1 udp 32768 status
100024 1 tcp 32768 status
391002 2 tcp 32769 sgi_fam
100011 1 udp 815 rquotad
100011 2 udp 815 rquotad
100011 1 tcp 818 rquotad
100011 2 tcp 818 rquotad
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
100021 1 udp 32780 nlockmgr
100021 3 udp 32780 nlockmgr
100021 4 udp 32780 nlockmgr
100005 1 udp 32781 mountd
100005 1 tcp 35926 mountd
100005 2 udp 32781 mountd
100005 2 tcp 35926 mountd
100005 3 udp 32781 mountd
100005 3 tcp 35926 mountd

portmap, rpc and nfsd are also up and running on the host.
my /ect/exports looks like this:
/home/andre 192.168.2.2(rw,sync)

and the command 'exportfs' gives:
/home/andre 192.168.2.2

and the command '/usr/sbin/rpcinfo -p 192.168.2.2' gives:
program vers proto port
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper

on the client box, which doesn't have a lot of stuff on there because I could only get through installing all the 'a' packages I don't even have a rpcinfo command. The only command that I could find is rpc.portmap and it seems to be running.

any ideas?
 
  


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
Lost Linux boot and boot floppy doesn't work marquedios Linux - Newbie 9 05-22-2005 02:21 PM
generic/general/universal net-install boot-floppy linux_newbie_23 Linux - Networking 0 09-13-2004 03:19 PM
Creating a Boot Floppy for Dual Boot Setup? jdanniel Linux - Newbie 8 08-07-2004 02:08 PM
Cannot Boot Linux - forgot to make boot floppy marsial Linux - Newbie 3 08-23-2003 12:39 PM
Floppy disk fail to boot when install suse 8 with boot from floppy ffang Linux - Newbie 0 08-18-2003 08:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 12:03 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