first commit

This commit is contained in:
2025-02-08 21:56:24 +01:00
commit 1f9564ca6a
471 changed files with 74368 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
[[ubuntu-unattended-upgrades]]
"Unattended Upgrades is a package that automates installing security and other updates on Ubuntu Systems. It runs silently in the background and regularly check for new updates, downloading and installing them automatically without user intervention. The Unattended Upgrades package is an essential tool that ensures the system's security and stability by keeping it up-to-date with the latest updates and patches."
In general the package `unattended-upgrades` is written for debian base distributions.
## Source
<https://www.linuxcapable.com/how-to-configure-unattended-upgrades-on-ubuntu-linux/>

View File

@@ -0,0 +1,9 @@
[[ubuntu-unattended-upgrades]]
Here we list some [[benefits-and-features-of-unattended-upgrades-setup]] on Ubuntu:
- Automated updates: The Unattended Upgrades Package automates downloading and installing updates, saving time and effort for users.
- Improved security: The package ensures that the system is always up-to-update with the latest security updates and patches, reducing the risk of malware attacks and system vulnerabilities.
- Enhanced stability: By keeping the system up-to-date, Unattended Upgrades Package ensures the stability and reliability of the system.
- Customizable settings: Users can customize the package settings according to their needs, such as which updates to install automatically, which to ignore, and when to install them.
- Notification system: The package sends notifications to users about the updates that have been installed, providing transparency and control over the system updates.

View File

@@ -0,0 +1,12 @@
[[ubuntu-unattended-upgrades]]
Simply use the command:
```bash
sudo apt install unattended-upgrades
```
One also need to install the `apt-config-auto-update` package if it is desired to reboot the system after applying upgrades which require the system to restart:
```bash
sudo apt install apt-config-auto-upgrades
```

View File

@@ -0,0 +1,15 @@
- bash-completion
- htop
- apt-transport-https
- network-manager (ninja needs it)
- vim
- curl
- xclip
- net-tools
- rsync
- smartmontools
- parted (ninja dependency)
## Proxmox
- remove subscription message: `sed -Ezi.bak "s/(function\(orig_cmd\) \{)/\1\n\torig_cmd\(\);\n\treturn;/g" /usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js && systemctl restart pveproxy.service`

View File

@@ -0,0 +1,8 @@
### Source
<https://canonical-subiquity.readthedocs-hosted.com/en/latest/intro-to-autoinstall.html>
### Notes
- If there is an `autoinstall` configuration, the `autoinstall` takes the default for any unanswered question (and fails if there is no default)
- `autoinstall` uses YAML
- one can designate particular sections in the `autoinstall` configuration as "interactive"

View File

@@ -0,0 +1,5 @@
[[linux-server-standard-pkgs]]
[[sbx-linux-server-status]]
[[Veeam-Immutable-Backups-Linux-VM]]
[[linux-ubuntu-server-autoinstaller]]

View File

@@ -0,0 +1,7 @@
# Notes
password for aio interface: language drainable semifinal jaybird pauper snaking foil precook
## Ressources
- <https://github.com/nextcloud/all-in-one?tab=readme-ov-file#nextcloud-all-in-one>

View File

@@ -0,0 +1,7 @@
# How to share folders between Windows host and Linux guest
- In the VirtualBox Manager create a share folder for the respective guest
- boot linux guest
- install: `apt install virtualbox-guest-utils`
- create folder `GUEST_SHARE` on guest
- use the command `mount -t vboxsf HOST_SHARE GUEST_SHARE`

View File

@@ -0,0 +1,12 @@
# ssh connection
1. Go to 'network' settings in the vm.
2. Use 'NAT' as 'attached to'.
3. Go to advanced settings and create port forwarding rule for ssh:
- Name: Arbitrary
- Guest Port: 22
- Host Port: Arbitrary
- Protocol: tcp
4. `ssh <user>@localhost -p <Guest-Port>`

View File

@@ -0,0 +1,6 @@
- <https://www.linuxcapable.com/how-to-configure-unattended-upgrades-on-ubuntu-linux/>
- <https://wiki.debian.org/UnattendedUpgrades>: Needs follow up!
- [[What-is-unattended-ugrades]]?
- [[benefits-and-features-of-unattended-upgrades-setup]]
- [[install-unattended-upgrades-package]]