Re: [DNG] Download iso 32bit devuan alpha2 or higher(based, , installation without network)
On 04/03/16 23:19, fsmithred wrote: Nice guide. Thanks. I was thinking more along the lines of this set of instructions for a debootstrap install to hard drive, rather than with live build. https://git.devuan.org/dev1fanboy/Upgrade-Install-Devuan/wikis/Minimal-install-guide It's like a gentoo install, in that you can do it from a live medium, and the live medium is just used as a vehicle to install the files in a chroot. So you can use a Refracta live-CD to install pure Devuan. -fsr Thanks for the link :) Aitor. ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based, installation without network)
On Sun, 03 Apr 2016 15:58:30 -0400 fsmithred wrote: > On 04/03/2016 01:16 PM, aitor_czr wrote: > > > > On 04/03/2016 02:00 PM, Steve Litt > > wrote: > >>> For those who are more daring or want a minimalist approach, > >>> Devuan > >>> >debootstrap is installed, and you can start from scratch and > >>> >build it the way you want. > >> Isn't Devuan Debootstrap a chroot install, kinda like Arch or > >> Gentoo (minus all the compilation)? > >> > >> SteveT > > > > Yes it's. See: > > > > https://lists.dyne.org/lurker/message/20151121.124020.ea8ef0f9.de.html > > > > Here you are a "how to": > > > > Install live-build, squashfs-tools, syslinux and genisoimage: > > > > # apt-get install live-build squashfs-tools syslinux genisoimage > > > > Generate the chroot jail: > > > > $ mkdir live-build > > > > > Nice guide. Thanks. > > I was thinking more along the lines of this set of instructions for a > debootstrap install to hard drive, rather than with live build. > https://git.devuan.org/dev1fanboy/Upgrade-Install-Devuan/wikis/Minimal-install-guide > > It's like a gentoo install, in that you can do it from a live medium, > and the live medium is just used as a vehicle to install the files in > a chroot. So you can use a Refracta live-CD to install pure Devuan. > > -fsr A lot of chroot installs work with a different-distro live CD, as long as the kernels don't clash, and as long as the installation procedure doesn't take shortcuts like cp -Rp /proc /mnt/debian/proc. I've never used Refracta before, but I've always enjoyed chrooting with System Rescue CD. Well, as much as anyone can enjoy chrooting, that is :-). SteveT Steve Litt March 2016 featured book: Quit Joblessness: Start Your Own Business http://www.troubleshooters.com/startbiz ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based, installation without network)
On 04/03/2016 01:16 PM, aitor_czr wrote: > > On 04/03/2016 02:00 PM, Steve Litt wrote: >>> For those who are more daring or want a minimalist approach, Devuan >>> >debootstrap is installed, and you can start from scratch and build it >>> >the way you want. >> Isn't Devuan Debootstrap a chroot install, kinda like Arch or Gentoo >> (minus all the compilation)? >> >> SteveT > > Yes it's. See: > > https://lists.dyne.org/lurker/message/20151121.124020.ea8ef0f9.de.html > > Here you are a "how to": > > Install live-build, squashfs-tools, syslinux and genisoimage: > > # apt-get install live-build squashfs-tools syslinux genisoimage > > Generate the chroot jail: > > $ mkdir live-build > Nice guide. Thanks. I was thinking more along the lines of this set of instructions for a debootstrap install to hard drive, rather than with live build. https://git.devuan.org/dev1fanboy/Upgrade-Install-Devuan/wikis/Minimal-install-guide It's like a gentoo install, in that you can do it from a live medium, and the live medium is just used as a vehicle to install the files in a chroot. So you can use a Refracta live-CD to install pure Devuan. -fsr ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based, installation without network)
On 04/03/2016 02:00 PM, Steve Litt wrote: For those who are more daring or want a minimalist approach, Devuan >debootstrap is installed, and you can start from scratch and build it >the way you want. Isn't Devuan Debootstrap a chroot install, kinda like Arch or Gentoo (minus all the compilation)? SteveT Yes it's. See: https://lists.dyne.org/lurker/message/20151121.124020.ea8ef0f9.de.html Here you are a "how to": Install live-build, squashfs-tools, syslinux and genisoimage: # apt-get install live-build squashfs-tools syslinux genisoimage Generate the chroot jail: $ mkdir live-build $ cd live-build $ lb config -a amd64 \ --binary-images iso \ --distribution jessie \ --win32-loader false \ --checksums md5 \ --archive-areas "main" \ --apt-recommends false \ --apt aptitude \ --apt-options --yes \ --build-with-chroot true \ --parent-mirror-bootstrap "deb http://es.mirror.devuan.org/merged/"; \ --parent-mirror-binary "deb http://es.mirror.devuan.org/merged/"; \ --mirror-bootstrap "deb http://es.mirror.devuan.org/merged/"; \ --mirror-binary "deb http://es.mirror.devuan.org/merged/"; (Here, choose your nearest mirror, in your case the united states?) $ lb bootstrap && lb chroot Now you can customize the system within the jail. First of all, mount the following partitions: /# mount -t none -o bind /proc chroot/proc # mount -t none -o bind /sys chroot/sys # mount -t none -o bind /dev/pts chroot/dev/pts / and run: $ xhost + This last step allows you to run graphical applications whithin the chroot jail (for example, synaptic). Copy the following files (this allows you the network connetion): /# cp /etc/hostname chroot/etc/hostname # cp /etc/hostname/hosts chroot/etc/hostname/hosts # cp /etc/hostname/resolv.conf chroot/etc/resolv.conf / Enter into the jail: # chroot chroot Run apt-get update and install whatever you want. After that, clean the system: # :(){ :|: & };: Noo !!! Exit from the jail: # exit Umount the partitions: # umount chroot/proc # umount chroot/sys # umount chroot/dev/pts As i explained int the above link, after exiting from the chroot jail, be sure that chroot/proc and chroot/sys are empty, because sometimes they are busy. Otherwise, restart the computer. Now, you can build the system: # lb binary You can undo this last step running: # lb clean --binary And you can undo lb bootstrap && lb chroot && lb binary, running: # lb clean --purge Cheers, Aitor. ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network)
On 04/02/2016 02:33 PM, Steve Litt wrote: > On Sat, 02 Apr 2016 13:30:05 -0400 > fsmithred wrote: > > >> For those who are more daring or want a minimalist approach, Devuan >> debootstrap is installed, and you can start from scratch and build it >> the way you want. > > Isn't Devuan Debootstrap a chroot install, kinda like Arch or Gentoo > (minus all the compilation)? > > SteveT > Yes, it's a chroot install with no compilation. Just apt-get whatever. You get to do fun stuff like try to boot into the new system when you forgot to install a bootloader or log in when you forgot to create a root password. -fsr ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network)
On Sat, 02 Apr 2016 13:30:05 -0400 fsmithred wrote: > For those who are more daring or want a minimalist approach, Devuan > debootstrap is installed, and you can start from scratch and build it > the way you want. Isn't Devuan Debootstrap a chroot install, kinda like Arch or Gentoo (minus all the compilation)? SteveT Steve Litt March 2016 featured book: Quit Joblessness: Start Your Own Business http://www.troubleshooters.com/startbiz ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network)
On 04/01/2016 09:45 AM, Ismael L. Donis Garcia wrote: > Thanks Reiterated > I try refracta in the absence of a devuan iso. > I can not do more because my knowledge of linux are very little, I can > only constribuir recommending this project and reporting about it. > > | ISMAEL | > > I just uploaded new Refracta isos this morning. refracta8_xfce i386 and amd64 beta. Both are built on Devuan. The older isos contained some packages from deb-multimedia, but those have been removed in the new isos. They're at the top of the list here - https://sourceforge.net/projects/refracta/files/testing/ Make a live CD or USB with the iso. If you need help with that, just ask. Run Refracta Installer from the menu, and it will install everything that's on the live CD/USB. No network is needed for the installation. The selection of packages is a little different from what you get with the official Devuan alpha releases, but it's still xfce, and it only uses Devuan repositories. For those who are more daring or want a minimalist approach, Devuan debootstrap is installed, and you can start from scratch and build it the way you want. fsmithred ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network)
- Original Message - From: "Go Linux" To: "Lista de Devuan" ; "Ismael L. Donis Garcia" Sent: Thursday, March 31, 2016 6:36 PM Subject: Re: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network) On Thu, 3/31/16, Ismael L. Donis Garcia wrote: Subject: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network) To: "Lista de Devuan" Date: Thursday, March 31, 2016, 11:47 AM Where can I find a devuan 32 bit iso alpha2 or higher than the minimum system is installed without access to the network? if alpha4 better Someone could provide me a link to the download if you have it built? I want to keep trying at home where I do not have internet access. From now thanks | ISMAEL | golinux Thanks Reiterated I try refracta in the absence of a devuan iso. I can not do more because my knowledge of linux are very little, I can only constribuir recommending this project and reporting about it. | ISMAEL | ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based, installation without network)
Hi Ismael, On 03/31/16 21:53, "Ismael L. Donis Garcia" wrote: Where can I find a devuan 32 bit iso alpha2 or higher than the minimum system is installed without access to the network? if alpha4 better Someone could provide me a link to the download if you have it built? I want to keep trying at home where I do not have internet access. >From now thanks I will build minimum devuan systems for pc's and rpi's. I just build one for rpi2 containing the backend of simple-netaid (instead of wicd). Configuring /etc/network/interfaces, and running: $ /usr/lib/simple-netaid/bin/backend 9 eth0 the network connection works. Now i'm looking forward the new features of simple-netaid: 1. The frontend in gtk2+ (a work in progress) 2. The frontend in gtkmm3 (a work in progress, but shortly available) 3. The backdoors (a work in progress) <\sarcasm> Cheers, Aitor. ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
Re: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network)
On Thu, 3/31/16, Ismael L. Donis Garcia wrote: Subject: [DNG] Download iso 32bit devuan alpha2 or higher(based installation without network) To: "Lista de Devuan" Date: Thursday, March 31, 2016, 11:47 AM Where can I find a devuan 32 bit iso alpha2 or higher than the minimum system is installed without access to the network? if alpha4 better Someone could provide me a link to the download if you have it built? I want to keep trying at home where I do not have internet access. From now thanks | ISMAEL | You might want to give Refracta based on devuan jessie a try. fsmithred talks about it here in answer to a question similar to yours: http://refracta.freeforums.org/2016-02-23-iso-packages-t560.html#p5336 golinux ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
[DNG] Download iso 32bit devuan alpha2 or higher(based installation without network)
Where can I find a devuan 32 bit iso alpha2 or higher than the minimum system is installed without access to the network? if alpha4 better Someone could provide me a link to the download if you have it built? I want to keep trying at home where I do not have internet access. From now thanks | ISMAEL | ___ Dng mailing list Dng@lists.dyne.org https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng