Prompt basado en el reel:
by sheilanova
- Autor: Sheilanova R Cornelio | Anxious-Attachment Coach
- URL: https://www.instagram.com/reel/DbS3LZMlF-X/?igsh=MWNmZ2lwNG95ejYwMQ==
- Plataforma: Instagram
Prompt basado en el reel:
by sheilanova
| #!/bin/sh | |
| set -ex | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin | |
| KEYMAP="us us" | |
| HOST=alpine | |
| USER=anon | |
| ROOT_FS=ext4 | |
| BOOT_FS=ext4 |
alpine-linux-extended.iso imagerootsetup-interfaceseth0no| #!/bin/bash | |
| echo "Chmoding user files to 0644..." | |
| for i in `/usr/local/vesta/bin/v-list-sys-users | awk '{if(NR>2)print}'`; do find /home/$i/web/ -name 'public_html' -type d -print0 | xargs -0 -I {} find '{}' -type f -print0 | xargs -0 -I {} chmod 0644 {}; done | |
| echo "Done." | |
| echo "Chmoding user folder to 0755..." | |
| for i in `/usr/local/vesta/bin/v-list-sys-users | awk '{if(NR>2)print}'`; do find /home/$i/web/ -name 'public_html' -type d -print0 | xargs -0 -I {} find '{}' -type d -print0 | xargs -0 -I {} chmod 0755 {}; done | |
| echo "Done." | |
| echo "Fixing ownership of files..." |
This tutorial describes how to install TLS to a mail server consisting of Postfix and/or Dovecot by using Let's Encrypt certificates with automatic renewing and firewall management.
The system used for this tutorial was:
$ lsb_release -idrc
Distributor ID: Ubuntu| #!/bin/bash | |
| sudo dpkg --list 'linux-image*'|awk '{ if ($1=="ii") print $2}'|grep -v `uname -r` | while read -r line; do sudo apt-get -y purge $line;done | |
| sudo apt-get -y autoremove; sudo update-grub |