code

Suche

Unten sind die Ergebnisse Ihrer Suche gelistet.

Wallabag installation under Debian
8 Treffer, Zuletzt geändert:
found at this link]]. ===== Installation ===== <code bash> git clone https://github.com/wallabag/wallabag.git cd wallabag && make install </code> ===== Virtual Host ===== ==== Apache 2.4 ==== <code text> <VirtualHost 1.2.3.4:443> ServerName wall... he2/wallabag_access.log combined </VirtualHost> </code> ===== Authorisations ===== <code bash> chown -
Backing up the sshd
12 Treffer, Zuletzt geändert:
=== Firstly, we create a key pair under Linux: <code bash> $ ssh-keygen -t rsa -b 4096 Generating publ... 6:62:09:2d:dc:dd:1e:79:cc:56:d9:2b root@v05-s42 </code> **Be sure to enter a password, otherwise you can... ry, install wipe with //apt-get install wipe//) <code bash>$ wipe id_rsa Okay to WIPE 1 regular file ? ... inks removed but not followed, 0 errors occured.</code> We repeat the process with all users who should
Postfix Virtual Mailbox Limit
8 Treffer, Zuletzt geändert:
he following error message appears in mail.log: <code text> fatal: main.cf configuration error: virtual... ailbox_limit is smaller than message_size_limit </code> it is a misconfiguration. ===== Troubleshooting ===== In the file <code text> /etc/postfix/main.cf </code> file, the following entry must be added: <code text> virtual_mailb
Integration of Collabora Office in OwnCloud
10 Treffer, Zuletzt geändert:
oud ====== ===== Installation of Docker ===== <code bash> apt update # Notwendiges Repository hinzuf... t install docker-ce docker-ce-cli containerd.io </code> ===== Starting Docker with Collabora Image ===== <code bash> docker pull collabora/code docker run -t -d -p 127.0.0.1:9980:9980 -e "aliasgroup1=https://cloud.
n8n installation with Docker Compose
38 Treffer, Zuletzt geändert:
an) ===== ==== 1.1 Uninstall old versions ==== <code bash> sudo apt-get remove docker docker-engine docker.io containerd runc </code> ==== 1.2 Repo installation ==== === 1.2.1 Update apt and activate HTTPS === <code bash> sudo apt-get update sudo apt-get install... tc/apt/sources.list.d/docker.list > /dev/null </code> === 1.2.2 Add Docker GPG Key === <code bash>
n8n installation and operation
8 Treffer, Zuletzt geändert:
with Docker Compose. ===== Download n8n ===== <code bash> docker pull n8nio/n8n </code> ===== Starting the Docker container ===== ==== Interactive ==== <code bash> docker run -it --rm --name n8n -p 1234:1234 -v ~/.n8n:/home/node/.n8n n8nio/n8n </code> ==== Background ==== <code bash> docker run -t
Kali Linuxc: apt error - File has unexpected size
6 Treffer, Zuletzt geändert:
displayed when updating via [[wpde>apt-get]] : <code text> Err:3 http://http.kali.org/kali kali-rollin... ze (225568 != 115516). Mirror sync in progress? </code> ===== Workaround ===== The apt update via [[wp... de>http]] should be changed to [[wpde>https]] : <code bash> echo "deb https://http.kali.org/kali kali-r... t/sources.list apt clean apt update apt upgrade </code> Alternatively, the [[wpde>Nano_(Texteditor)]] c
Update UnrealIRCD
22 Treffer, Zuletzt geändert:
version 6.1.0) ===== Importing GPG keys ===== <code bash> wget -O- https://raw.githubusercontent.com/... d/unrealircd/unreal60_dev/doc/KEYS|gpg --import </code> ===== Download source ===== First we download ... nstead of x.x.x (e.g. unrealircd-6.1.0.tar.gz). <code bash> wget https://www.unrealircd.org/downloads/unrealircd-x.x.x.tar.gz </code> ===== Check integrity ===== <code bash> wget h
Set up iptables
10 Treffer, Zuletzt geändert:
ing command lists all valid rules for iptables: <code bash> iptables -L </code> ===== Save rules to a file ===== <code bash> apt-get update apt-get install iptables-persistent nano /etc/iptables.test.rules ^O ^X </code> The iptables.test.rules file can now be edited.
Android - Firefox DNS over https
6 Treffer, Zuletzt geändert:
URL address bar. Then edit the following value: <code> network.trr.mode = 3 </code> The following values are possible: <code> 0 - Default value in standard Firefox installations (curre... and regular DNS is disabled 5 - DoH is disabled </code> <code> network.trr.uri = https://cloudflare-dns
Linux Commands Cheatsheet
8 Treffer, Zuletzt geändert:
. ((http://yellowpad.info/linux/date_time.asp)) <code bash> [me@mybox me]$ su password: Check the curr... d: [root@mybox me]$ Wed Apr 7 13:03:00 EDT 2004 </code> ===== Load Apache modules ===== <code bash> a2enmod modname </code> or activate it with <code bash> a2dismod modname </code> deaktivieren.
Backup Script Linux
2 Treffer, Zuletzt geändert:
Script Linux ====== ===== Data collector ===== <code bash> #!/bin/sh # Remote Server Backup Script v1.... $EMSG mail -A $ATTACH -s "$SUBJECT" "$EMAIL" < $EMSG rm $EMSG #date +'%d.%m.%Y %H:%M:%S' # EOF </code>
Autostart after Linux reboot
6 Treffer, Zuletzt geändert:
programme is running and open the cronjob list: <code bash>$> crontab -e</code> The following command must now be entered as a cronjob: <code bash> # m h dom mon dow command @reboot cd /home/user/programdir; ./program start </code> As a practical example, the automatic start of
Set up iptables @en:linux:firewall
10 Treffer, Zuletzt geändert:
ing command lists all valid rules for iptables: <code bash> iptables -L </code> ===== Save rules to a file ===== <code bash> apt-get update apt-get install iptables-persistent nano /etc/iptables.test.rules ^O ^X </code> The iptables.test.rules file can now be edited.
Emulated Debian under VMWare
12 Treffer, Zuletzt geändert:
his (numbers may vary depending on the system): <code bash>Linux Debian 2.6.18-4-686 .....</code> The numbers at the end are needed for point 3. ==== 2. installation of the required packages ==== <code bash>apt-get -y install gcc make zip unzip psmisc libglib2.0-0</code> ==== 3. installing the kernel headers and kerne
MySQL Backup under Linux @en:linux:mysql
18 Treffer, Zuletzt geändert:
Manual Froxlor Reload @en:linux:froxlor
6 Treffer, Zuletzt geändert:
Wallabag installation under Debian @en:linux:wallabag
8 Treffer, Zuletzt geändert:
retrofit mail command @en:linux:debian
6 Treffer, Zuletzt geändert:
Courier with TLS connection @en:linux:courier
4 Treffer, Zuletzt geändert:
Debian Fileserver with Samba @en:linux:samba
18 Treffer, Zuletzt geändert:
Set up SSL under Apache @en:linux:apache
11 Treffer, Zuletzt geändert:
Manual OpenSSL update
8 Treffer, Zuletzt geändert:
Archives under Linux
22 Treffer, Zuletzt geändert:
Debian Distribution Upgrade - Squeeze to Wheezy @en:linux:debian
24 Treffer, Zuletzt geändert:
n8n installation with Docker Compose @en:linux:n8n
38 Treffer, Zuletzt geändert:
Integration of Collabora Office in OwnCloud @en:linux:owncloud
10 Treffer, Zuletzt geändert:
n8n installation and operation @en:linux:n8n
8 Treffer, Zuletzt geändert:
Manual OpenSSL update @en:linux:openssl
8 Treffer, Zuletzt geändert:
Postfix trivial rewrite problem
10 Treffer, Zuletzt geändert:
Linux backup with tar @en:linux:backup
16 Treffer, Zuletzt geändert:
Kali Linuxc: apt error - File has unexpected size @en:linux:kali
6 Treffer, Zuletzt geändert:
MySQL Operating system error number 13 @en:linux:mysql
2 Treffer, Zuletzt geändert:
Linux backup with rsync @en:linux:backup
8 Treffer, Zuletzt geändert:
Change MySQL passwords @en:linux:mysql
4 Treffer, Zuletzt geändert:
Check and optimise mysql databases @en:linux:mysql
8 Treffer, Zuletzt geändert: