Activity for Quasímodo
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #286368 | Initial revision | — | over 2 years ago |
Answer | — |
A: Capture separate _and_ combined stdout/stderr Each file descriptor can only point to a single file. File descriptors can be duplicated such that both point to a single file, but a file descriptor cannot point to two files. Hence, you have to decide whether stdout points to out.txt or to both.txt, and similarly with stderr. Of course, y... (more) |
— | over 2 years ago |
Comment | Post #286318 |
I'm afraid even that is not reliable either.
Something like `cmd 2> >(timestamp_err) > >(timestamp_out)` will inevitably cause a race condition since there are still two concurrent processes.
It is not impossible that, in practice, the order of magnitude of the "average delay" between input re... (more) |
— | over 2 years ago |
Comment | Post #286318 |
This seems to be hard enough that even Debian's [`annotate-output`](https://packages.debian.org/sid/devscripts) doesn't do it.
Contrarily to what you claim, Zsh also fails to preserve the order in `both.txt`, as my tests confirmed. From https://zsh.sourceforge.io/Doc/Release/Redirection.html, "the... (more) |
— | over 2 years ago |
Comment | Post #286058 |
Does it really present a histogram? Not according to [this picture](https://losst.ru/wp-content/uploads/2016/03/Snimok-ekrana-ot-2020-08-18-18-15-08.png) (not mine). (more) |
— | almost 3 years ago |
Comment | Post #284642 |
@Canina I meant that making the key a modifier should not change `showkey` output, i.e. the key press and key release events, be it in `--scancodes` or `--keycodes` mode (I don't have `--keymap` available, my --version says "showkey from kbd 2.4.0"). (more) |
— | almost 3 years ago |
Comment | Post #284642 |
@#53305 You might want to see the edited answer. Unfortunately I could not find a way to determine the PS/2 mode of my keyboard. (more) |
— | almost 3 years ago |
Edit | Post #284672 |
Post edited: Add Wikipedia and IBM documents |
— | almost 3 years ago |
Comment | Post #285962 |
[Using the yum-cron Interface to Automatically Keep Your System Up To Date](https://docs.oracle.com/en/operating-systems/oracle-linux/7/yum/ol7-yum-cron.html) (more) |
— | almost 3 years ago |
Edit | Post #285881 | Initial revision | — | almost 3 years ago |
Answer | — |
A: Scalable fonts are not loaded into the X server database Further digging led me to this post on the FreeBSD forum, in which a user says that > The functionality of the freetype module is contained in the libXfont library. And sure enough I managed to get scalable XLFDs by enabling the truetype USE flag for libXfont2 and recompiling it. The effect ... (more) |
— | almost 3 years ago |
Edit | Post #285867 |
Post edited: Replace repeated reference |
— | almost 3 years ago |
Edit | Post #285867 |
Post edited: |
— | almost 3 years ago |
Edit | Post #285867 |
Post edited: |
— | almost 3 years ago |
Edit | Post #285867 | Initial revision | — | almost 3 years ago |
Question | — |
Scalable fonts are not loaded into the X server database I have some old X11 applications complain that they cannot find a ISO8859-2 font. So I executed grep -r 8859-2 /usr/share/fonts/ and, to my surprise, found many matches, for example ``` ==> /usr/share/fonts/dejavu/fonts.dir /usr/share/fonts/unifont/fonts.dir <== unifont.ttf -misc-unif... (more) |
— | almost 3 years ago |
Comment | Post #285831 |
Please see whether deleting the `*.emerg` line solves your problem, as suggested by https://superuser.com/questions/1092244/how-do-i-stop-tomcat-rsyslog-from-logging-to-console (more) |
— | almost 3 years ago |
Comment | Post #285831 |
For your future questions, please use the three backticks marks to introduce and end full code blocks. Single backticks are for inline `code` and doesn't work well for multiple lines.
I have also attempted a simplification in the way you display your configuration files. I hope you and readers will ... (more) |
— | almost 3 years ago |
Edit | Post #285831 |
Post edited: Formatting |
— | almost 3 years ago |
Edit | Post #285654 |
Post edited: Additional references |
— | almost 3 years ago |
Edit | Post #285654 | Initial revision | — | almost 3 years ago |
Answer | — |
A: Disable transient symbols for compose and dead keys in GTK programs This is originally Ibus' (an input method) behavior. It provides some facilities to extend the basic "input by typing". Examples: - `Ctrl+Shift+U` for hex Unicode input. - `Ctrl+.` for emoji selector. Now, to complicate matters, GTK has its own input method too, which is inspired in Ibus, an... (more) |
— | almost 3 years ago |
Edit | Post #285653 | Initial revision | — | almost 3 years ago |
Question | — |
Disable transient symbols for compose and dead keys in GTK programs An article in the GTK blog explains the situation very well, but here is my go at it. In my keyboard layout, accents are handled as dead keys, so to insert "ë", first I type `¨` and then `e`. Nothing happens on the screen until the very last step, at which point `ë` is inserted. That, however, ... (more) |
— | almost 3 years ago |
Edit | Post #285646 |
Post edited: Formatting; Use ls -l instead of ll, since the latter is just your user-defined alias |
— | almost 3 years ago |
Edit | Post #285650 | Initial revision | — | almost 3 years ago |
Answer | — |
A: What does capital T mean in the output of 'ls -l'? The reason why you don't find this in `man ls` is that the GNU project (that developed Coreutils) usually provides the complete documentation of its components not in classic manual pages, but in so called Info documents (for more context, see Unix & Linux: What is GNU Info for?), and that is indeed ... (more) |
— | almost 3 years ago |
Edit | Post #285645 |
Post edited: Mostly code block formatting |
— | almost 3 years ago |
Comment | Post #284642 |
@#53305 I use my laptop's keyboard — but since [I read that touchpads may be USB or PS/2](https://wiki.gentoo.org/wiki/Synaptics#Installation), I reckon a laptop's keyboard might also be so? (more) |
— | about 3 years ago |
Edit | Post #284672 |
Post edited: |
— | about 3 years ago |
Comment | Post #285301 |
I think looking at `$0` is a simple and portable way to figure out what shell one is running. Since it may be, for example, `zsh` and `bash`, but also `/bin/bash` (i.e., including the directory component), pattern matching with a `case` statement would be the way to go, resulting in a POSIX compliant... (more) |
— | about 3 years ago |
Edit | Post #285278 |
Post edited: Add the proper error message; Add link to crosspost; Spelling/Punctuation. |
— | about 3 years ago |
Comment | Post #285278 |
Note that Bash also supports the ** construct. Look for `globstar` in the manual. You could then adapt your statements to work in both shells and do away with the if-elif. Unless you really don't want a recursive traversal under `.functions.d` on Bash, only in Zsh (that's what the script is trying to... (more) |
— | about 3 years ago |
Comment | Post #285144 |
@#53003 True. "Unix-like systems" or "(almost) POSIX systems" would be more appropriate. (more) |
— | about 3 years ago |
Comment | Post #285187 |
A retractation: I'm no native speaker and thought the word "cruft" meant something different, not "trash, debris, etc." Luckily I just looked it up on time to apologize and retract it. I had no intention whatsoever to abase those questions nor to demoralize those who asked them. (more) |
— | about 3 years ago |
Comment | Post #285187 |
Yup, I also feel that way towards Windows (well, non-free software in general) and Smartphones, so I would also prefer never to see those questions. However, at the moment we would receive about a question per day if we merged, and at that rate wading through the cruft wouldn't be hard in the slighte... (more) |
— | about 3 years ago |
Edit | Post #285164 | Initial revision | — | about 3 years ago |
Answer | — |
A: I deselected a package and changed my mind. How to select it without re-emerging? From Selected-packages set (Portage) — Adding an atom without recompilation (yes, embarrassingly the very link in the question, the word "atom" put me off...), emerge --noreplace xournalpp ``` --noreplace, -n Skips the packages specified on the command-line that have alread... (more) |
— | about 3 years ago |
Edit | Post #285156 | Initial revision | — | about 3 years ago |
Question | — |
I deselected a package and changed my mind. How to select it without re-emerging? I executed emerge --deselect xournalpp , which means "I don't need the `xournalpp` package anymore", so it can be removed by a future `--depclean` action in case Portage figures `xournalpp` is not a dependency of any other installed package. Hence the aforementioned command does not unin... (more) |
— | about 3 years ago |
Edit | Post #285144 | Initial revision | — | about 3 years ago |
Question | — |
Should we merge with Power Users? To increase the activity of the site (one of the main concerns related to making Codidact grow), I suggested merging Linux Systems with Power Users on Meta. Do you agree or disagree with merging? (more) |
— | about 3 years ago |
Comment | Post #284959 |
Thank you for your kind words. It would be an honour to serve Codidact. I won't be voting on this particular answer so that we can more accurately measure what people think; In case they signal acceptance, I accept the role and hope to live up to the community's expectations. (more) |
— | about 3 years ago |
Comment | Post #284956 |
I found a mention of the error message in https://github.com/rbenv/ruby-build/issues/1353#issuecomment-791727836, perhaps it will be useful. (more) |
— | about 3 years ago |
Edit | Post #284821 | Initial revision | — | about 3 years ago |
Answer | — |
A: Quickly increase virtual console ("TTY") font size on the fly To double the font size: `setfont -d`. To revert to the default font: `setfont`. From the manual page: ``` -d Doubles the size of the font, by replicating all of its pixels vertically and horizontally. This is suitable for high pixel density (e.g. "4k") displays on whic... (more) |
— | about 3 years ago |
Edit | Post #284820 | Initial revision | — | about 3 years ago |
Question | — |
Quickly increase virtual console ("TTY") font size on the fly I just want to "zoom in/out" in the text console, is there a straightforward command to do that? I have found various sources (1, 2, 3) that either suggest permanent changes (e.g. modifying configuration files such as `/etc/default/console-setup`) or complicated procedures such as looking for avai... (more) |
— | about 3 years ago |
Edit | Post #284642 |
Post edited: |
— | about 3 years ago |
Edit | Post #284672 | Initial revision | — | about 3 years ago |