- Shell 100%
|
|
||
|---|---|---|
| img | update files | |
| venomiso | add iso builder | |
| install.sh | update links | |
| postinstall.sh | adding some packages anda git function | |
| README.md | upssh | |
| userconfig.sh | minor changes | |
| vchroot.sh | add swap partition, and update fstab | |
| venom-bootstrap | mod bootsratp | |
| venom-install.sh | start the bootstrap script until chroot | |
Semi Automatic Venom Strap -> SAVS
Our logo
A script that make a venom installation more "easy", the idea is going to be that you only prepare some things like format your system partitions, and a bit more things.
How to use it:
- First you need to download the scripts:
git clone https://codeberg.org/jpacheco/venom --depth 1 && cd venom
- Now format your partitions:
I use cfdisk because for me is more easy and fast...
cfdisk -z /dev/sdX
- Make a boot partition with 150M and type EFI (or whatever the type do you have).
- Make a root partition whit the rest of the drive size.
- run the install.sh script as sudo:
sh install.sh
The script will format and mount the drives into the path suggested by the venom wiki.
Note: check the name of the drives that you are going to use and change the path in the install.sh file.
venom_initialize () {
echo "formating the partitions..."
mkfs.fat -F32 /dev/sda1 # Change this line for the specific drive name.
mkfs.ext4 /dev/sda2 # Change this line for the specific drive name.
echo "partition formated..."
sleep 1
echo "creating mounting folders..."
mkdir -p /mnt/venom
mount /dev/sda2 /mnt/venom # Change this line for the specific drive name.
mkdir -p /mnt/venom/boot
mount /dev/sda1 /mnt/venom/boot # Change this line for the specific drive name.
sleep 1
Once running the script, it will download the venom file system and the Linux kernel, this last package is because if we install the kernel from the package manager it will compile it, so it will going to take a while, so install the kernel from the .spkg.tar.xz will be more faster.
Once the install.sh script finish, we need to chroot in to /mnt/venom/
chroot /mnt/venom
Now, the chroot process, is going to update the system, and it'll install the kernel and grub, also is going to configure the locales, and the rc.conf file.
The script is located in /tmp/vchroot.sh, run it and wait to finish the task.
sh /tmp/vcroot.sh
From here you only need to add a user, and begin installing your favorites packages!!
Enjoy VENOM Linux
Special thanks to:
Lumaro & Visone to make this journey the beginning of a no return road.
Lumaro: https://github.com/lumarogit
Visone-Selektah: https://github.com/Visone-Selektah