Rambo: Unterschied zwischen den Versionen

Aus Info-Theke
Zur Navigation springen Zur Suche springen
Zeile 10: Zeile 10:
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
apt install thunderbird chromium meld postgresql-13 postgresql-13-postgis-3 postgresql-client-13
</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>

Version vom 21. September 2022, 06:48 Uhr


Blitzinstallation

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
apt install thunderbird chromium meld postgresql-13 postgresql-13-postgis-3 postgresql-client-13
  • /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'