Page 1 of 5 123 ... LastLast
Results 1 to 20 of 85

Thread: howto : Running debian on azbox with webinterface

  1. #1
    Member
    Join Date
    May 2009
    Posts
    55
    Thanks
    0
    Thanked 0 Times in 0 Posts

    howto : Running debian on azbox with webinterface

    Howto : Installing Debian lenny on Azbox


    Connect to you azbox with telnet.

    go to your usb/hdd onto the azbox.

    in my case

    cd /DATA/hdb1
    create a debian folder

    mkdir debian
    then go in this directory

    cd /debian
    then you have to get the debian file.

    you can download it

    alternative download link
    hxxp://www.mediafire.com/?sharekey=89c043e8fe34d631d1014a7 a667fa2b4e04e75f6e8ebb871
    now unpack the package

    tar xzf nmt-debian-etch.tar.gz
    now we have to install the package.
    chroot debian /bin/bash
    export PATH=$PATH:/usr/bin:/usr/sbin
    debootstrap/debootstrap --second-stage
    Installing the package is very slow (40 minutes approx)

    you can exit the debian interface with the exit command

    exit
    you can enter it with

    chroot debian /bin/bash
    fist you have to setup your network access
    we gonna use the program vi to edit the file

    vi /etc/resolv.conf
    press 'i' for editing

    insert your routers ip
    **** search wan
    **** nameserver 192.168.2.1
    to save press escape then type
    :wq!
    test internet connection with
    then update your distribution
    apt-get update
    apt-get dist-upgrade
    if you get an error with

    apt-get update
    note down the pubkey

    NO_PUBKEY 9AA38DCD5502B
    then use this commands
    you have to replace the pubkey with your own key!

    apt-get install debian-archive-keyring
    gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 9AA38DCD55BE302B
    gpg --armor --export 9AA38DCD55BE302B | apt-key add -
    apt-get update
    keep on repeating this command until you get no more errors then use

    apt-get dist-upgrade
    for testing purpose you can test CCcam.
    download CCcam to your hard drive

    unpack it and then put CCcam.mipsel to your /tmp folder

    in my case
    /DATA/hdb1/debian/debian/tmp
    then chmod the file

    chmod 755 CCcam.mipsel

    for the CCcam.cfg you have to create the directory /var/etc

    go to debian /var/ directory.
    cd /var
    then create the directory.
    mkdir etc
    then you can ftp the CCcam.cfg to this dir.
    /DATA/hdb1/debian/debian/etc
    now for a test
    cd /tmp
    to start CCcam
    ./CCcam.mipsel -dv
    you can check if its running on
    to access debian thru a webinterface.


    install webmin 1.48

    first install necessary software
    apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl
    then download the webmin package

    go to /tmp folder
    cd /tmp
    download the package
    installeer nu het packet.
    dpkg --install webmin_1.480_all.deb
    then you can access it thru the browser
    after a reboot you need to restart webmin

    /etc/webmin/start
    have fun!!
    Last edited by alcatel; 19-07-2009 at 12:10 PM.

  2. #2
    Senior Member terrorman's Avatar
    Join Date
    Jun 2009
    Posts
    216
    Thanks
    0
    Thanked 0 Times in 0 Posts
    this error is normal?

    TD210[debian]$ tar xzf nmt-debian-etch.tar.gz
    tar: debian/usr/share/man/man3/Locale::gettext.3pm.gz: Invalid argument

  3. #3
    V.I.P
    Join Date
    Feb 2009
    Posts
    495
    Thanks
    0
    Thanked 0 Times in 0 Posts
    this is NOT OK!

    My Tip, unpack all on PC and you are sure, you have it right, use 7zip for it.
    Than copy all to Folder debian and follow alcatels Post

    Not clear for me is, debian in debian or all in first Folder debian??
    Because when I tar this package, I have folder debian and in it another folder debian with the Stuff

    EDIT! forget my Question, all is OK like I have

    A Tip, if you unpack with tar, dont have a FTP Connection to the Box at the same Time. It closes the FTP Connection and Package is not unpacked
    Last edited by hanswurscht; 18-07-2009 at 04:52 PM.

  4. #4
    Senior Member terrorman's Avatar
    Join Date
    Jun 2009
    Posts
    216
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I always luck, step by step

    TD210[debian]$ chroot debian /bin/bash
    chroot: cannot execute /bin/bash: No such file or directory

    everything is always so difficult for me

  5. #5
    Senior Member
    Join Date
    Jun 2009
    Posts
    261
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Is it possible on the AZBOX Elite?

    Thanks.

  6. #6
    V.I.P iko's Avatar
    Join Date
    May 2009
    Posts
    483
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I think Slowly but surely People will Start to understand Why we want E2
    Last edited by iko; 18-07-2009 at 05:43 PM.

  7. #7
    Senior Member terrorman's Avatar
    Join Date
    Jun 2009
    Posts
    216
    Thanks
    0
    Thanked 0 Times in 0 Posts
    work as in DM, a luxury

  8. #8
    Senior Member
    Join Date
    Jun 2009
    Posts
    261
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I am having difficulty installing it on my Elite. I made a folder called debian on the DATA/usb1 but when I want to access it using the command cd /DATA/usb1/debian it says there is no file or directory although If I use FTP program like DCC I can see the folder in place. It drives me crazy.

  9. #9
    V.I.P pr2's Avatar
    Join Date
    Jul 2006
    Posts
    669
    Thanks
    1
    Thanked 102 Times in 25 Posts
    Quote Originally Posted by terrorman View Post
    I always luck, step by step




    everything is always so difficult for me
    Hello,

    The /bin/bash doesn't exist, you probably need to use:

    ./bin/bash

    Or find where the bash file is in the folder path use pwd to see the real patch and issue the chroot with the correct full path.

    Pr2

  10. #10
    V.I.P pr2's Avatar
    Join Date
    Jul 2006
    Posts
    669
    Thanks
    1
    Thanked 102 Times in 25 Posts
    Quote Originally Posted by sami8519 View Post
    I am having difficulty installing it on my Elite. I made a folder called debian on the DATA/usb1 but when I want to access it using the command cd /DATA/usb1/debian it says there is no file or directory although If I use FTP program like DCC I can see the folder in place. It drives me crazy.
    Hello,

    The path is not correct, isn't it:

    /DATA/usb1/sda1/debian?

    Pr2

  11. #11
    Member
    Join Date
    May 2009
    Posts
    55
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by sami8519 View Post
    I am having difficulty installing it on my Elite. I made a folder called debian on the DATA/usb1 but when I want to access it using the command cd /DATA/usb1/debian it says there is no file or directory although If I use FTP program like DCC I can see the folder in place. It drives me crazy.
    if you use telnet and use

    cd /DATA/usb1
    then check the directory

    ls
    do you see the directory debian ?

  12. #12
    V.I.P
    Join Date
    Feb 2009
    Posts
    495
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I get an Error on Update Packages first:
    GPG Error with an Public Key not available

    Anyone the same?

  13. #13
    Member
    Join Date
    May 2009
    Posts
    55
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by hanswurscht View Post
    I get an Error on Update Packages first:
    GPG Error with an Public Key not available

    Anyone the same?
    if you get an error with

    apt-get update
    note down the pubkey

    NO_PUBKEY 9AA38DCD5502B
    then use this commands
    you have to replace the pubkey with your own key!

    apt-get install debian-archive-keyring
    gpg --keyserver wwwkeys.eu.pgp.net --recv-keys 9AA38DCD55BE302B
    gpg --armor --export 9AA38DCD55BE302B | apt-key add -
    apt-get update
    keep on repeating this command until you get no more errors then use

    apt-get dist-upgrade

  14. #14
    Senior Member
    Join Date
    Jun 2009
    Posts
    261
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Quote Originally Posted by alcatel View Post
    if you use telnet and use



    then check the directory



    do you see the directory debian ?
    yes I see the directory debian, but can go in it using cd /DATA/usb1/debian

    Error:

    MMP[~]$ cd /DATA/usb1
    MMP[usb1]$ mkdir debian
    MMP[usb1]$ cd /debian
    -sh: cd: /debian: No such file or directory
    MMP[usb1]$ ls
    debian/ sda1/

    Look like pr2 is right, it is /DATA/usb1/sda1 not /DATA/usb1. Itried that a while ago but was input output errot but now I formatted my HDD from fat32 to ext3 and the path accepts the command.

    oh wait, it is the same both folders dont allow me to access it. oppppsss

  15. #15
    V.I.P iko's Avatar
    Join Date
    May 2009
    Posts
    483
    Thanks
    0
    Thanked 0 Times in 0 Posts
    quick question
    my clines not allowed for reshare I've tried dm as a server and they didn't worked
    I'm wondering if they will work if I load debian and cccam like the way you've explained ?
    also
    @alcatel
    Do you know if anybody trying to write driver for azbox to make e2 real like the way done for kathie ???
    best regards
    many thanx for those info...

  16. #16
    Senior Member terrorman's Avatar
    Join Date
    Jun 2009
    Posts
    216
    Thanks
    0
    Thanked 0 Times in 0 Posts
    when I copy the files from the computer exploited AZ and restart, then there is no debian folder
    I will try and format in linux

  17. #17
    Senior Member
    Join Date
    Jun 2009
    Posts
    261
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I think it is only on the premium. look to my post above this. I cant go inside the debian directory.

  18. #18
    Senior Member terrorman's Avatar
    Join Date
    Jun 2009
    Posts
    216
    Thanks
    0
    Thanked 0 Times in 0 Posts
    uffff, only premium?

  19. #19
    Senior Member
    Join Date
    Apr 2009
    Posts
    160
    Thanks
    0
    Thanked 0 Times in 0 Posts
    if we have elite we have to make dir in usb stick no? what sense has to create this dir?.

  20. #20
    V.I.P
    Join Date
    Oct 2005
    Posts
    370
    Thanks
    0
    Thanked 0 Times in 0 Posts
    If you have Elite you need to format external USB disk with ext3 first. You can do it via Settings -> Storage. After that follow tutorial and change any /DATA/hdb1 to /DATA/usb1/sda1

Page 1 of 5 123 ... LastLast

Similar Threads

  1. AzBox CAM ****** v.1.0
    By @telesat in forum AZBox HD Tools
    Replies: 0
    Last Post: 29-06-2009, 06:35 AM
  2. help on cs in incubus
    By aqa in forum AZBox HD Newbie Questions
    Replies: 56
    Last Post: 19-05-2009, 02:46 AM
  3. To buy or not to buy Azbox premium, advice needed for newbie.
    By HotRock in forum AZBox HD Newbie Questions
    Replies: 6
    Last Post: 17-05-2009, 06:34 PM
  4. Separate Positioner hardware is needed for Azbox to move motor
    By s_kates81 in forum AZBox HD Newbie Questions
    Replies: 9
    Last Post: 08-05-2009, 12:45 PM

Bookmarks

Posting Permissions

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