Differences

This shows you the differences between the selected revision and the current version of the page.

howto:chroot_debian 2009/02/10 09:29 howto:chroot_debian 2017/09/06 18:38 current
Line 1: Line 1:
-====== Install Debian Sarge - by Mike Gore and Manuel Treitinger ====== +====== Install Debian Etch - by Mike Gore and Manuel Treitinger ======
**Please feel free to update, cleanup or correct this page** **Please feel free to update, cleanup or correct this page**
Line 6: Line 5:
Note: this technique installs a Debian environment into the existing system, and does not require you to reflash or hack the NAS. Note: this technique installs a Debian environment into the existing system, and does not require you to reflash or hack the NAS.
 +
 +**All downloads/methods below are using Debian for arm. This is more or less deprecated. See [[http://dns323.kood.org/forum/viewtopic.php?id=4330|forum post]] on howto install an armel version. **
 +
 +
 +
===== The easy way ===== ===== The easy way =====
-The easiest way to get a full Debian environment ist to use DebNAS. It provides a full base system with SSH enabled by default and boots automatically. As it uses chroot, it is not going to harm your device and can be uninstalled by simply deleting one file ("fun_plug") and one folder ("linux") from your first volume. +The easiest way to get a full Debian environment is to use DebNAS. It provides a full base system with SSH enabled by default and boots automatically. As it uses chroot, it is not going to harm your device and can be uninstalled by simply deleting one file ("fun_plug") and one folder ("linux") from your first volume.
**Download**: [[http://mesh.dl.sourceforge.net/sourceforge/debnas/debnas-0.5.tar.bz2]] **Download**: [[http://mesh.dl.sourceforge.net/sourceforge/debnas/debnas-0.5.tar.bz2]]
Line 21: Line 25:
  - The DNS-323 automatically boots into Debian and runs the SSH - daemon   - The DNS-323 automatically boots into Debian and runs the SSH - daemon
-You can now log in via SSH, the default root password is 12345678.+You can now log in via SSH, the default password for username root is 12345678. 
 +(Be aware that (sometimes) the NAS is only accessible via IP address at this moment!) 
 +Change the password immediately with the passwd command.
**Have fun!** **Have fun!**
Note: Upgrading Debian to a current distribution is going to increase performance a lot. Note: Upgrading Debian to a current distribution is going to increase performance a lot.
 +**To upgrade to Debian Lenny :**\\
 +''Edit /etc/apt/sources.list.d/etch.list, replacing the word etch with lenny.
 +I also changed the mirror url to a North American mirror rather than the German one by removing the de. in the url. You may also rename the filename from etch.list to lenny.list if you feel so inclined.''
 +<code xml>
 +NOTE: This does not work as written, lenny and etch are both archived, and as such, the repositories have moved. The following worked for me.
 +
 +deb http://archive.debian.org/debian/ lenny main non-free contrib
 +deb http://archive.debian.org/debian-backports lenny-backports main
 +</code>
 +
 +
 +Now we need to update the repository packages listing and upgrade to lenny. You may have GPG issues which you can resolve by calling :
 +<code bash>
 +apt-get install debian-archive-keyring
 +</code>
 +Or following the guide  **Here**: [[http://linux.com/community/blogs/Debian-Upgrading-to-Lenny-ERROR-no-public-key-available-for-the-following....html]] 
 +
 +Make sure that you have DNS nameservers listed in /etc/resolv.conf, and run :
 +
 +
 +<code bash>
 +apt-get update
 +apt-get dist-upgrade
 +</code>
 +
 +This will take a while to download and then upgrade. When it is done reboot Debian. I had to reboot using the command ‘reboot -f’. When Debian comes back up, it will be running Lenny. When it comes back up, update to make sure everything is current.
 +
 +<code bash>
 +apt-get update
 +apt-get upgrade
 +</code>
 +Now we have a reasonably current Linux system to play with.
Line 39: Line 78:
http://www.penoycentral.net/linuxnix/configuring-ssh-and-rsync-in-dlink-dns-323/ http://www.penoycentral.net/linuxnix/configuring-ssh-and-rsync-in-dlink-dns-323/
 +
==== 2. base system ==== ==== 2. base system ====
Line 46: Line 86:
=== 2A. download a minimal image === === 2A. download a minimal image ===
-  * Debian Sarge 3.1 - [http://wopr.levring.nu/sarge.tar] (83Mb)  
  * Debian Etch 4.0 - [http://dev.skcserver.de/dns323/etch.tar] (169 Mb)   * Debian Etch 4.0 - [http://dev.skcserver.de/dns323/etch.tar] (169 Mb)
  * Debian Etch 4.0 (U.S. mirror) - [http://www.bfaber.com/dl/etch.tar]   * Debian Etch 4.0 (U.S. mirror) - [http://www.bfaber.com/dl/etch.tar]
Line 75: Line 114:
We will now "bootstrap" an ARM debian system using our x86 debian system We will now "bootstrap" an ARM debian system using our x86 debian system
**note it will error out at the final install phase - this is just fine** **note it will error out at the final install phase - this is just fine**
-This process will create an ARM debian environment under a directory called **sarge**+This process will create an ARM debian environment under a directory called **lenny**
<code bash> <code bash>
-cdebootstrap -aarm sarge sarge ftp://ftp.debian.org/debian+cdebootstrap -aarm lenny lenny ftp://ftp.debian.org/debian
</code> </code>
-For the current stable (**etch**) you should use the following +For the oldstable (**etch**) you should use the following 
-When you use this line, you should replace all "sarge" texts with "**etch**".+When you use this line, you should replace all "lenny" texts with "**etch**".
<code bash> <code bash>
cdebootstrap -aarm etch etch ftp://ftp.debian.org/debian cdebootstrap -aarm etch etch ftp://ftp.debian.org/debian
</code> </code>
-*update by Explisit (22rd Feb 08) - Etch source for arm architecture are not available from ftp://ftp.debian.org/debian try different mirror for instance ftp://ftp.bg.debian.org/debian +Archive the **lenny** (or **etch**) directory we created with the bootstrap
- +
-Archive the **sarge** directory we created with the bootstrap+
<code bash> <code bash>
-tar cf sarge.tar sarge+tar pcvf lenny.tar lenny
</code> </code>
-Copy this tar file to **/mnt<del>/HD_a2</del>** (Update 20 jan 2008, Stefan: The /HD_a2 is not needed because we mounted /Volume_1 in /mnt)+Copy this tar file to **/mnt**
<code bash> <code bash>
-cp sarge.tar /mnt+cp lenny.tar /mnt
</code> </code>
 +
Line 117: Line 155:
</code> </code>
-# At this point, you should untar the {sarge,etch}.tar file that you made above+# At this point, you should untar the {lenny,etch}.tar file that you made above
<code bash> <code bash>
-./lnx_bin/busybox3 tar -xf sarge.tar+./lnx_bin/busybox3 tar -xf lenny.tar
</code> </code>
-Or for firmware 1.04:+Or for firmware 1.04+:
<code bash> <code bash>
-tar -xf sarge.tar+tar -xf lenny.tar
</code> </code>
-# Replace sarge.tar with etch.tar above if you built an etch install+# Replace lenny.tar with etch.tar above if you built an etch install
* Daniel (26 Oct 08) Alternatively with FFP 0.3 you may find that the correct command is: ./fun_plug.d/bin/busybox tar -xf etch.tar * Daniel (26 Oct 08) Alternatively with FFP 0.3 you may find that the correct command is: ./fun_plug.d/bin/busybox tar -xf etch.tar
Line 133: Line 171:
# chroot into the partly bootstrapped sarge debian root # chroot into the partly bootstrapped sarge debian root
<code bash> <code bash>
-./lnx_bin/busybox3 chroot sarge /bin/bash+./lnx_bin/busybox3 chroot lenny /bin/bash
</code> </code>
-Or for firmware 1.04:+Or for firmware 1.04+:
<code bash> <code bash>
-chroot sarge /bin/bash+chroot lenny /bin/bash
</code> </code>
# At this point you should have a shell in the new debian root # At this point you should have a shell in the new debian root
 +
 +*update by sm8ps (20100815): On Firmware 1.08 with the downloaded a minimal image from step 2A, none of the following was necessary. I could proceed straight to step 4.
# Fix the broken packages caused by the failed cdebootstrap - above # Fix the broken packages caused by the failed cdebootstrap - above
Line 165: Line 205:
</code> </code>
# check remaining dpkg errors if any # check remaining dpkg errors if any
- 
-# 
- 
- 
*update by Richard (23rd Dec 07) I had to delete /var/mail to get base_files to install properly *update by Richard (23rd Dec 07) I had to delete /var/mail to get base_files to install properly
*update by Michael (20th June 08) I had to delete /var/mail in sarge.  etch was fine. *update by Michael (20th June 08) I had to delete /var/mail in sarge.  etch was fine.
 +
Line 197: Line 234:
*Add by Vladimir Kovtun (18th Dec 08), tested well. *Add by Vladimir Kovtun (18th Dec 08), tested well.
 +*Add by Jesper Møller (21st April 09), if you don't have a suitable proxy, be sure to fix the  fix /etc/resolv.conf to point to you DNS servers
# (1) Edit your /etc/apt/sources.list so that includes some servers.  For instance: # (1) Edit your /etc/apt/sources.list so that includes some servers.  For instance:
Line 214: Line 252:
and empty /etc/apt/sources.list/etch.conf (or simple unlink it) and empty /etc/apt/sources.list/etch.conf (or simple unlink it)
*Update by Vladimir Kovtun (19th Dec 08), tested well. *Update by Vladimir Kovtun (19th Dec 08), tested well.
 +
 +*update by sm8ps (20100815): As of 20100215, the support of Debian Etch has run out.
 +The above mentioned sources do not work anymore therefore.
 +The Debian archive, however, still contains the packages.
 +So for Etch one should use the following sources (and delete /etc/apt/sources.list.d/etch.list):
 +
 +<code>
 +deb http://archive.debian.org/debian-archive/debian/ etch main contrib non-free
 +deb-src http://archive.debian.org/debian-archive/debian/ etch main contrib non-free
 +</code>
or (mdvx 19-Jan-09) or (mdvx 19-Jan-09)
Line 227: Line 275:
</code> </code>
*Update by Vladimir Kovtun (19th Dec 08), tested well - first "apt-get update" for update keys for next updates. *Update by Vladimir Kovtun (19th Dec 08), tested well - first "apt-get update" for update keys for next updates.
- 
# make root password # make root password
<code bash> <code bash>

Navigation

Personal Tools