User Tools

Site Tools


haas:status

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
haas:status [2019/11/19 13:10] – [March 15th, 2018] wedgehaas:status [2022/08/28 16:15] (current) – [August 28th, 2022] wedge
Line 81: Line 81:
     * http://www.askapache.com/linux/rxvt-xresources.html     * http://www.askapache.com/linux/rxvt-xresources.html
 ======Other Days====== ======Other Days======
 +
 +======August 28th, 2022======
 +=====updated dokuwiki=====
 +After enduring constant nags of available updates that I could never resolve, and despite an active semester underway, I committed to updating to the recent major release of dokuwiki (igor), and after wrestling with various file permission issues, was seemingly successful in performing the upgrade AND eliminating the annoying nag messages.
 +=====dokuwiki included pages no edit button (fixed)=====
 +I wanted a read-only base project page, with notes namespace-included content that users could edit.
 +
 +Unfortunately, that particular combination did not work, at least, not until I did some searching and found: https://github.com/dokufreaks/plugin-include/issues/132
 +
 +<code php>
 +function html_secedit($text,$show=true){
 +    global $INFO;
 +
 +    if((isset($INFO) && !$INFO['writable']) || !$show || (isset($INFO) && $INFO['rev'])){
 +        $include_SEC_EDIT_PATTERN = '#<!-- EDIT{(?!.*PLUGIN_INCLUDE).*?} -->#';
 +        return preg_replace($include_SEC_EDIT_PATTERN,'',$text);
 +    }
 +
 +    return preg_replace_callback(SEC_EDIT_PATTERN,
 +                'html_secedit_button', $text);
 +}
 +</code>
 +======March 12th, 2020======
 +
 +=====borked journal, maybe fix=====
 +
 +<code>
 +tune2sf -O ^has_journal /dev/<dev>
 +e2fsck -f /dev/<dev>
 +tune2sf -j /dev/<dev>
 +</code>
 +
 +Obtained from:
 +
 +  * https://www.linuxquestions.org/questions/linux-newbie-8/aborted-journal-and-volume-remounted-read-only-812216/
 +======November 21st, 2019======
 +=====pi4b dual head=====
 +Apparently I was missing something when building up from the lite version of raspbian. For when I popped in a new raspbian (the full desktop version) everything came up just fine.
 +
 +Oh well. At least things are now working as they should.
 +
 ======November 19th, 2019====== ======November 19th, 2019======
 =====pi4b dual head issues===== =====pi4b dual head issues=====
Line 92: Line 133:
     * **tvservice -l** consistently identifies two displays, so the hardware sees it, the software is not.     * **tvservice -l** consistently identifies two displays, so the hardware sees it, the software is not.
  
 +Interestingly: my old raspbian setup IS working properly. So what is different between the two?
 ======March 15th, 2018====== ======March 15th, 2018======
 Setting up the raspberry pi 3 for use in the comporg class. Named it **pi3b**, and will get the IP of 10.80.2.48; running the latest stable release of rasbian. Setting up the raspberry pi 3 for use in the comporg class. Named it **pi3b**, and will get the IP of 10.80.2.48; running the latest stable release of rasbian.
haas/status.1574187020.txt.gz · Last modified: 2019/11/19 13:10 by wedge