Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
276c52b70a | ||
|
|
132869796e | ||
|
|
cda11895ff | ||
|
|
23b22027a0 | ||
|
|
91026b6d65 |
14
README.md
14
README.md
@@ -3,14 +3,22 @@
|
|||||||
Système d'exploitation x64 - 100% GNU basé sur Debian
|
Système d'exploitation x64 - 100% GNU basé sur Debian
|
||||||
|
|
||||||
## Build live via live-build
|
## Build live via live-build
|
||||||
|
Cloner le dépôt puis :
|
||||||
```
|
```
|
||||||
|
apt install live-build
|
||||||
lb config
|
lb config
|
||||||
lb build
|
lb build
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Création clef USB persistante
|
||||||
|
```
|
||||||
|
./stick-build /dev/sdX
|
||||||
|
```
|
||||||
|
|
||||||
|
** N.B : Inutile de créer l'ISO, il sera téléchargé et installé sur la clef
|
||||||
|
|
||||||
### ToDo
|
### ToDo
|
||||||
|
|
||||||
- [x] Installeur
|
- [x] Installeur
|
||||||
- [ ] Live Persistence
|
- [x] Live Persistence
|
||||||
- [ ] Yunohost
|
- [ ] Integration Yunohost
|
||||||
|
|||||||
@@ -5,24 +5,8 @@
|
|||||||
LB_DISTRIBUTION="buster"
|
LB_DISTRIBUTION="buster"
|
||||||
|
|
||||||
# $LB_PARENT_DISTRIBUTION: select parent distribution to use
|
# $LB_PARENT_DISTRIBUTION: select parent distribution to use
|
||||||
# (Default: )
|
|
||||||
LB_PARENT_DISTRIBUTION=""
|
|
||||||
|
|
||||||
# $LB_DISTRIBUTION_CHROOT: select distribution to use in the chroot
|
|
||||||
# (Default: buster)
|
# (Default: buster)
|
||||||
LB_DISTRIBUTION_CHROOT="buster"
|
LB_PARENT_DISTRIBUTION="buster"
|
||||||
|
|
||||||
# $LB_PARENT_DISTRIBUTION_CHROOT: select parent distribution to use in the chroot
|
|
||||||
# (Default: buster)
|
|
||||||
LB_PARENT_DISTRIBUTION_CHROOT="buster"
|
|
||||||
|
|
||||||
# $LB_DISTRIBUTION_BINARY: select distribution to use in the final image
|
|
||||||
# (Default: buster)
|
|
||||||
LB_DISTRIBUTION_BINARY="buster"
|
|
||||||
|
|
||||||
# $LB_PARENT_DISTRIBUTION_BINARY: select parent distribution to use in the final image
|
|
||||||
# (Default: buster)
|
|
||||||
LB_PARENT_DISTRIBUTION_BINARY="buster"
|
|
||||||
|
|
||||||
# $LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION: select parent distribution for debian-installer to use
|
# $LB_PARENT_DEBIAN_INSTALLER_DISTRIBUTION: select parent distribution for debian-installer to use
|
||||||
# (Default: buster)
|
# (Default: buster)
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
[Image]
|
[Image]
|
||||||
Architecture: amd64
|
Architecture: amd64
|
||||||
Archive-Areas: main contrib non-free
|
Archive-Areas: main contrib non-free
|
||||||
Distribution-Chroot: buster
|
Distribution: buster
|
||||||
Distribution-Binary: buster
|
|
||||||
Mirror-Bootstrap: http://deb.debian.org/debian/
|
Mirror-Bootstrap: http://deb.debian.org/debian/
|
||||||
|
|
||||||
[FIXME]
|
[FIXME]
|
||||||
|
|||||||
@@ -17,16 +17,8 @@ LB_INTERACTIVE="false"
|
|||||||
LB_KEYRING_PACKAGES="debian-archive-keyring"
|
LB_KEYRING_PACKAGES="debian-archive-keyring"
|
||||||
|
|
||||||
# $LB_LINUX_FLAVOURS: set kernel flavour to use
|
# $LB_LINUX_FLAVOURS: set kernel flavour to use
|
||||||
# This is kept for backwards compatibility
|
|
||||||
# (Default: autodetected)
|
# (Default: autodetected)
|
||||||
if [ -n " amd64" ]
|
LB_LINUX_FLAVOURS="amd64"
|
||||||
then
|
|
||||||
LB_LINUX_FLAVOURS_WITH_ARCH=" amd64"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# $LB_LINUX_FLAVOURS_WITH_ARCH: set kernel flavour to use (with arch)
|
|
||||||
# (Default: autodetected)
|
|
||||||
LB_LINUX_FLAVOURS_WITH_ARCH="amd64"
|
|
||||||
|
|
||||||
# $LB_LINUX_PACKAGES: set kernel packages to use
|
# $LB_LINUX_PACKAGES: set kernel packages to use
|
||||||
# (Default: autodetected)
|
# (Default: autodetected)
|
||||||
|
|||||||
@@ -87,32 +87,26 @@ LB_TASKSEL="apt"
|
|||||||
# live-build options
|
# live-build options
|
||||||
|
|
||||||
# $_BREAKPOINTS: enable breakpoints
|
# $_BREAKPOINTS: enable breakpoints
|
||||||
# If set here, overrides the command line option
|
|
||||||
# (Default: false)
|
# (Default: false)
|
||||||
#_BREAKPOINTS="false"
|
#_BREAKPOINTS="false"
|
||||||
|
|
||||||
# $_DEBUG: enable debug
|
# $_DEBUG: enable debug
|
||||||
# If set here, overrides the command line option
|
|
||||||
# (Default: false)
|
# (Default: false)
|
||||||
#_DEBUG="false"
|
#_DEBUG="false"
|
||||||
|
|
||||||
# $_COLOR: enable color
|
# $_COLOR: enable color
|
||||||
# If set here, overrides the command line option
|
|
||||||
# (Default: false)
|
# (Default: false)
|
||||||
#_COLOR="false"
|
#_COLOR="false"
|
||||||
|
|
||||||
# $_FORCE: enable force
|
# $_FORCE: enable force
|
||||||
# If set here, overrides the command line option
|
|
||||||
# (Default: false)
|
# (Default: false)
|
||||||
#_FORCE="false"
|
#_FORCE="false"
|
||||||
|
|
||||||
# $_QUIET: enable quiet
|
# $_QUIET: enable quiet
|
||||||
# If set here, overrides the command line option
|
|
||||||
# (Default: false)
|
# (Default: false)
|
||||||
#_QUIET="false"
|
_QUIET="false"
|
||||||
|
|
||||||
# $_VERBOSE: enable verbose
|
# $_VERBOSE: enable verbose
|
||||||
# If set here, overrides the command line option
|
|
||||||
# (Default: false)
|
# (Default: false)
|
||||||
#_VERBOSE="false"
|
#_VERBOSE="false"
|
||||||
|
|
||||||
|
|||||||
@@ -26,3 +26,5 @@ net-tools
|
|||||||
qtpass
|
qtpass
|
||||||
davfs2
|
davfs2
|
||||||
xtightvncviewer
|
xtightvncviewer
|
||||||
|
nextcloud-desktop
|
||||||
|
nautilus-nextcloud
|
||||||
|
|||||||
@@ -9,11 +9,11 @@ ISO="live_svpro_gnu-amd64.hybrid.iso"
|
|||||||
# Recuperation iso
|
# Recuperation iso
|
||||||
echo "Téléchargement de l'iso..."
|
echo "Téléchargement de l'iso..."
|
||||||
sleep 5
|
sleep 5
|
||||||
wget -O ${ISO} https://samuel.vermeulen.pro/telechargement/live_svpro_gnu-amd64.hybrid.iso
|
wget -O ${ISO} https://cloud.weblib.re/s/iZ3RPAbJ7BXTmXc/download
|
||||||
wget -O ${ISO}.md5 https://samuel.vermeulen.pro/telechargement/live_svpro_gnu-amd64.hybrid.iso.md5
|
wget -O ${ISO}.md5sum https://cloud.weblib.re/s/GtSEtc4Gy8CGxFW/download
|
||||||
echo "Vérification de l'image..."
|
echo "Vérification de l'image..."
|
||||||
|
|
||||||
if ! md5sum -c ${ISO}.md5
|
if ! md5sum -c ${ISO}.md5sum
|
||||||
then
|
then
|
||||||
echo "ISO Corompue. Abandon !!"
|
echo "ISO Corompue. Abandon !!"
|
||||||
rm -f ${ISO} ${ISO}.md5
|
rm -f ${ISO} ${ISO}.md5
|
||||||
|
|||||||
Reference in New Issue
Block a user