Our News Team @ 11 with host Snot Flickerman


Yes, I can hear you, Clem Fandango!

  • 19 Posts
  • 1.38K Comments
Joined 2 years ago
cake
Cake day: October 24th, 2023

help-circle
  • I think both of your arguments in this thread have merit. You are correct that it is a misused tool, and you are correct that the better solution is a more compassionate society. The other person is also correct that we can and do at least make attempts to make such tools less available as paths to self harm. Since you used the analogy of people jumping off bridges, I have lived near bridges where this was common so barriers and nets were put up to make it difficult for anyone but the most determined to use it as a path to suicide. We are indeed failing people in a society that puts profit over human life first, but even in a more idealized society mental health issues and attempts at suicide would still happen and to not fail those people we would still need to do things like erect barriers and safeguards to prevent self-harm. In my eyes both of you are correct and it is not an either or issue as much as it is a “por que no los dos?” issue. Why not build a better society and still build in safeguards?









  • There’s a few different ways for you to probe for info on your USB devices:

    lsusb - lists pretty much everything usb related, including root hubs on your motherboard

    For a more readable lsusb output you can lsusb -v | grep -E '\<(Bus|iProduct|bDeviceClass|bDeviceProtocol)' 2>/dev/null in my experience it can be helpful to slap a sudo on the beginning as well because sometimes certain devices can’t be polled without root privileges.

    usb-devices - similar to lsusb but produces much more detailed (but less human readable) information

    find /sys/bus/usb/devices/usb*/ -name dev - produces a list of where the system saves information on usb devices. Each of the listed folders will hold a lot of files with a wealth of information on each usb device, but be very careful and do not edit these files.

    You can also do this to see what the system is doing in the background and then try plugging and unplugging devices from the offending usb ports:

    watch "dmesg | tail -20"

    You’ll at least be able to see if the system is registering anything at all when trying to use those ports, or if it’s as though the system doesn’t see them at all.

    I have a similar issue on my Lenovo ThinkBook but the ports don’t work in any OS despite being enabled in the UEFI. I still haven’t figured out what is wrong with them, but it seems they may just be toast. Thankfully the USB-C ports still work and I can just connect a hub to one of those.