LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How to complete remaining "debian-7.1.0-amd64-i386-netinst" ? (https://www.linuxquestions.org/questions/linux-newbie-8/how-to-complete-remaining-debian-7-1-0-amd64-i386-netinst-4175475976/)

tousif 09-05-2013 12:10 AM

How to complete remaining "debian-7.1.0-amd64-i386-netinst" ?
 
Hey guy's hope you're doing well,

I'm happy :) to have "Debian-7.1.0-amd64-i386-netinst.iso"
i burned & boot from it, Debian setup started everything was fine until "bad mirror archive" error occurred :confused:

i don't know :scratch: what's wrong with my DSL, i skipped using mirror and installed base system with standard utility files, and booted to windows to checkout connection i found DSL connection working but while installing Debian its not working!! why?:cry:

what i want is !!!
1) Using base system commands:cool:
- configuring & bringing up my DSL connection.
- installing all remaining files from mirror.

any help would be great :hattip:

EDDY1 09-05-2013 12:59 AM

Were you able to get network connected, or did it say load firmware?
On bootup try using Advanced Options>>Expert Install.

tousif 09-05-2013 06:48 AM

Quote:

Originally Posted by EDDY1 (Post 5022062)
Were you able to get network connected, or did it say load firmware?
On bootup try using Advanced Options>>Expert Install.

Yes it says Load firmware from removable media.
ok i'm trying expert installation.

EDDY1 09-05-2013 07:17 AM

Firmware isn't on netinstall iso
You can download & put on cd/usb or get install media with it included.
https://wiki.debian.org/Firmware
What network card do you have. Is it ethernet or wireless?

tousif 09-06-2013 12:05 AM

i've already downloaded some missing Firmware from debian website as below,
http://cdimage.debian.org/cdimage/un...table/current/
it's BSNL Broadband network, and hardware is ZTE ZXDSL 831AII - it's wired ethernet :)

How i connect to internet in w7?? Procedure is below :-
ISP has given me User name and password for connection.
i dial a connection after providing the same, and got connected to Internet.

EDDY1 09-06-2013 12:19 AM

Are you using cd or usb?
It is probably going to be simpler to use netinstall wit firmware included
http://cdimage.debian.org/cdimage/un...ding-firmware/

EDDY1 09-06-2013 12:22 AM

Also you need to provide information on ethernet controller

tousif 09-06-2013 12:39 AM

Quote:

Originally Posted by EDDY1 (Post 5022790)
Are you using cd or usb?
It is probably going to be simpler to use netinstall wit firmware included
http://cdimage.debian.org/cdimage/un...ding-firmware/

i'm using debian-7.1.0-amd64-i386-netinst cd, i downloaded it's ISO and burnt to disk,
how about this cd ...
http://cdimage.debian.org/cdimage/un...0/i386/iso-cd/
i checked your link and selected the above one.
i did the installation again this time no firmware notice was their but still unable to connect to internet while net installation.

what information about ethernet controller do i need to provide??

Firerat 09-06-2013 01:03 AM

make and model is usually a good start

if it is on the mainboard, the make a model of that

EDDY1 09-06-2013 01:16 AM

Quote:

Originally Posted by tousif (Post 5022804)
i'm using debian-7.1.0-amd64-i386-netinst cd, i downloaded it's ISO and burnt to disk,
how about this cd ...
http://cdimage.debian.org/cdimage/un...0/i386/iso-cd/
i checked your link and selected the above one.
i did the installation again this time no firmware notice was their but still unable to connect to internet while net installation.

what information about ethernet controller do i need to provide??

Did it successsfu;;y install network?

Firerat 09-06-2013 01:16 AM

Edit:

actually you can get some usefull info off the installer

switch to a console ( Ctl+F2 ) and type
Code:

lspci -nnk
as an example here is mine
Code:

03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 01)
        Subsystem: ABIT Computer Corp. Device [147b:240b]
        Kernel driver in use: r8169

the bit in green will probably do, but the rest would be nice

get back to the installer with Ctrl+F1

tousif 09-06-2013 01:37 AM

Quote:

Originally Posted by Firerat (Post 5022820)
Edit:

actually you can get some usefull info off the installer

switch to a console ( Ctl+F2 ) and type
Code:

lspci -nnk
as an example here is mine
Code:

03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [10ec:8168] (rev 01)
        Subsystem: ABIT Computer Corp. Device [147b:240b]
        Kernel driver in use: r8169

the bit in green will probably do, but the rest would be nice

get back to the installer with Ctrl+F1

i completed debian net installation without network mirror as "bad archive mirror" error appeared,
i installed basic debian again. now how can i download remaining stuff that i left while skipping mirrors?

zhjim 09-06-2013 01:49 AM

You have to setup the mirrors for apt. Heres the content of mine. Put this into /etc/apt/sources.list
Code:

deb http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy main non-free contrib
deb-src http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy main non-free contrib

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

# wheezy-updates, previously known as 'volatile'
deb http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy-updates main contrib non-free

After putting this into the file you need to run
Code:

apt-get update
apt-get upgrade

and after this is done run tasksel. This will help greatly in shaping up your system.

Nother thing how do you connect to the internet? Do you have computer->dsl-modem or computer->router->dsl-modem?
Does the router provide dhcp? I'm just trying to find out if you would need to setup dsl connection during install or while running debian.

tousif 09-06-2013 02:26 AM

Quote:

Originally Posted by zhjim (Post 5022843)
You have to setup the mirrors for apt. Heres the content of mine.
Code:

deb http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy main non-free contrib
deb-src http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy main non-free contrib

deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free

# wheezy-updates, previously known as 'volatile'
deb http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.informatik.rwth-aachen.de/ftp/pub/Linux/debian/ wheezy-updates main contrib non-free

After putting this into the file you need to run
Code:

apt-get update
apt-get upgrade

and after this is done run tasksel. This will help greatly in shaping up your system.

Nother thing how do you connect to the internet? Do you have computer->dsl-modem or computer->router->dsl-modem?
Does the router provide dhcp? I'm just trying to find out if you would need to setup dsl connection during install or while running debian.

it's computer->router->dsl-modem, yes it takes dhcp automatically, everything is set to automatic mode including IP, i read on debian website about setting up mirror for apt but didn't understood it well,

i'm now running basic debian, and refering to
http://www.debian.org/mirror/ftpmirror#whether
above given link to setup mirror.
you can also describe your method to do the same. :)

and if it will not work then I'll go to
http://debian.cse.msu.edu/debian-cd/...amd64/iso-dvd/
for downloading full DVD's
wish me good luck eddy.i'll get back to you soon
thanks for great help buddy.

zhjim 09-06-2013 05:17 AM

Upsi forgot to tell you where the list of mirrors have to go. They have to go into /etc/apt/sources.list. So login into your shell and do
Code:

editor /etc/apt/sources.list
This should fire up the editor and you are able to edit the file. Save and then go with the apt-get update; apt-get upgrade process.

The link you provided with ftpmirror is not what you want. Really is for having all packages on a local computer which can be used by other computers. And is not needed and not recommended for normal usage of debian.

Before downloading another iso I would first try to get your box connect to the network. Somethings to try out:
Code:

ip link set up dev eth0
ip addr
dhclient
ip addr



All times are GMT -5. The time now is 07:32 PM.