Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 04, 2011 07:20PM |
Registered: 13 years ago Posts: 128 |
sudo -s apt-get install debootstrap dd if=/dev/zero of=debian_rootfs.img bs=1M count=1024 mkfs.ext3 -F debian_rootfs.img mkdir /media/debian mount debian_rootfs.img /media/debian -o loopNow let's run the first stage of debootstrap and get Debian Squeeze armel port.
debootstrap --verbose --arch armel --variant=minbase --foreign squeeze /media/debian http://ftp.debian.org/debianThe output should look like this. With the aid of Binfmt_misc we are able to chroot into armel rootfs on a x86 machine.
apt-get install binfmt-support qemu-kvm-extras-staticPlease note that the whole procedure doesn't work when using a Ubuntu Live CD. It does, however, work if performed under a normal Ubuntu installed to the HDD.
Package: * Pin: release a=stable Pin-Priority: 900 Package: * Pin: release o=Debian Pin-Priority: -10to your "/etc/apt/preferences" and this
APT::Default-Release "stable";to your "/etc/apt/apt.conf". Then edit your "/etc/apt/apt.conf" and add this
deb http://ftp.debian.org/debian/ testing main contribFinally, install the packages
apt-get update apt-get install -t testing qemu-user-static binfmt-supportEnd Debian section
modprobe binfmt_misc cp /usr/bin/qemu-arm-static /media/debian/usr/bin mkdir /media/debian/dev/pts mount devpts /media/debian/dev/pts -t devpts mount -t proc proc /media/debian/proc chroot /media/debian/If you see something like "I have no name!@hostname:/#", you're inside. Let's proceed with the second stage of debootstrap
/debootstrap/debootstrap --second-stageThe output should look like this. At the end you should see
I: Base system installed successfully.Now we can start installing necessary packages and configuring our rootfs. But before we must add the package sources.
cd /root cat <<END > /etc/apt/sources.list deb http://security.debian.org/ squeeze/updates main contrib non-free deb-src http://security.debian.org/ squeeze/updates main contrib non-free deb http://ftp.debian.org/debian/ squeeze main contrib non-free deb-src http://ftp.debian.org/debian/ squeeze main contrib non-free END apt-get updateAt this point it's a good idea to configure the language settings
exit mount devpts /media/debian/dev/pts -t devpts mount -t proc proc /media/debian/proc chroot /media/debian/ export LANG=C apt-get install apt-utils apt-get install dialog apt-get install locales cat <<END > /etc/apt/apt.conf APT::Install-Recommends "0"; APT::Install-Suggests "0"; END dpkg-reconfigure localesIf you need English only, just select en_US.UTF-8 in both dialogs and run
export LANG=en_US.UTF-8after that. For other languages, select en_US.UTF-8 and the appropriate locale for your language (xx_YY.UTF-8). For example, if you speak French, select en_US.UTF-8 and fr_FR.UTF-8 in the first dialog and choose fr_FR.UTF-8 in the second dialog. After that run
export LANG=fr_FR.UTF-8This way Debian will speak your mother tongue. The output shoud look like this. It's on time to install some important packages.
apt-get install linux-image-2.6-kirkwood flash-kernel module-init-tools dhcp3-client udev netbase ifupdown iproute openssh-server iputils-ping wget net-tools ntpdate uboot-mkimage uboot-envtools vim nanoThe output shoud look like this. Now we are going to reproduce some basic configuration steps which are also done in Jeff's script
cat <<END > /etc/network/interfaces auto lo eth0 iface lo inet loopback iface eth0 inet dhcp ENDSetup machine's name (in this case it will be "debian")
echo debian > /etc/hostnameSome onboard flash specific settings
cat <<END > /etc/fw_env.config # MTD device name Device offset Env. size Flash sector size Number of sectors /dev/mtd0 0xc0000 0x20000 0x20000 ENDFile system mounts
cat <<END > /etc/fstab # /etc/fstab: static file system information. # # <file system> <mount point> <type> <options> <dump> <pass> /dev/root / ext3 noatime,errors=remount-ro 0 1 tmpfs /tmp tmpfs defaults 0 0 END
echo 'T0:2345:respawn:/sbin/getty -L ttyS0 115200 linux' >> /etc/inittab sed -i 's/^\([1-6]:.* tty[1-6]\)/#\1/' /etc/inittabTell the system that we have no hardware clock
echo HWCLOCKACCESS=no >> /etc/default/rcSSlightly speed up the boot process
echo CONCURRENCY=shell >> /etc/default/rcSProlong the life of your USB flash drive
rm -f /etc/blkid.tab ln -s /dev/null /etc/blkid.tab rm -f /etc/mtab ln -s /proc/mounts /etc/mtab[Optional, not in Jeff's script] This are some packages I consider to be rather useful. However, it's not necessary to install them
apt-get install cron anacron bash-completion hdparm rsync bzip2 p7zip unrar unzip zip p7zip-full screen less usbutils psmisc strace man info logrotate fakeroot ethtool rsyslogSince GoFlex/Dockstar have no hardware clock, it might be useful to sync local time with time servers. This one is also optional.
dpkg-reconfigure tzdata -> Choose your continent and country apt-get remove ntpdate apt-get install ntp nano /etc/ntp.confreplace
server 0.debian.pool.ntp.org iburst server 1.debian.pool.ntp.org iburst server 2.debian.pool.ntp.org iburst server 3.debian.pool.ntp.org iburstby
server time-a.nist.gov server ptbtime1.ptb.de server ntp.ubuntu.comand add this to the end of the file
restrict time-a.nist.gov restrict ptbtime1.ptb.de restrict ntp.ubuntu.com restrict default notrust nomodify nopeersave and exit nano.
vmlinuz-2.6.32-5-kirkwood initrd.img-2.6.32-5-kirkwood System.map-2.6.32-5-kirkwoodHere vmlinuz-2.6.32-5-kirkwood is a compressed image of the kernel, while initrd.img-2.6.32-5-kirkwood is a compressed image of the initramfs, a small filesystem that is extracted to the RAM during the boot process and which can perform some useful tasks before the kernel switches to the "real" rootfs on your drive.
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-2.6.32-5-kirkwood -d /boot/vmlinuz-2.6.32-5-kirkwood //uImage mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-2.6.32-5-kirkwood -d /boot/initrd.img-2.6.32-5-kirkwood /uInitrd cd /boot ln -s ../uImage uImage ln -s ../uInitrd uInitrdI prefer to put both images to the root of the filesystem and then symlink them to /boot. That's because u-Boot usually looks for uInitrd in /boot while UBIT thinks that it should be in the root of the rootfs. This way I get both bootloaders covered.
cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/boot.tar.gz wget http://jeff.doozan.com/debian/goflex/v0.6/uInitrd tar xzvf boot.tar.gz cp boot/uImage / cp uInitrd / cd /boot ln -s ../uImage uImage ln -s ../uInitrd uInitrd cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/modules.tar.gz tar -C / -xzvf modules.tar.gz rm -r boot.tar.gz modules.tar.gz 2.6.37-ubit-01715-g1e5cda0 boot uImage
ls /boot dpkg -i install name-of-the-package.deb ls /bootAs usual you will see new vmlinuz-xxx and initrd.img-xxx corresponding to the installed kernel in /boot . Use
mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-xxx -d /boot/vmlinuz-xxx /uImage mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-xxx -d /boot/initrd.img-xxx /uInitrd cd /boot ln -s ../uImage uImage ln -s ../uInitrd uInitrdto prepare uImage and uInitrd and allow your bootloader use the new kernel.
sudo tune2fs -L "rootfs" /dev/whateverwhere /dev/whatever is the path to the partition containing the rootfs for the GoFlex
fw_setenv usb_init "run usb_scan; setenv usb_root LABEL=rootfs"then reboot and you're done. For more information on this solution check out this thread
cd /boot mkdir initrd.img-new cp initrd.img-2.6.38.8-goflex-ubit initrd.img-new/ cd initrd.img-new/ gzip -dc initrd.img-2.6.38.8-goflex-ubit | cpio -id rm initrd.img-2.6.38.8-goflex-ubit nano initFind the section which looks like
if [ -n "${noresume}" ]; then export noresume unset resume else resume=${RESUME:-} fiand replace it by
if [ -n "${noresume}" ]; then export noresume unset resume else resume=${RESUME:-} fi ROOT="/dev/disk/by-label/rootfs"Save your changes (Ctrl+W) and exit (Ctrl+X) nano. Now run
find ./ | cpio -H newc -o > initrd.img-2.6.38.8-goflex-ubit gzip -9 initrd.img-2.6.38.8-goflex-ubit mv initrd.img-2.6.38.8-goflex-ubit.gz ..//initrd.img-2.6.38.8-goflex-ubit_mod cd .. rm -r initrd.img-new mkimage -A arm -O linux -T ramdisk -C gzip -a 0 -e 0 -n Linux-2.6.38.8 -d /boot/initrd.img-2.6.38.8-goflex-ubit_mod /uInitrd cd /boot ln -s ../uInitrd uInitrdWith the modified initrd your GoFlex should boot fine reagardless of the number of SATA HDDs or USB drives connected to it.
passwdNow we're done here
exitThe size of the rootfs should be about about 300-400MB
umount /media/debian/proc umount /media/debian/dev/pts du -sh /media/debian/So we have a working rootfs image which we want to put on a USB flash drive. Connect your USB flash drive (Here I assume it to be /dev/sdb) and use gparted to create a primary ext3 partition (sdb1) and a primary swap partition (sdb2).
mount /dev/sdb1 /mnt cp -a /media/debian/* /mntFinally, unmount the partition
umount /mntplug the flash drive into your GoFlex/Dockstar and power it up. Please make sure that no other USB flash drives or HDD are connected to the system, otherwise it won't boot. You should be able to ssh into it as root using the password you've provided via passwd.
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 05, 2011 08:16AM |
Registered: 14 years ago Posts: 136 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 09, 2011 12:53AM |
Registered: 13 years ago Posts: 4 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 09, 2011 06:45AM |
Registered: 13 years ago Posts: 128 |
Sebastian Vettel
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 09, 2011 06:51AM |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 09, 2011 07:06AM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 10, 2011 05:03PM |
Registered: 13 years ago Posts: 4 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 10, 2011 05:43PM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 11, 2011 04:23PM |
Registered: 13 years ago Posts: 501 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 12, 2011 08:23AM |
Registered: 14 years ago Posts: 58 |
$ uname -a Linux debian-dm9 2.6.32-5-686 #1 SMP Mon Oct 3 04:15:24 UTC 2011 i686 GNU/Linux
apt-get update
I have no name!@debian-dm9:~# apt-get install apt-utils Reading package lists... Done Building dependency tree... Done The following NEW packages will be installed: apt-utils 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 267 kB of archives. After this operation, 606 kB of additional disk space will be used. Get:1 http://ftp.ch.debian.org/debian/ squeeze/main apt-utils armel 0.8.10.3+squeeze1 [267 kB] Fetched 267 kB in 7s (37.4 kB/s) perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). /usr/bin/locale: Cannot set LC_CTYPE to default locale: No such file or directory /usr/bin/locale: Cannot set LC_MESSAGES to default locale: No such file or directory /usr/bin/locale: Cannot set LC_ALL to default locale: No such file or directory debconf: delaying package configuration, since apt-utils is not installed Can not write log, openpty() failed (/dev/pts not mounted?) Selecting previously deselected package apt-utils. (Reading database ... Unsupported ioctl: cmd=0xc020660b Unsupported ioctl: cmd=0xc020660b Unsupported ioctl: cmd=0xc020660b ...skip lots of these... Unsupported ioctl: cmd=0xc020660b Unsupported ioctl: cmd=0xc020660b (Reading database ... 6137 files and directories currently installed.) Unpacking apt-utils (from .../apt-utils_0.8.10.3+squeeze1_armel.deb) ... qemu: Unsupported syscall: 341 qemu: Unsupported syscall: 341 qemu: Unsupported syscall: 341 ...skip lots of these... qemu: Unsupported syscall: 341 qemu: Unsupported syscall: 341 Can not write log, openpty() failed (/dev/pts not mounted?) Setting up apt-utils (0.8.10.3+squeeze1) ... I have no name!@debian-dm9:~#
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 12, 2011 02:48PM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 13, 2011 01:57PM |
Registered: 14 years ago Posts: 58 |
debootstrap --verbose --arch armel --variant=minbase --foreign squeeze /media/debian http://ftp.debian.org/debian
apt-get install binfmt-support qemu-kvm-extras-static
E: Unable to locate package qemu-kvm-extras-static
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 13, 2011 03:09PM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 14, 2011 05:54PM |
Registered: 14 years ago Posts: 58 |
chroot /media/debian/
root@dm9-Inspiron-910:~# chroot /media/debian/ I have no name!@dm9-Inspiron-910:/#
/debootstrap/debootstrap --second-stage
I: Configuring login... I: Configuring libuuid1... I: Configuring sysvinit... I: Configuring libblkid1... I: Configuring mount... I: Configuring util-linux... I: Configuring e2fsprogs... W: Failure while configuring required packages. I have no name!@dm9-Inspiron-910:/#
I: Configuring debian-archive-keyring... I: Configuring apt... I: Base system installed successfully.
perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = "en_US:en", LC_ALL = (unset), LANG = "en_US.UTF-8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). /usr/bin/locale: Cannot set LC_CTYPE to default locale: No such file or directory /usr/bin/locale: Cannot set LC_MESSAGES to default locale: No such file or directory /usr/bin/locale: Cannot set LC_ALL to default locale: No such file or directory Can not write log, openpty() failed (/dev/pts not mounted?)
apt-get install flash-kernel module-init-tools dhcp3-client udev netbase ifupdown iproute openssh-server iputils-ping wget net-tools ntpdate uboot-mkimage uboot-envtools vim nano
Errors were encountered while processing: isc-dhcp-client openssh-client openssh-server dhcp3-client E: Sub-process /usr/bin/dpkg returned an error code (1) I have no name!@dm9-Inspiron-910:/root#
apt-get install linux-image-2.6-kirkwood
perl: warning: Falling back to the standard locale ("C"). Segmentation fault Can not write log, openpty() failed (/dev/pts not mounted?) Errors were encountered while processing: linux-base linux-image-2.6.32-5-kirkwood linux-image-2.6-kirkwood E: Sub-process /usr/bin/dpkg returned an error code (1) I have no name!@dm9-Inspiron-910:/root#
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 15, 2011 09:23AM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 16, 2011 09:45AM |
Registered: 14 years ago Posts: 58 |
/debootstrap/debootstrap --second-stage
W: Failure while installing base packages. This will be re-attempted up to five times.
W: Failure while configuring required packages.
I: Base system installed successfully.
# apt-get install locales Reading package lists... Done Building dependency tree Reading state information... Done The following NEW packages will be installed: locales 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 4757 kB of archives. After this operation, 13.1 MB of additional disk space will be used. Get:1 http://ftp.ch.debian.org/debian/ squeeze/main locales all 2.11.2-10 [4757 kB] Fetched 4757 kB in 4s (1002 kB/s) Preconfiguring packages ... Selecting previously deselected package locales. (Reading database ... 6347 files and directories currently installed.) Unpacking locales (from .../locales_2.11.2-10_all.deb) ... Setting up locales (2.11.2-10) ... dpkg: error processing locales (--configure): subprocess installed post-installation script killed by signal (Segmentation fault) configured to not write apport reports Errors were encountered while processing: locales E: Sub-process /usr/bin/dpkg returned an error code (1) root@dm9-Inspiron-910:/#
/debootstrap/debootstrap --second-stage
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 22, 2011 06:40AM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 22, 2011 09:44AM |
Registered: 14 years ago Posts: 58 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 30, 2011 06:41PM |
Registered: 14 years ago Posts: 2 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC October 30, 2011 11:14PM |
Registered: 13 years ago Posts: 5 |
APT::Default-Release "stable";and one file in "/etc/apt/apt.conf.d" to define
deb http://ftp.debian.org/debian/ testing main contrib
cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/boot.tar.gz tar xzvf boot.tar.gz cp boot/uImage / cd /boot ln -s ../uImage uImage cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/modules.tar.gz tar -C / -xzvf modules.tar.gz rm -r boot.tar.gz modules.tar.gz 2.6.37-ubit-01715-g1e5cda0 boot uImage
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 02, 2011 04:14PM |
Registered: 13 years ago Posts: 128 |
sudo ifconfig eth0:0 10.10.10.5 nc -lu 10.10.10.5 6666in the first one and
sudo ifconfig eth0:1 10.10.10.4 nc -lu 10.10.10.4 6666in the second one. This way one can monitor U-Boot and kernel log simultaneously.
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 02, 2011 05:27PM |
Registered: 13 years ago Posts: 5 |
U-Boot 2010.09 (Oct 23 2010 - 11:53:10) Marvell-GoflexNet by Jeff Doozan, Peter CarmichaelFor files such as http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/boot.tar.gz, are they intended for Jeff's uBoot or UBIT 0.6? Sorry for my ignorance, I don't know the difference between the uBoot and uBit.
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 02, 2011 07:12PM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 03, 2011 08:14AM |
Registered: 14 years ago Posts: 58 |
cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/boot.tar.gz tar xzvf boot.tar.gz cp boot/uImage / cd /boot ln -s ../uImage uImage cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/modules.tar.gz tar -C / -xzvf modules.tar.gz rm -r boot.tar.gz modules.tar.gz 2.6.37-ubit-01715-g1e5cda0 boot uImage
cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/boot.tar.gz tar xzvf boot.tar.gz cp boot/uImage / cd /boot ln -s ../uImage uImage cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/uInitrd cp uInitrd / cd /boot ln -s ../uInitrd uInitrd cd /root wget http://jeff.doozan.com/debian/goflex/v0.6/v2.6.37/modules.tar.gz tar -C / -xzvf modules.tar.gz rm -r boot.tar.gz modules.tar.gz 2.6.37-ubit-01715-g1e5cda0 boot uImage uInitrd
Loading file "/boot/uImage" from usb device 0:1 (usbda1) 1 bytes read Found bootable drive on usb 0:1 Loading file "/boot/uImage" from usb device 0:1 (usbda1) 2941544 bytes read Loading file "/boot/uInitrd" from usb device 0:1 (usbda1) 4005544 bytes read ## Booting kernel from Legacy Image at 00800000 ... Image Name: Linux-2.6.37-ubit-01715-g1e5cda0 Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 2941480 Bytes = 2.8 MiB Load Address: 00008000 Entry Point: 00008000 Verifying Checksum ... OK ## Loading init Ramdisk from Legacy Image at 01100000 ... Image Name: UBIT-v0.6-00125-ga21bcca Image Type: ARM Linux RAMDisk Image (gzip compressed) Data Size: 4005480 Bytes = 3.8 MiB Load Address: 00000000 Entry Point: 00000000 Verifying Checksum ... OK Loading Kernel Image ... OK OK Starting kernel ...
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 03, 2011 11:52AM |
Registered: 13 years ago Posts: 5 |
apt-get install linux-image-2.6-kirkwood mkimage -A arm -O linux -T kernel -C none -a 0x00008000 -e 0x00008000 -n Linux-2.6.32-5-kirkwood -d /boot/vmlinuz-2.6.32-5-kirkwood //uImage mkimage -A arm -O linux -T ramdisk -C gzip -a 0x00000000 -e 0x00000000 -n initramfs-2.6.32-5-kirkwood -d /boot/initrd.img-2.6.32-5-kirkwood /uInitrd cd /boot ln -s ../uImage uImage ln -s ../uInitrd uInitrd
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 03, 2011 12:18PM |
Registered: 14 years ago Posts: 58 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 03, 2011 04:19PM |
Registered: 14 years ago Posts: 58 |
# uname -a Linux dm9-Inspiron-910 3.0.0-12-generic #20-Ubuntu SMP Fri Oct 7 14:50:42 UTC 2011 armv7l GNU/Linux
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 04, 2011 07:33AM |
Registered: 14 years ago Posts: 58 |
apt-get purge cron
# date Thu Jan 1 07:48:19 CST 1970
# ntpq -p No association ID's returned
# dpkg-reconfigure ntp Stopping NTP server: ntpd. dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_NAME missing dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_PACKAGE missing dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_NAME missing dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_PACKAGE missing Starting NTP server: ntpd.
dpkg-maintscript-helper: warning: environment variable DPKG_MAINTSCRIPT_PACKAGE missing ... Affects Status Importance Assigned to ... ntp (Ubuntu) Confirmed Low Unassigned ... In a very quick analysis I found that all the packages (on my system) that use "if dpkg-maintscript-helper supports ..." are affected. ... This bug is in Oneiric Ocelot
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 06, 2011 11:08AM |
Registered: 13 years ago Posts: 128 |
Re: Howto: Create Debian rootfs image for your GoFlex/Dockstar via debootstrap on a Ubuntu/Debian PC November 06, 2011 05:27PM |
Registered: 14 years ago Posts: 58 |