Recent content by osprey

  1. osprey

    Moving from UNIX to Linux

    The book "The Cathedral and the Bazaar" by Eric S Raymond provides a wonderful exposition of the differences between linux and its predecessors. A version of the book is here: https://monoskop.org/images/e/e0/Raymond_Eric_S_The_Cathedral_and_the_Bazaar_rev_ed.pdf
  2. osprey

    Difficulty Changing The Font Size in KDevelop on Slackware 15 Stable

    Firefox has a "global scaling factor" to adjust size expanded upon here: https://support.mozilla.org/en-US/questions/1239467 It may or may not work. Mixed results here. Sounds like you want more than just firefox shown in the image though.
  3. osprey

    Ubuntu 22.04: Running a script at login - starting VPN

    Is the network up when the .profile file is read on boot up? An alternative way to run the script is with a systemd service in which the code can be configured to run the script when the network is up.
  4. osprey

    Use process path in cgroups

    The choice of controllers for cgroups on this machine is here: [tom@min /sys/fs/cgroup]$ cat cgroup.controllers cpuset cpu io memory hugetlb pids rdma misc If it's not going to be pids, then the others are available. How they can be used, I can't say though.
  5. osprey

    Today's article was hard to title...

    The tee command sends standard input to standard output by default to the tee file, so in the example in the linux-tips article, using the output of the uptime command, the redirection of standard error to standard output makes no difference, i.e. the addition of the redirection 2>&1 shows no...
  6. osprey

    TigerVNC server not found at apt

    @BoodyWin wrote: boodywin@DESKTOP-9LDVUPD:~$ sudo apt install tightvncserver There's a typo there, hence package will not be found. But tigervnc is in the repos. One can run the following with tab completion to see what's available: [tom@min ~/]$ apt-cache show tigervnc-<TAB> tigervnc-common...
  7. osprey

    SSL_read: I/O error: Get kicked out back to the the windows RDP client when trying to rdp to an Ubuntu 22.04 desktop

    Is the solution described here any good to you? https://bbs.archlinux.org/viewtopic.php?id=266712
  8. osprey

    SSL_read: I/O error: Get kicked out back to the the windows RDP client when trying to rdp to an Ubuntu 22.04 desktop

    There appears to be quite a bit of configuration to do which you haven't mentioned. Check out here: https://phoenixnap.com/kb/xrdp-ubuntu
  9. osprey

    Very new to Linux, want to install Schism Tracker

    The ubuntu package is named: libsdl2-2.0-0 according to ubuntu's package search website. It's available for these releases:
  10. osprey

    Very new to Linux, want to install Schism Tracker

    It's likely that the "permission denied" message is because the file schismtracker doesn't have execute permissions. To check that run, in the directory where it is: ls -al schismtracker If the permissions look like this: -rw-r--r--, without any x, then you can change the permissions with the...
  11. osprey

    Solved How Often Do You Trim Your SSD ?

    I cannot answer your question, but I do know there are many undocumented kernel options and command options that one finds when researching various problems online. In relation to linux documentation such as the man pages, they are written at a certain point in time but the software of the...
  12. osprey

    Solved How Often Do You Trim Your SSD ?

    In relation to the outputs of commands on the capacity of hard drives, one needs to be mindful of the difference between gigabytes (x1000) and gibibytes (x1024). Here are some examples on a machine with a 500GB disk. [root@mon ~]# fdisk -l Disk /dev/nvme0n1: 465.76 GiB, 500107862016 bytes...
  13. osprey

    Solved How Often Do You Trim Your SSD ?

    In the discussion on trim and swap it's worth noting a few aspects which may be helpful in understanding the situation. The kernel has supported trim since the 2.6.33 version with trimming of swap partitions occurring each time the kernel boots normally into a system on an ssd that supports...
  14. osprey

    Solved lsblk reacts very slowly

    @84773 wrote: Try: cd /sys/bus/usb/devices/3-14:1.0/physical_location duplicating the situation which the output in post #8 is reported. In relation to the device number being incremented, that is normal and a function of the fact that the kernel has to see each instance of the device...
  15. osprey

    Solved lsblk reacts very slowly

    @84773 wrote: There are a few ways of determining which usb is plugged into which port. One way is to determine the usb controller based number when plugging the usb in, then inspecting the details of the physical location in the /sys directory. To do it this way, run in a terminal: dmesg -w...
Top