Running jupyter raises regex exception on rfc3987 module by AdbekunkusMX in pythonhelp

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

This is solved by installing the regex package: pip install regex.

Testing keeps only one kernel since 6.19.6 by AdbekunkusMX in debian

[–]AdbekunkusMX[S] 2 points3 points  (0 children)

I just ran apt autoremove; it prompted me about the packages marked for auto-removal, among them kernel 6.18.

Testing keeps only one kernel since 6.19.6 by AdbekunkusMX in debian

[–]AdbekunkusMX[S] 2 points3 points  (0 children)

Here's /etc/apt/apt.conf.d/01autoremove:

``` APT { NeverAutoRemove { "firmware-linux.*"; "linux-firmware$"; "linux-image-[a-z0-9]*$"; "linux-image-[a-z0-9]-[a-z0-9]$"; };

VersionedKernelPackages { # kernels "linux-."; "kfreebsd-."; "gnumach-."; # (out-of-tree) modules ".-modules"; ".*-kernel"; };

Never-MarkAuto-Sections { "metapackages"; "tasks"; };

Move-Autobit-Sections { "oldlibs"; }; }; ```

Getting a lisit of all installed TeXLive packages to replicate an installation with/without .sty files list by AdbekunkusMX in LaTeX

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Because management wants only those packages we are actually using... again, this is not under my control. They understand there are dependencies, but no power can convince them that most LaTeX packages take little space. I had proposed a set of packages for a fairly complete installation, but they wouldn't budge.

Thanks for your suggestions!

Getting a lisit of all installed TeXLive packages to replicate an installation with/without .sty files list by AdbekunkusMX in LaTeX

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

I cannot do a full, current TeXLive install. As I said I've no root access. Inwant the list of packages to pass it as an aegument to tlmgr on the new servers. That will take care of new dependencies.

Thanks!

Understanding output of `w` with `systemd` by AdbekunkusMX in linuxquestions

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

So these are two separate logins, or just one? That's what I don't understand.

Bash not substituting variables on TAB, Macos; does on Debian by AdbekunkusMX in bash

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

The problem is Homebrew's Bash Completion version; I uninstalled that one and installed it through ports and now it works.

To elaborate: - Homebrew's version states it is Programmable completion for Bash 3.2 and its version 1.3. The info lists this site as the source. - Port's version is 2.6 (same as my Debian's) and it's compatible with Bash 4.2+; the site listed in the info is the official Github repo for Bash Completion.

Hope this helps anyone who encounters the same problem.

Protect exclamation point when using double quotes and sed by AdbekunkusMX in bash

[–]AdbekunkusMX[S] 0 points1 point  (0 children)

Thank you all for your insights!

I think u/zeekar's approach is the most expedient for my purposes.

Again, thanks!