first commit
This commit is contained in:
9
ressources/linux-server/What-is-unattended-ugrades.md
Normal file
9
ressources/linux-server/What-is-unattended-ugrades.md
Normal 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/>
|
||||
@@ -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.
|
||||
@@ -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
|
||||
```
|
||||
15
ressources/linux-server/linux-server-standard-pkgs.md
Normal file
15
ressources/linux-server/linux-server-standard-pkgs.md
Normal 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`
|
||||
@@ -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"
|
||||
5
ressources/linux-server/linux.md
Normal file
5
ressources/linux-server/linux.md
Normal file
@@ -0,0 +1,5 @@
|
||||
[[linux-server-standard-pkgs]]
|
||||
[[sbx-linux-server-status]]
|
||||
[[Veeam-Immutable-Backups-Linux-VM]]
|
||||
|
||||
[[linux-ubuntu-server-autoinstaller]]
|
||||
7
ressources/linux-server/nextcloud_docker_setup.md
Normal file
7
ressources/linux-server/nextcloud_docker_setup.md
Normal 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>
|
||||
7
ressources/linux-server/share-files-to-linux-vm.md
Normal file
7
ressources/linux-server/share-files-to-linux-vm.md
Normal 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`
|
||||
12
ressources/linux-server/ssh-to-vm.md
Normal file
12
ressources/linux-server/ssh-to-vm.md
Normal 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>`
|
||||
6
ressources/linux-server/ubuntu-unattended-upgrades.md
Normal file
6
ressources/linux-server/ubuntu-unattended-upgrades.md
Normal 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]]
|
||||
Reference in New Issue
Block a user