Sample Header Ad - 728x90

Unix & Linux Stack Exchange

Q&A for users of Linux, FreeBSD and other Unix-like operating systems

Latest Questions

7 votes
2 answers
397 views
How can I find location of PRI in /proc
I have `sshd` with `PID` of 1957: mohsen@debian:~$ ps ax -o pid,nice,pri,cmd |grep 1957 1957 -2 21 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups According to above, my `nice` number is -2 and `pri` number is 21. According to `/proc/1957`, I can't find my `nice` number and `pri` number. roo...
I have sshd with PID of 1957: mohsen@debian:~$ ps ax -o pid,nice,pri,cmd |grep 1957 1957 -2 21 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups According to above, my nice number is -2 and pri number is 21.
According to /proc/1957, I can't find my nice number and pri number.
root@debian:~# cd /proc/1957 root@debian:/proc/1957# cat sched sshd (1957, #threads: 1) ------------------------------------------------------------------- se.exec_start : 211942985.934983 se.vruntime : 31.031644 se.sum_exec_runtime : 23.385935 se.nr_migrations : 14 nr_switches : 57 nr_voluntary_switches : 18 nr_involuntary_switches : 39 se.load.weight : 1624064 se.avg.load_sum : 4366 se.avg.runnable_sum : 4470824 se.avg.util_sum : 1557504 se.avg.load_avg : 147 se.avg.runnable_avg : 95 se.avg.util_avg : 33 se.avg.last_update_time : 211909716609024 se.avg.util_est : 38 policy : 0 prio : 118 clock-delta : 89 mm->numa_scan_seq : 0 numa_pages_migrated : 0 numa_preferred_nid : -1 total_numa_faults : 0 current_node=0, numa_group_id=0 numa_faults node=0 task_private=0 task_shared=0 group_private=0 group_shared=0 Where in /proc are the number pri and nice stored?
PersianGulf (11308 rep)
Jun 5, 2025, 05:42 AM • Last activity: Jun 5, 2025, 10:29 PM
1 votes
2 answers
2050 views
Is it possible to set niceness value of a program in advance?
I want my games and certain programs (such as WINE) to be automatically given a higher priority then everything else, and while I'm at it I probably want to adjust the niceness value of a few other things like my window manager to be given a higher priority as well. So is there any way to give a nic...
I want my games and certain programs (such as WINE) to be automatically given a higher priority then everything else, and while I'm at it I probably want to adjust the niceness value of a few other things like my window manager to be given a higher priority as well. So is there any way to give a niceness level to a program before starting it? So, for example, I want the Steam program to always be run at niceness level -20 to give it priority over everything else. I don't want to have to run it in the command line like this "nice -n -20 steam" every time. A script could work well enough I suppose for those programs, but that doesn't solve it for things like services. For example, I might want to change the nice value of my window manager, which is started by my display manager, which is started by a service.
Sol33t303 (123 rep)
Apr 27, 2020, 09:39 AM • Last activity: May 26, 2025, 06:04 AM
3 votes
0 answers
41 views
Implement a recovery virtual console for a hanged system
This might be a duplicate of "[reserve memory for a set of processes](https://unix.stackexchange.com/questions/401769/reserve-memory-for-a-set-of-processes)", but I think my question is a little broader. I have a system that likes to hang a lot. I tend to use a lot of browser tabs and a bunch of Ele...
This might be a duplicate of "[reserve memory for a set of processes](https://unix.stackexchange.com/questions/401769/reserve-memory-for-a-set-of-processes) ", but I think my question is a little broader. I have a system that likes to hang a lot. I tend to use a lot of browser tabs and a bunch of Electron apps; sometimes when too many of these are open my system comes to a complete stop. Usually my solution is to just Alt+SysRq+F to forcefully invoke oom_kill, this usually results in my browser getting killed. I have been meaning to install a user-space service killer for a while so that I get a more proactive prevention of a system freeze, but honestly, it wouldn't change much (unless I was doing something time sensitive and couldn't afford a 2.5s before oom_kill is complete). I would much rather the ability to choose what I want to be killed. To that end, I would like to have a "holy virtual terminal", one that I can simply Ctrl+Alt+F1 (my graphical session lives in Ctrl+Alt+F2) and then use either top or btop to kill whatever I want to restore my system to a working state. I want a guarantee that it _will have enough memory/cpu priority to function_. Right now if the hang is bad enough, it either takes minutes for a login prompt to show up on virtual consoles, or the login itself times out after 60 seconds. Is this possible? How? Would "niceness" be relevant? Perhaps there is a kernel module for it? I wouldn't mind permanently losing 1GB or less of memory in my system if that was necessary (if it needed to be "allocated" to such a console). Previously I thought one of the solutions would be to create a default cgroup that would only allow up to System Ram - 1Gb, then I could somehow have tty1 be on a different cgroup which wouldn't have that memory limit. I don't really know how that would be achieved, but it sounds possible. However, there seems kernel parameter that was designed specifically for this purpose: [vm.admin_reserve_kbytes](https://www.kernel.org/doc/Documentation/sysctl/vm.txt) > The amount of free memory in the system that should be reserved for users with the capability cap_sys_admin. > > admin_reserve_kbytes defaults to min(3% of free pages, 8MB) > > That should provide enough for the admin to log in and kill a process, if necessary, under the default overcommit 'guess' mode. My system is already in 'guess' mode, but if I can't even get a login prompt, I don't really see the point of reserving for root if you don't have enough memory to login as root. It sounds like some combinations of these parameters would allow me to get what I want, but it isn't clear to me right now what that would be.
Mathias Sven (273 rep)
Apr 15, 2025, 05:27 PM • Last activity: Apr 16, 2025, 01:06 PM
5 votes
1 answers
83 views
How to make "nice" more effective?
It seems that the `nice` tool isn't as effective as I'd like it to be. I'd expected that if I run some CPU hungry program with nice level 19 (but using all CPU cores), then the kernel would still give almost a full core to a single-thread program if it needs it. For example, if I start a compilation...
It seems that the nice tool isn't as effective as I'd like it to be. I'd expected that if I run some CPU hungry program with nice level 19 (but using all CPU cores), then the kernel would still give almost a full core to a single-thread program if it needs it. For example, if I start a compilation with nice -n 19 make -j12, then I'd still be able to use my editor smoothly. Unfortunately this is not the case, if I start a compilation, my editor starts stuttering. I remember having experimenting with nice levels a long time ago, and it certainly wasn't the case: even if some process took all the CPU power, if it was reniced to 19, other processes could run more-or-less smoothly. I read about disabling autogroups (setting /proc/sys/kernel/sched_autogroup_enabled to 0), unfortunately this doesn't solve the issue. I wrote a little C++ program to demonstrate the issue. It has a single parameter, which tells how many threads to use to load the CPU. And it regularly prints a time duration, which means how fast it can run. A smaller number means faster running speed. Now, I run it ./cpu_load 1 in a terminal (simulating my editor), and it prints this:
618.01 ms
628.84 ms
633.68 ms
Now, I run nice -n 19 ./cpu_load 12 in another terminal, simulating compilation (note: my CPU has 12 HW threads, a 6 core machine). When doing this, the previous program slows down, and the timing it prints becomes larger, meaning it got a significant slow down:
1383.27 ms
1391.80 ms
1402.77 ms
Also, it seems that the nice level of 19 has almost no effect. The difference caused between ./cpu_load 12 and nice -n 19 ./cpu_load 12 is negligible. Also, I don't even have to use all the HW threads. If I use nice -n 19 ./cpu_load 9, the program still gets the same slow down. Is there a way to run the compilation while still having a responsive editor? What could be the reason that nice doesn't really work? Note: the issue is surely not caused by CPU throttling. Note2: according to the measurement, the editor only gets a ~2x slow down. But in reality, when using my actual editor, the difference is clearly much larger. When the CPU is not loaded, the editor is buttery smooth. But when the CPU is loaded, sometimes it doesn't get the chance to refresh the display for several tenths of a second. My kernel is: Linux 6.13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.13.2-1~exp1 (2025-02-08) Here's the CPU load program:
++
#include 
#include 
#include 
#include 
#include 

std::int64_t T() {
    struct timeval tv;
    gettimeofday(&tv, nullptr);

    return static_cast(tv.tv_sec) * 1000000 + tv.tv_usec;
}

void thread(int th) {
    volatile double v = 0;

    for (;;) {
        // do some calculation, and print the time it took
        std::int64_t b = T();
        for (int i = 0; i < 100'000'000; i++) {
            v += sin(i);
        }
        std::int64_t t = T() - b;
        if (th == 0) {
            printf("%5.2f ms\n", t / 1000.0f);
        }
    }
}

int main(int argc, char *argv[]) {
    if (argc < 2) {
        return 1;
    }

    int n = atoi(argv);
    std::thread threads;

    for (int i=0; i
geza (151 rep)
Apr 14, 2025, 06:19 PM • Last activity: Apr 15, 2025, 06:24 AM
0 votes
1 answers
531 views
Set highest CPU and IO priority for a systemd service
How to set CPU and IO priority for a systemd service? In partucular, how to set the highest values? (Assume that the service is idling most of the time and will absolutely NOT clog the rest of the system. Assume that the request is intentional and desired.)
How to set CPU and IO priority for a systemd service? In partucular, how to set the highest values? (Assume that the service is idling most of the time and will absolutely NOT clog the rest of the system. Assume that the request is intentional and desired.)
VasyaNovikov (1527 rep)
Dec 22, 2024, 06:27 PM
3 votes
1 answers
848 views
Does it make sense to combine chrt and nice?
I want a CPU-intensive process to have the lowest possible impact on other processes. I can use `nice -19` for maximum niceness and `chrt -i 0` to give the process a `SCHED_IDLE` priority. Which is more effective? Does it make any sense to combine the two like this? chrt -i 0 nice -19 my_command
I want a CPU-intensive process to have the lowest possible impact on other processes. I can use nice -19 for maximum niceness and chrt -i 0 to give the process a SCHED_IDLE priority. Which is more effective? Does it make any sense to combine the two like this? chrt -i 0 nice -19 my_command
kontextify (181 rep)
Oct 11, 2017, 08:56 AM • Last activity: Dec 6, 2024, 03:06 PM
0 votes
0 answers
163 views
System starts to freeze when copying large amounts of data
OS is Debian 12. Got a brand new disk to use as a backup for a disk currently in use. For the initial rsync, my system starts to lag and freeze for maybe half a second at a time. This is especially noticeable when playing back audio. Load average jumps from ~5 to ~15 during the rsync. What is going...
OS is Debian 12. Got a brand new disk to use as a backup for a disk currently in use. For the initial rsync, my system starts to lag and freeze for maybe half a second at a time. This is especially noticeable when playing back audio. Load average jumps from ~5 to ~15 during the rsync. What is going on here? I know it's rsync because the instant I kill the process, audio playback goes back to normal. Trying to run with lowest cpu priority and lowest io priority like so: sudo nice -n 19 ionice -c 3 rsync -a --sparse --delete --info=progress2 /mnt/src/ /mnt/dest Running with sudo as a few files are owned by root and I want to be sure those get copied. How can I run rsync so my system doesn't freeze? Also I know it's not an issue with these specific disks, as I have tried other combinations of disks and I get the same issue. I also had this same problem on my older system, which used entirely different disks and motherboard.
cat pants (167 rep)
Jul 26, 2024, 09:57 PM
30 votes
7 answers
67592 views
How do I start a process with a nice value of -20 and not give it root privilege?
I would like to start a process with a nice value of -20. This requires me to use a command like ``` sudo nice -n -20 matlab ``` However, this starts matlab as root too. Is there a way to have matlab as non-root? My current approach is ``` sudo nice -n -20 sudo -u myusername matlab ``` which to me l...
I would like to start a process with a nice value of -20. This requires me to use a command like
sudo nice -n -20 matlab
However, this starts matlab as root too. Is there a way to have matlab as non-root? My current approach is
sudo nice -n -20 sudo -u myusername matlab
which to me looks like a hack. Is there a direct approach to do this?
Lord Loh. (2076 rep)
Apr 18, 2013, 07:39 PM • Last activity: Jul 4, 2024, 11:35 AM
0 votes
1 answers
189 views
How is the default nice value of a user's processes implemented in Ubuntu server 22.04.4 LTS
I've noticed that all services and processes with my user in Ubuntu Server 22.04.4 LTS have a `nice` value of `19`. I connect to the server through ssh, and my ssh sessions also have a `nice` value of `19`. I didn't use the `nice` or `renice` commands. I'm searching for the configuration that produc...
I've noticed that all services and processes with my user in Ubuntu Server 22.04.4 LTS have a nice value of 19. I connect to the server through ssh, and my ssh sessions also have a nice value of 19. I didn't use the nice or renice commands. I'm searching for the configuration that produces this default nice value. So far, I've seen that /etc/security/limits.conf is the place to configure default nice value, but my current file is all commented out. Also I cannot find any reference to this nice value in the generic systemd user@.service or user.slice unit files. In desktop Ubuntu, the default nice value is 0, so I assume it must be configurable. Could you point me to the configuration file where this nice value of 19 is configured?
AndresR (261 rep)
Apr 26, 2024, 10:23 AM • Last activity: Apr 26, 2024, 11:00 AM
11 votes
1 answers
2464 views
Why does `nice` with a negative argument (e.g. `nice -15`) increment niceness?
My `nice` is from GNU coreutils 9.1. I observed that `nice -15` is equivalent to `nice -n 15`: ``` nice # prints 0 for me, the base niceness is 0 nice -n 15 nice # prints 15, this is expected sudo nice -n -15 nice # prints -15, this is expected nice -15 nice # prints 15 ``` `-15` is a negative numbe...
My nice is from GNU coreutils 9.1. I observed that nice -15 is equivalent to nice -n 15:
nice               # prints 0 for me, the base niceness is 0
     nice -n  15 nice   # prints 15, this is expected
sudo nice -n -15 nice   # prints -15, this is expected
     nice    -15 nice   # prints 15
-15 is a negative number. Why does it increment the niceness in the last example above? The manual (e.g. in Debian 12) does not explain this.
Kamil Maciorowski (24294 rep)
Mar 21, 2024, 12:07 PM • Last activity: Mar 22, 2024, 06:23 AM
0 votes
1 answers
49 views
Relationship between number of cores and ability to run processes with higher nice values?
When I "flood" my CPU with 8 high priority (nice=-20) OS threads (the number of cores I have), operation becomes "halty" for obvious reasons, but is still usable. Note that when I say "high-priority thread" I mean a thread that was spawned by the same high-priority process. However doing something l...
When I "flood" my CPU with 8 high priority (nice=-20) OS threads (the number of cores I have), operation becomes "halty" for obvious reasons, but is still usable. Note that when I say "high-priority thread" I mean a thread that was spawned by the same high-priority process. However doing something like 64 threads will completely make my PC unusable. What is the relationship between max priority threads and their distribution between cores? Can we figure out roughly how many threads I need to spawn to completely flood the CPU for a given nice value?
doliphin (125 rep)
Jan 20, 2024, 05:10 PM • Last activity: Jan 20, 2024, 08:46 PM
0 votes
1 answers
1744 views
How to nice/renice all the future processes of a user
One of my server's users needs to launch CPU and I/O intensive jobs that are also quickly done (usually less than 30 seconds). They can be started by a user’s cron, a user’s shell or even `Apache`, `PHP` or `MySQL` processes forked/launched from root’s processes (MySQL and Apache run as root then fo...
One of my server's users needs to launch CPU and I/O intensive jobs that are also quickly done (usually less than 30 seconds). They can be started by a user’s cron, a user’s shell or even Apache, PHP or MySQL processes forked/launched from root’s processes (MySQL and Apache run as root then forked processes set themselves as the corresponding user). Is there a way to nice an entire user and all its future processes owned by this user? **EDIT** Added more precision about the kind of processes targeted
Max13 (172 rep)
Dec 1, 2022, 06:50 AM • Last activity: Oct 8, 2023, 07:09 PM
25 votes
4 answers
34466 views
Run Linux process at very very low priority?
I have a regular process that's not so important but will consume very much CPU power. I have another process which is really important, but it spends most of the time idle, but when it gets a job it really needs high computing power. I tried running with `nice -20 ./low_priority_process` and `nice...
I have a regular process that's not so important but will consume very much CPU power. I have another process which is really important, but it spends most of the time idle, but when it gets a job it really needs high computing power. I tried running with nice -20 ./low_priority_process and nice --20 ./high_priority_process but still the lower priority process consumes significant amount of CPU when the high priority process is in need. How can I run a process that will really yield or even auto-suspend when another process is using CPU power?
uray (3958 rep)
Sep 22, 2014, 07:05 PM • Last activity: Sep 22, 2023, 09:22 AM
0 votes
3 answers
408 views
How do I automatically "nice" particular users' jobs?
If I have server users who often forget to use the 'nice' command for their jobs on a web server, is it possible to change a setting so that the default priority for everything they launch is slightly higher than zero?
If I have server users who often forget to use the 'nice' command for their jobs on a web server, is it possible to change a setting so that the default priority for everything they launch is slightly higher than zero?
mirams (103 rep)
Jun 1, 2023, 11:48 AM • Last activity: Jun 1, 2023, 09:11 PM
2 votes
1 answers
1033 views
How to set process to the lowest possible priority on Linux?
I want to set the process to the lowest possible scheduling on Linux. I came up with the following: nice -n 39 ionice -c 3 chrt -i 0 command Are there also other settings that one can set for a process to "lower" the process priority? Are these settings the "lowest" possible? More often than not, I...
I want to set the process to the lowest possible scheduling on Linux. I came up with the following: nice -n 39 ionice -c 3 chrt -i 0 command Are there also other settings that one can set for a process to "lower" the process priority? Are these settings the "lowest" possible? More often than not, I do make -j$(nproc) or cmake or heavy tar processes that take full available I/O, memory and CPU on my machine. What is really frustrating, is that my mouse starts lagging. So I want to prevent it.
KamilCuk (970 rep)
May 13, 2023, 06:45 PM • Last activity: May 13, 2023, 10:05 PM
2 votes
0 answers
94 views
System unresponsive even when running command with nice
Debian 10. I am trying to render with blender in the background, like so: nice -n 19 blender -b --python my_script.py This renders to a file using the GPU. When rendering, I can see GPU usage spike to 100% with nvidia-smi, the system load goes up to around 3, and with top I can see cpu usage go to 1...
Debian 10. I am trying to render with blender in the background, like so: nice -n 19 blender -b --python my_script.py This renders to a file using the GPU. When rendering, I can see GPU usage spike to 100% with nvidia-smi, the system load goes up to around 3, and with top I can see cpu usage go to 110% for both blender and xorg. iostat shows almost zero iowait. At this point, my system becomes almost completely unresponsive. Windows take 10 seconds or so to get focus, etc. If I do ctrl+z, after 10 seconds or so the signal is processed and as soon as blender is suspended, my system instantly returns to normal. My end goal is to render in the background on my workstation while keeping my system responsive. How do I accomplish this?
cat pants (167 rep)
Mar 1, 2023, 01:00 AM
0 votes
1 answers
305 views
How do I launch Firefox with a negative nice value as a regular user?
I did this sudo nice -n -1 firefox to launch Firefox with higher priority and make all subprocesses that are executed at launch inherit that priority but it failed with an error message about Firefox can't be run as root in a regular user account. I need `sudo` to use negative nice values but the re...
I did this sudo nice -n -1 firefox to launch Firefox with higher priority and make all subprocesses that are executed at launch inherit that priority but it failed with an error message about Firefox can't be run as root in a regular user account. I need sudo to use negative nice values but the rest of the command should be run as my regular user. How can I use negative nice values but still run the program as my regular user? I don't want to use renice on already launched processes.
d-b (2047 rep)
Feb 6, 2023, 09:30 AM • Last activity: Feb 6, 2023, 11:30 AM
0 votes
1 answers
564 views
How is nice/renice supposed to work? Am I misunderstanding?
I run two extremely CPU-heavy (but not memory or I/O heavy) task on my Macbook Pro with 12 cores. This made the computer unusable for other tasks. I therefore reniced these processes to 20 and set Firefox to -1 (all other processes are 0 or lower), but Firefox is still extremely laggy. Shouldn't Fir...
I run two extremely CPU-heavy (but not memory or I/O heavy) task on my Macbook Pro with 12 cores. This made the computer unusable for other tasks. I therefore reniced these processes to 20 and set Firefox to -1 (all other processes are 0 or lower), but Firefox is still extremely laggy. Shouldn't Firefox get all CPU time it requires when its nice-value is the lowest among all running processes?
d-b (2047 rep)
Feb 5, 2023, 02:56 PM • Last activity: Feb 5, 2023, 03:18 PM
22 votes
2 answers
10412 views
nice and ionice: which one should come first?
I need to run some long and heavy commands, but at the same time, I'd like to keep my desktop system responsive. Examples: btrfs deduplication, btrfs balance, etc. I don't mind if such commands take longer to finish if I give them a lower priority, but my system should always be responsive. Using `n...
I need to run some long and heavy commands, but at the same time, I'd like to keep my desktop system responsive. Examples: btrfs deduplication, btrfs balance, etc. I don't mind if such commands take longer to finish if I give them a lower priority, but my system should always be responsive. Using nice -n 19 and ionice -c 3 should solve my problem, but I'm not sure which command should come first for maximum benefit. * Option A:
nice -n 19 ionice -c 3 btrfs balance start --full-balance /
* Option B:
ionice -c 3 nice -n 19 btrfs balance start --full-balance /
Is there some subtle difference between options A and B? Are they equivalent perhaps?
user22304
Sep 5, 2017, 01:06 PM • Last activity: Oct 26, 2022, 05:44 PM
0 votes
0 answers
123 views
Renicing X server and compositing manager (kwin-like) on a linux_kernel desktop
- Long time ago (pre-2.6 kernels) on a very low end desktop, I had been happily following [Con Kolivas suggestion to (quite heavily (-10)) renice the X server.][1] (for better responsiveness) - With newer kernels, newer scheduler and smp systems, many had reported that even a 1 + or - variation in t...
- Long time ago (pre-2.6 kernels) on a very low end desktop, I had been happily following Con Kolivas suggestion to (quite heavily (-10)) renice the X server. (for better responsiveness) - With newer kernels, newer scheduler and smp systems, many had reported that even a 1 + or - variation in the default nice value was "*leading the rest of the system to suffer in quite obvious ways*". I went back to default. - Having no longer paid any attention to this, I recently got the surprise to discover /usr/bin/X (1.20.8) launched *-nolisten tcp -keeptty :0 -auth blahblah* running with a nice value of -1. (*1) ---------- **Q1 :** Is this (running the X server with a nice value of -1) nowadays considered the best option for a desktop mainly running SCHED_OTHER tasks under default nice value ?
Note *1 below would, in some very curious way indicate that, if not the best option, it is a deliberate will from freedesktop irrespective of any context (clients, hardware, kernel, cpu pinning…) **Q2 :** Considering that I am also running a window/compositing manager (kwin_x11) said achieving most of the job the X-server used to achieve, should I consider consequent to also renice it ? in a greater or lesser amount that the X-server ? (X consumes on average 1,5 cpu time kwin_x11 does) (*2) **Q3 :** Would it be pertinent to base the nice relative values of X / kwin_x11 on the relative values of their unvoluntary context switches ? (kwin_x11 gets (during some of my typical desktop workload) about 30 times more unvoluntary context switches than X) ---------- **Q4 :** More generally speaking, in a client/server SCHED_OTHER world, is there a rule of thumb regarding relative nice values between servers and clients apps ? And, considering this particular case (of X server/ X client), can I assume that the client will, most of the time, be waiting for the server's availability ?
Can I also assume that the worst consequence of kwin_X11 not receiving enough cpu time is frame dropping and consequently that having some X client capable to output X fps on a regular basis and kwin_X11 dropping a couple of frames from time to time would be just absurd ? ---------- Figures when running some typical desktop workload for 5 minutes: X (nice -1) ucs : 1525 / kwin ucs (nice 0) 51834 (GT=53359)
X (nice -1) ucs : 6337 / kwin ucs (nice -2) 38415 (GT=44752) ---------- ***1 :** From what I understand in xinit code, xinit (parent) is responsible for that (`setpriority(PRIO_PROCESS, serverpid, -1); as part of the startserver procedure) right after forking the child that will later exec the server...
In fact… right after… the following comment : ***don't nice server*** ??? which indeed increases even more my perplexity. ***2 :** I know that Ananicy would heavily renice (-10) kwin if not even preferring some real time scheduling model (which I do not consider sensible (*3)). There is unfortunately no rationale given for this tuning and the corresponding rule is quite old (2018), a big amount of changes have been commited to kwin since. ***3 :** At least as far as kwin_X11 is concerned since, if my understanding is correct, the X server is still managing inputs.
MC68020 (8557 rep)
Jul 26, 2022, 11:28 AM • Last activity: Aug 2, 2022, 08:18 AM
Showing page 1 of 20 total questions