Page 1 of 2 12 LastLast
Results 1 to 15 of 46

Thread: Debian Install Help Please

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18

    debian fstab example please

    Hi, could someone please post an example of an fstab for a debian install? I'm not real sure what it should look like (I know it will have to be custom based on my partition layout) I'm just uncertain on the basic layout I need... Thanks!

    Madar

  2. #2
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18

    Debian Install Help Please

    Hello all,

    I am very keen on setting up Debian on the WL-HDD however I am running into some snags following the tutorial. I am sure this can be done but the tutorial has left me in the dark on a several issues. If anyone can help me that would be great!!! Then we can try to add some more info to the wiki to make it easier for everyone (yeah )

    Question #1

    What should the fstab look like (I asked this before and a lot of people have viewed my post but no answers so far)? Is this fstab for the device root or does it go in my debian's /etc/fstab file? I’m pretty sure it goes in the debian /etc/fstab file but it doesn’t say on for sure on the wiki…

    Question #2

    I put the debian file tree where? In my current configuration I have set up 4 partitions (3 are ext3 1 is swp). Partition number one is for root, the second one is for swap (256mb) and two others I was hoping to use as HTTP and FTP separately.

    I put my debian-distro on the first partition at /tmp/harddisk/distributions/debian. I tried mounting this onto /tmp on the actual root system and ended up with /tmp/tmp/harddisk/distributions/debian so I moved some stuff around and got it to look like this /tmp/harddisk/distributions/debian but quickly ran into other problems…

    Question #3

    exim4-config (actually all exim4 debs) is not installing properly and I think this is the reason that several other debs are not installing correctly either (telnet, wget, etc). I tried letting it slide; just running base-config but that fails out… I was trying this all using 1.9.2.7-4 so I thought maybe that was my problem. I started over with 1.9.2.7-1 last night but I’m having difficulty even getting as far as I was before now.

    Questions #4

    The wiki says “ssh to your Asus device”. I don’t see how I could do that as out of the box I don’t seem to have an sshd running on the device? I have been using telnet and seems to work okay but it makes me think I’m missing out on some step here.

    I probably have other questions but nothing is coming to mind right now, I’m at work and it’s all a bit gray in my mind from here.

    I know I’m a noob with all of this but I would really appreciate it if someone could help me out. I am pretty good at following directions but I find the current wiki instructions to be lacking in many ways.

    Thanks in advance to everyone!!!

    Madar

  3. #3
    Join Date
    Apr 2004
    Location
    Netherlands
    Posts
    1,308
    Quote Originally Posted by Madar
    Questions #4

    The wiki says “ssh to your Asus device”. I don’t see how I could do that as out of the box I don’t seem to have an sshd running on the device? I have been using telnet and seems to work okay but it makes me think I’m missing out on some step here.
    SSH does not work right out the box indeed. When you've installed a custom firmware from Oleg, telnet should be running. You can use Putty to telnet to your box and setup SSH (dropbear) if you want to telnet to your box from WAN. There's a WIKI page on dropbear available.

  4. #4
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18

    A good start

    Thanks Styno!

    Well that is a start I will try this tonight when I get home. So do you think it's really necessary that I use ssh to set up debian? I'm still pretty confused about where the drives are supposed to be mounted. I've been plugging my drive in to my desktop (via usb) and mounting the first partition. Then I just copied the debian file structure onto the drive unmounted and reinstalled the drive to the WL-HDD. Then I used telnet to get onto the drive set up my (probably wonky) fstab, sources.list, and resolv.conf.

    Hmm okay time to go home, I will experiment with it tonight...

    Thanks again!

    Madar

  5. #5
    Join Date
    Apr 2004
    Location
    Netherlands
    Posts
    1,308
    Quote Originally Posted by Madar
    So do you think it's really necessary that I use ssh to set up debian?
    No, SSH is absolutely NOT nessesary when you only plan to access the router through telnet from a local LAN.

    SSH is advisable (not nessesary) when telnetting to the router from WAN.

  6. #6
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18

    Thanks!!!

    Thanks to everyone, I haven't had a chance to try this all out yet but I will a.s.a.p. It's always good to find an active community that is willing to help. I reckon this is the coolest thing I've owned since Lego...

    Cheers,

    Madar

  7. #7
    Well, I would'nt advise you to use SSH when you install debian on Wl-HDD. When you try an apt-get, the process hang under low memory using dropbear, when it works using telnet.
    Also, try to reduce the memory consuption by stoppingunnecessary process, and set up a swap file to get some extended memory.

    You can setup debian using the instruction on any partition, as long as it got enough space. 5Gb is enought IMHO.

    You have to get the debian install files on your partition, in any folder, and then do a chroot to your folder. It should give you a shell.

    You might have to do the final command more than 3 times (dpkg -iGREB /var/cache/apt/archive/), to end up the package install process.

    After that, I found I still had brocken package. You can set up a apt repository with testing source (ie:
    deb http://debian.ens-cachan.fr/ftp/debian/ testing main
    deb-src http://debian.ens-cachan.fr/ftp/debian/ testing main

    in you /etc/apt/sources.list (use a closer mirror for you)

    then do apt-get update
    then apt-get upgrade

    you should get your distib running. Be gentle in the beggining with dependency, dont try to install something bug before installing dependency by yourlself, it can ease the process.

    for the fstab, it is not readen properly anyway. You will have to do

    mount -t proc none /proc
    and also mount devfs devfs /dev

    and laso mount you hd. mount -a doesn't work for me until I do this.

    for info, here is my fstab, but i'm sure it's wrong:

    Code:
    proc            /proc           proc    remount         0       0
    ramfs           /tmp            ramfs   defaults        0       0
    usbfs           /proc/bus/usb   usbfs   defaults        0       0
    dev             /dev            devfs   defaults        0       0
    /dev/hda1       /mnt/hd         ext3    defaults        1       1
    /dev/hda2       /mnt/hd2        ext3    defaults        1       2
    Hope this help. I can even run windowsmaker using vnc on the wl-hdd, and compile program natively
    Last edited by hugo; 06-04-2005 at 14:16.

  8. #8
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18

    networking help

    Thanks for all your help so far, I think I'm getting closer but I've run into another snag (DOH!)

    I too have packages that can't be configured so I need to apt-get update, problem is networking is not working for me. "route" offers me the following:

    [root@firefly /]$ route
    /proc/net/route: No such file or directory
    INET (IPv4) not configured in this system.
    [root@firefly /]$

    ipconfig is not installed yet so no luck on that end.

    My resolve.conf looks like this:

    search
    192.168.1.254

    here is what is mounted:
    [root@firefly /]$ mount

    none on /proc type proc (rw)
    ramfs on /tmp type ramfs (rw)
    dev on /dev type devfs (rw)

    Here is a list of the packages I can't configure without updating:
    base-files
    console-data
    passwd
    adduser
    exim4-daemon-light
    debconf
    dhcp3-client
    exim4
    tcpd
    console-tools
    netbase
    dhcp3-common
    tasksel
    cron
    at
    logrotate
    man-db
    base-config
    ppp
    libssl0.9.7
    ifupdown
    pppoeconf
    pppconfig
    bsdmainutils
    telnet
    wget


    So basically I'm sunk and I'm not sure what I should do next.

    Thanks in advance to anyone who can help me out on this

  9. #9
    ipconfig or ifconfig? It seems to me it is on the basic packages.

    Basicaly, you have to be able to ping google.com to go on. Check your resolv.conf, and ifconfig. What is the result? Use static ip adressing.

    Also, you MUST type
    Code:
    mount -t proc none /proc
    after you have done the chroot to get use of ifconfig and route command.

  10. #10
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18
    Proc is mounted as per previous post and no I can't ping out (cuz the networks not working right ) so I can't stat debs of the net...

    Anyway here is what is mounted:
    [root@firefly /]$ mount

    none on /proc type proc (rw)
    ramfs on /tmp type ramfs (rw)
    dev on /dev type devfs (rw)

    My resolve.conf looks like this:

    search
    192.168.1.254

    (192.168.1.254 is my router)

    Your correct it is ifconfig just a typo on my part (i've been using Microsoft Windows at work a lot lately )

    ipconfig yields the following:

    [root@firefly /]$ ifconfig
    Warning: cannot open /proc/net/dev (No such file or directory). Limited output.
    [root@firefly /]$

    route yields the following:

    [root@firefly /]$ route
    /proc/net/route: No such file or directory
    INET (IPv4) not configured in this system.
    [root@firefly /]$

    when I try setting a default gateway I get this:

    [root@firefly /]$ route add default gw 192.168.1.254
    SIOCADDRT: File exists
    [root@firefly /]$

    I'm not exactly sure what SIOCADDRT is all about but it sounds like older kernel stuff which got me thinking about how I'm using "Sid" packages and the original tutorial mentioned "Sarge". I'm thinking to build a "Sarge" system and trying that. Does anyone know if this sounds like my problem? I'm thinking maybe... Doh!
    Last edited by Madar; 08-04-2005 at 18:14.

  11. #11
    did you actually type the command? What is the result when you type the
    Code:
    ps
    command? Does it complain about proc?

  12. #12
    Join Date
    Mar 2005
    Location
    Taipei Taiwan
    Posts
    18

    Debian on the WL_HDD Update

    I just wanted to post an update on my trials with Debian on the WL_HDD.
    So I finally got some time in on this last weekend, and I’m happy to say things are going pretty well. I downloaded iiivx’s image and set it up on a partition on my hard drive and when I rebooted the device SHAZAM I had a functional Debian box. Admittedly, I haven’t played around with it much yet but so far so good Thanks you iiivx for all of your hard work. I’m curious how you overcame the problem packages (debconf for one). Did you end up setting up a cross compiler? If you did, all I can say is wow (I would have never sorted that out on my own)!!! Anyway, if anything exciting comes up I’ll be sure to post and let you all know.

    Thanks to everyone for your help

    Madar

  13. #13

    debian after one week

    hey guys,

    i am trying to get debian on my extern usb-hdd connected to my asus wl 500g. i read the wiki and after hours i have now an debian tree, that i got to my asus (debootstrap was not installed on my debian before ).

    but now i can not get around with

    "create etc/fstab hosts resolv.conf apt/sources.list"

    in the wiki. i read some threads in the forums and found out, that it can be difficult to set up fstab. but the prob is, that i do not even know what the wiki mean with "create etc/fstab hosts resolv.conf apt/sources.list".

    how create and where i get the input for the files?

    sorry but i am just starting with linux and stuff. the wiki is not compatible to people like me.

    i hope u can advice me because it was a lot of work to get so far. now i really want this debian get running!

    thanx

  14. #14

    help

    is there no one who is wants to help me? i really searched the forum for the solution, but no success...

  15. #15

    Howto in the works.

    Hi

    I am hoping to be ready with a howto within long.

    I havent tried debian yet - but as soon as I have it running I will write a howto.

    It is all a question of finding the time.....
    macsat
    http://www.macsat.com - Tutorials and information on using ASUS WL-500G and family.

Page 1 of 2 12 LastLast

Similar Threads

  1. HOWTO install debian on 128 mb usb stick
    By iiivx in forum WL-500gP Tutorials
    Replies: 49
    Last Post: 11-09-2010, 07:26
  2. Printing through port 9101 with debian
    By Faberic in forum WL-500g Q&A
    Replies: 9
    Last Post: 23-06-2005, 07:54

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •