rpi-imager: Fehler beim Erstellen von firstrun.sh auf der fat-partition
Posted by wnf on Saturday, 6 May 2023https://ninigiku.wordpress.com/…e-on-ubuntu/
The flashing of the SD card went ok, but applying the customizations fails with the error: Error creating firstrun.sh on FAT partition (Strangely it can write to the raw device, but it cannot read/write to the mounted filesystem).
The solution The solution luckily is really simple, but it is missed on a lot of forums. Snap installs can be configured using Ubuntu Software. The configuration allows a user to specify what kind of actions are allowed for the snap install. For the Raspberry Pi Imager we need to enable ‘Read/write files on removable storage devices’ as is shown in the image below:
Meine Lösung
Da ich kein Freund von snap bin:
$ sudo snap remove rpi-imager $ sudo apt install rpi-imager
Drupal 10 "Weiterlesen" ausschalten
Posted by wnf on Sunday, 30 April 2023How can I remove „Read more“ link if there is no more content to read?
Startseite Verwaltung Struktur Inhaltstypen
- Inhaltstyp auswählen Einfache Seite
- Anzeige verwalten**
- Benutzerdefinierte Anzeigeeinstellungen
- Anrisstext Haken entfernen
- https://pfiffikus.niederfrohna.de/…hang/display
Gehäuse für Raspberry Pi Pico
Posted by wnf on Saturday, 22 April 2023Ubuntu Kotlin
Posted by wnf on Monday, 17 April 2023$ sudo apt install kotlin
hello.kt
fun main() { println("Hello World!") }
$ java -jar hello.jar $ kotlinc hello.kt -include-runtime -d hello.jar
$ sudo add-apt-repository ppa:maarten-fonville/android-studio $ sudo apt install android-studio
Drupal 10 auf ionos
Posted by wnf on Thursday, 30 March 2023Damit Drupal 10 auf ionos läuft:
In der .htacess Zeile 114
RewriteBase /
$ chmod 777 sites/default/settings.php $ nano sites/default/settings.php
Nur Zugriffe vom eigener Seite erlauben.
$settings['trusted_host_patterns'] = [ '^www\.wlsoft\.de$', ];
$ chmod 404 sites/default/settings.php
Beim Update von Drupal 10 mittels compose wird die .htaccess überschrieben. Seit drei Jahren wird bei den Entwicklern darüber diskutiert, wie das zu handeln wäre.
Ich benutze zum Update von Drupal10-core bis auf weiteres diesen Script
#!/bin/bash # ins drupal verzeichnis wechseln cd ~/d10 # drupal mittels composer aktualisieren /usr/bin/php8.2-cli composer.phar update "drupal/core-*" --with-all-dependencies # die htaccess datei korrigieren \ ist Escape-zeichen für / # ersetzen von " # RewriteBase /drupal" mit "RewriteBase / sed -i 's/ # RewriteBase \/drupal/RewriteBase \//g' ./web/.htaccess echo '================================================================'
Drupal 10 (K)Ubuntu
Posted by wnf on Monday, 27 March 2023Einschalten von Rewrite im Apache für Drupal
$ sudo nano /etc/apache2/sites-available/000-default.conf
<Directory "/var/www/html"> AllowOverride All </Directory>
$ sudo /etc/init.d/apache2 force-reload
Drupal 10 Literaturliste
Posted by wnf on Sunday, 19 March 2023Das war der CLT 2023
Posted by wnf on Monday, 13 March 2023- Prof. K. Knopper: Nachhaltiges Computing mit Knoppix
- J. Delgado: Scripting in Go
- P. Scherbaum: Programmieren lernen mit Scratch
- B. Benken, M. Thiele: Kotlin – Java mit Superkräften und Multiplattform
- D. Krüger: Mehr Rust – weniger C/C++ – ein Erfahrungsbericht
- H. Stübner: Das große Puzzle – RISC-V und seine ISA-Erweiterungen
- R. Clausecker: Die Mikroarchitektur moderner Prozessoren: ein Crashkurs
- F. Winkler: Yubikey – mehr als nur FIDO2
- B. Strößenreuther: Verschlüsseltes Cloud-Backup mit Linux-Bordmitteln
- Dr. P. Fries: WebAssembly auf der Serverseite: Was ist WASI?
- F. Scherf: Moderne Web-Entwicklung mit Python und Lona
Fehler beim ssh-Zugriff auf WD-MyBookLive
Posted by wnf on Thursday, 9 March 2023$ ssh mybooklive Unable to negotiate with 192.168.80.10 port 22: no matching host key type found. Their offer: ssh-rsa,ssh-dss
Wie hier beschrieben wird muss in der ~/.ssh/config die Verbindungsart festgelegt werden
Host mybooklive Hostname mybooklive HostKeyAlgorithms +ssh-rsa User wnf
Seiten
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- …
- nächste Seite ›
- letzte Seite »