[PLUG] December 2022 - softPLUG Jitsi Meeting

2022-11-28 Thread Ben Koenig
Hi all, December 1st is the 1st Thursday of December! For newer members, this is when we typically host our monthly PLUG Talks for advanced and/or interesting topics. However, pending a return to in-person meetings I am hosting a casual, online meeting via Jitsi. There is no specific topic, th

Re: [PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Rich Shepard
On Mon, 28 Nov 2022, Johnathan Mantey wrote: FWIW, I tested the following: (add-to-list 'load-path "~/.emacs.d/elpa/markdown-mode-20221105.236") (autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t) (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)) Us

Re: [PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Johnathan Mantey
FWIW, I tested the following: (add-to-list 'load-path "~/.emacs.d/elpa/markdown-mode-20221105.236") (autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t) (add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode)) Using the ELPA version of the markdown source in

Re: [PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Rich Shepard
On Mon, 28 Nov 2022, Johnathan Mantey wrote: That's why I specifically emphasized "like this". I was not giving a recipe to follow, not a pastable piece of code. Johnathan, I thought so but wasn't certain. So I asked, Thanks, Rich

Re: [PLUG] Restart mdadm? SOLVED

2022-11-28 Thread John Jason Jordan
On Mon, 28 Nov 2022 11:59:14 -0800 Russell Senior dijo: >Probably a good idea to record what /proc/mdstat looks like when >things are working, ahead of time, too. Done, and added to mdadm.txt file. Thanks!

Re: [PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Johnathan Mantey
That's why I specifically emphasized "like this". I was not giving a recipe to follow, not a pastable piece of code. On Mon, Nov 28, 2022 at 12:48 PM Rich Shepard wrote: > On Mon, 28 Nov 2022, Johnathan Mantey wrote: > > > Emacs will search ~/.emacs.d for ELisp source by default.There is no need

Re: [PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Rich Shepard
On Mon, 28 Nov 2022, Johnathan Mantey wrote: Emacs will search ~/.emacs.d for ELisp source by default.There is no need to add it to the load-path variable. Johnathan, That's why I wondered why this language stanza has the explicit load path. Yet, without that add-to-list I don't get the speci

Re: [PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Johnathan Mantey
Rich, Emacs will search ~/.emacs.d for ELisp source by default. There is no need to add it to the load-path variable. I would use code *like this* to add Markdown to the auto-mode-alist: (add-to-list 'auto-mode-alist '("\\.html\\'" . web-mode)) On Mon, Nov 28, 2022 at 8:39 AM Rich Shepard

Re: [PLUG] Restart mdadm? SOLVED

2022-11-28 Thread Russell Senior
Probably a good idea to record what /proc/mdstat looks like when things are working, ahead of time, too. On Mon, Nov 28, 2022 at 11:28 AM John Jason Jordan wrote: > On Mon, 28 Nov 2022 11:26:01 -0500 > Tomas Kuchta dijo: > > >TB is hot plug interface. As such, I'd sort of expect that HW and SW

Re: [PLUG] Restart mdadm? SOLVED

2022-11-28 Thread John Jason Jordan
On Mon, 28 Nov 2022 11:26:01 -0500 Tomas Kuchta dijo: >TB is hot plug interface. As such, I'd sort of expect that HW and SW >assumes that it can safely traverse power states and that connection >resets may be OK. > >If that is what is happening, it is of course pretty nasty thing to do >to md arr

[PLUG] Emacs mode issue: Markdown

2022-11-28 Thread Rich Shepard
I've installed Markdown and added it to ~/.emacs.d: - ;; For Markdown ;add the path where all the user modules will be located (add-to-list 'load-path "~/.emacs.d/") (autoload 'markdown-mode "markdown-mode.el" "Major mode for editing Markdown files" t) (setq auto-mode-alist

Re: [PLUG] Restart mdadm? SOLVED

2022-11-28 Thread Tomas Kuchta
TB is hot plug interface. As such, I'd sort of expect that HW and SW assumes that it can safely traverse power states and that connection resets may be OK. If that is what is happening, it is of course pretty nasty thing to do to md arrays. Native higher level file systems btrfs/zfs may fare bette

Re: [PLUG] Restart mdadm? SOLVED

2022-11-28 Thread Russell Senior
Another good starting point is: cat /proc/mdstat On Sun, Nov 27, 2022 at 11:03 PM John Jason Jordan wrote: > On Sun, 27 Nov 2022 22:39:48 -0800 > Paul Goins dijo: > > >When this occurs, have you tried "dmesg -T" or checked > >/var/log/kern.log or /var/log/syslog for suspicious log entries aroun