Procházet zdrojové kódy

Merge branch 'new/proxmox-ve'

DricomDragon před 4 roky
rodič
revize
e99b77c978

+ 25 - 2
Guides/install-linux.md

@@ -5,6 +5,7 @@
 Install `git` and `fish`
 
 ## Change default user
+
 ### Add
 
 ```sh
@@ -28,8 +29,25 @@ sudo userdel -r pi
 
 By executing scripts from _Install_ folder.
 
-## Change hostname
-sudoedit `/etc/hostname`
+Execute `deep-upgrade`, `basic-install` and `basic-custom` before any tweak.
+
+### Hostname
+
+Change hostname with `sudoedit /etc/hostname`
+
+Reboot.
+
+### Tweaks
+
+Scripts are named `<component>-<task>` where `<component>` is the part to be tweaked and `<task>` the purpose of the script, which can be _install_ to install software of this part and _custom_ to configure them as Jovian does.
+
+Installation must be made before customization.
+
+### Fish prompt
+
+Execute command `set fish_color_user yellow`.
+
+Execute command `set fish_color_host blue|red|yellow|magenta` depending of the power regulation.
 
 ## Set up SSH
 
@@ -54,6 +72,11 @@ ssh-keygen -f id_server_eddsa -t ed25519
 
 Then add the generated public key to servers.
 
+### Ubuntu repository
+
+You can use the `sources.list` in _Templates_ to set France OVH mirror.
+
+
 ## Desktop installation
 
 ### Regolith

+ 51 - 0
Guides/proxmox.md

@@ -0,0 +1,51 @@
+# Proxmox
+
+Guide to install Proxmox VE
+
+## From Debian 10 Buster
+
+Follow [install-linux.md](https://gogs.jovian-hersemeule.eu/DricomDragon/JovianLinux/src/master/Guides/install-linux.md)
+
+[Follow the Proxmox Wiki](https://pve.proxmox.com/wiki/Install_Proxmox_VE_on_Debian_Buster)
+
+Example of _/etc/hosts_ with IP's from VPS console and domain name redirecting to vps address :
+```
+127.0.0.1       localhost.localdomain localhost
+
+51.38.184.247				pve.jovian-hersemeule.eu halley
+2001:41d0:305:2100::a30d	pve.jovian-hersemeule.eu halley
+
+::1	localhost	ip6-localhost	ip6-loopback
+ff02::1	ip6-allnodes
+ff02::2	ip6-allrouters
+```
+
+Install requirements :
+```
+sudo su
+cd
+echo "deb http://download.proxmox.com/debian/pve buster pve-no-subscription" > /etc/apt/sources.list.d/pve-install-repo.list
+wget http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg -O /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
+chmod +r /etc/apt/trusted.gpg.d/proxmox-ve-release-6.x.gpg
+apt update && apt full-upgrade
+```
+
+Choose _keep the locale version_ of GRUB if asked.
+
+Install Proxmox VE :
+```
+apt install proxmox-ve postfix open-iscsi
+```
+
+Remove PVE subscription :
+```
+rm /etc/apt/sources.list.d/pve-enterprise.list
+```
+
+**Warning : do not use ifupdown2 to apply network changes !!!** Prefer manual reboot.
+
+## Web UI
+
+Connect to web UI.
+
+Enable 2FA.

+ 0 - 27
Install/README.md

@@ -1,27 +0,0 @@
-# Steps to follow to install a new Jovian linux
-
-## Core installation
-
-Execute `deep-upgrade`, `basic-install` and `basic-custom` before any tweak.
-
-## Tweaks
-
-### Extra installation
-
-Scripts are named `<component>-<task>` where `<component>` is the part to be tweaked and `<task>` the purpose of the script, which can be _install_ to install software of this part and _custom_ to configure them as Jovian does.
-
-Installation must be made before customization.
-
-### Fish prompt
-
-Execute command `set fish_color_user yellow`.
-
-Execute command `set fish_color_host blue|red|yellow|magenta` depending of the power regulation.
-
-### Hostname
-
-Change hostname with `sudoedit /etc/hostname`
-
-### Ubuntu repository
-
-You can use the `sources.list` in _Templates_ to set France OVH mirror.

+ 1 - 0
Install/Templates/home/ssh/config

@@ -45,6 +45,7 @@ HostName nuage.hersemeule.ovh
 # My OVH servers
 ## Halley VPS
 Host halley
+User debian
 IdentityFile ~/.ssh/id_ovh_eddsa
 HostName vps-bd69b1b4.vps.ovh.net
 AddressFamily inet

+ 0 - 1
Install/basic-custom

@@ -16,5 +16,4 @@ ln --relative --symbolic Templates/home/config/fish $HOME/.config/fish
 set --export --universal JHE 'jovian-hersemeule.eu'
 set --export --universal EDITOR 'vi -e'
 set --export --universal VISUAL vim
-set --export --universal TERMINAL alacritty
 set --export --universal CLICOLOR '' # Enable color for tree

+ 3 - 0
Install/ui-custom

@@ -3,3 +3,6 @@
 # Link ui apps config
 ln --relative --symbolic Templates/home/config/alacritty $HOME/.config/alacritty
 ln --relative --symbolic Templates/home/config/regolith $HOME/.config/regolith
+
+# Set alacritty as default terminal
+set --export --universal TERMINAL alacritty