Rambo: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „Kategorie:Host = Blitzinstallation = <synaxhighlight lang="bash"> sudo -s apt-get update && apt-get -y install wget rsync sudo vi /etc/sudoers wget -O /t…“) |
|||
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
[[Kategorie:Host]] | [[Kategorie:Host]] | ||
* [[Linux-Installation]] | |||
= Blitzinstallation = | = Blitzinstallation = | ||
< | <syntaxhighlight lang="bash"> | ||
sudo -s | sudo -s | ||
apt-get update && apt-get -y install wget rsync sudo | apt-get update && apt-get -y install wget rsync sudo | ||
Zeile 10: | Zeile 11: | ||
bash /tmp/basic_install.sh | bash /tmp/basic_install.sh | ||
restoretool -v3 init linuxserver | restoretool -v3 init linuxserver | ||
</syntaxhighlight> | |||
* Firmware / Hardware anpassen: | |||
<syntaxhighlight lang="bash"> | |||
dpkg -i linux-image-5.18.0-0.deb11.4-amd64_5.18.16-1~bpo11+1_amd64.deb | dpkg -i linux-image-5.18.0-0.deb11.4-amd64_5.18.16-1~bpo11+1_amd64.deb | ||
vi sudo /etc/modprobe.d/mt7921e.conf | vi sudo /etc/modprobe.d/mt7921e.conf | ||
vi /etc/udev/rules.d/99-mt7921e.rules | vi /etc/udev/rules.d/99-mt7921e.rules | ||
</syntaxhighlight> | </syntaxhighlight> | ||
* Anwendungen | |||
<syntaxhighlight lang="bash"> | |||
restoretool -v3 init cms | |||
restoretool -v3 init mariadb | |||
restoretool -v3 init nginx | |||
apt install thunderbird chromium meld postgresql-13 postgresql-13-postgis-3 postgresql-client-13 | |||
apt install php7.3-yaml php7.4-yaml php8.1-yaml python3-yaml php-redis redis-server redis-tools php8.1-redis | |||
apt install clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev | |||
</syntaxhighlight> | |||
* /etc/postgresql/13/main/pg_hba.conf | |||
<pre> | |||
local all all md5 | |||
#local all all peer | |||
local replication all md5 | |||
#local replication all peer | |||
</pre> | |||
* /etc/postgresql/13/main/postgresql.conf | |||
<pre> | |||
data_directory = '/media/fs.cave/db/postgresql' | |||
ssl = off | |||
full_page_writes = off | |||
log_destination = 'syslog' | |||
log_directory = '/var/log/local' | |||
</pre> |
Aktuelle Version vom 11. Juni 2023, 06:25 Uhr
Blitzinstallation[Bearbeiten]
sudo -s
apt-get update && apt-get -y install wget rsync sudo
vi /etc/sudoers
wget -O /tmp/basic_install.sh https://public.hamatoma.de/basic_install.sh
bash /tmp/basic_install.sh
restoretool -v3 init linuxserver
- Firmware / Hardware anpassen:
dpkg -i linux-image-5.18.0-0.deb11.4-amd64_5.18.16-1~bpo11+1_amd64.deb
vi sudo /etc/modprobe.d/mt7921e.conf
vi /etc/udev/rules.d/99-mt7921e.rules
- Anwendungen
restoretool -v3 init cms
restoretool -v3 init mariadb
restoretool -v3 init nginx
apt install thunderbird chromium meld postgresql-13 postgresql-13-postgis-3 postgresql-client-13
apt install php7.3-yaml php7.4-yaml php8.1-yaml python3-yaml php-redis redis-server redis-tools php8.1-redis
apt install clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
- /etc/postgresql/13/main/pg_hba.conf
local all all md5 #local all all peer local replication all md5 #local replication all peer
- /etc/postgresql/13/main/postgresql.conf
data_directory = '/media/fs.cave/db/postgresql' ssl = off full_page_writes = off log_destination = 'syslog' log_directory = '/var/log/local'