You might want to file a bug report so they can grab some info from you that could help an updater get pushed sooner and help others.
Very glad you got up and running. Hopefully they will get a better update pushed out soon.
Just a cat wandering about Tamriel.
You might want to file a bug report so they can grab some info from you that could help an updater get pushed sooner and help others.
Very glad you got up and running. Hopefully they will get a better update pushed out soon.
Hay if the restore works might hold off on doing an update for a few days just too see if kubuntu had pushed a bad update. If they did they did they should fix it pretty quickly when they get a bunch of people with broken systems.
I haven’t used timeshift in at least three years so Im going to give you this instead of relying on my possibly faulty memory.
https://itsfoss.com/backup-restore-linux-timeshift/
Command line instructions
https://dev.to/rahedmir/how-to-use-timeshift-from-command-line-in-linux-1l9b
Yes try to do that first. First research how to restore from timeshift backup so you do it properly.
Does ethernet work?
Did you chroot and reupdate? You might want to reuse timeshift to roll back before doing so.
Could also try going back a couple timeshifts ago.
Have you tried making sure network manager is enabled and started?
sudo systemctl enable NetworkManager
sudo systemctl start NetworkManager
From a live USB do you have networking?
I think your best bet is https://xdaforums.com/.
Fair enough!
I very much appreciated the xkcd, gave a good chuckle.
The LWDIS page should have a basic overview of the different distro family’s and maybe a breakdown of their specialty’s or focus. Probably have a breakdown for windows and mac specific easy ways to burn an ISO in the stickie.
Then people could field questions and guide people to the distro that might suit OP’s needs best instead of sponsoring their favorite distro.
From there they can go to the individual distros for more complete information and questions. If that distro and their community feels like a fit for their needs I think we could have a better retention rate than what we have been doing.
The other day I saw one of these which distro posts and most replies were not very helpful and mostly fanboy sponsorships which i don’t think would be very helpful to the OP. But their was one person there patiently and thoroughly answering OPs questions with the best info he could provide. It was tip top! That’s how we grow together!
I get it, the fanboy thing, I’ve got it bad for arch, endeavour and garuda. Im also the geekiest twat in my town. I don’t really recommend them to people I dont intend to be their IT guy when shit goes wrong. For the most part I recomend distros that have great communities people can draw from. If a newbie goes to the arch forum and hasn’t at least read the docs and researched their problem, provide logs or terminal output they arent getting helped. At least not how they might need. But on the mint, ubuntu, fedora forum’s they can plow through just about any problem with a little hand holding if that’s what they need, and that’s not a bad thing.
Friendliness, inclusion, understanding of the users personal needs, computer usage and goals is the way to keep people and expand our linux community IMO.
I want linux to be as welcoming as possible to everyone and the newbie question of what distro to use will come up a lot. I dont think it’s helpful in any way to bicker about why my choice in linux is better. We should be giving them the tools to make the best decision for themselves
What if we built a beginners linux community (Linux, Where Do I Start -> LWDIS) and point to all the distros communities, and on those distro specific communities they had beginner friendly install, setup, rice, maintenance instructions and advice along with a difficulty rating. I don’t know if stickies are a thing here but could be helpful in keeping relevant info on top. This could be a place for fanboys to shine on there favorite distro while keeping the basic inclusive LWDIS community free of bickering about distros that might cause confusion and turn people off.
That sucks, i thought i had used it before to get some music videos.
I think newPipe has an age restriction toggle in its settings, its available on android, not sure about ios, pretty sure not available on desktops.
Its been a while since ive needed to do this.
Dammit, i replied to myself. Stupid self!
yt-dlp might do the trick.
figlet "Linux Rocks!"
_ _ ____ _ _
| | (_)_ __ _ ___ __ | _ \ ___ ___| | _____| |
| | | | '_ \| | | \ \/ / | |_) / _ \ / __| |/ / __| |
| |___| | | | | |_| |> < | _ < (_) | (__| <\__ \_|
|_____|_|_| |_|\__,_/_/\_\ |_| \_\___/ \___|_|\_\___(_)
Not a mistake but a fun reminder that the terminal can be a very fun place!
fortune | cowsay -f stimpy
_________________________________________
/ Poverty Jet Set: \
| |
| A group of people given to chronic |
| traveling at the expense of long-term |
| job stability or a permanent residence. |
| Tend to have doomed and extremely |
| expensive phone-call relationships with |
| people named Serge or Ilyana. Tend to |
| discuss frequent-flyer programs at |
| parties. |
| |
| -- Douglas Coupland, "Generation X: |
| Tales for an Accelerated |
| |
\ Culture" /
-----------------------------------------
\ . _ .
\ |\_|/__/|
/ / \/ \ \
/__|O||O|__ \
|/_ \_/\_/ _\ |
| | (____) | ||
\/\___/\__/ //
(_/ ||
| ||
| ||\
\ //_/
\______//
__ || __||
(____(____)
So you went to the game, clicked on the gamepad icon on the bottom right of the game banner and selected enable steam input? Then selected a controller layout? I think its a little strange steam makes you do this per game as well as its general desktop setting.
Also did you try from a live usb environment? That was good advice as it could be something you/mimt installed after setup. Also you did do a checksum of your ISO before you burnt your install medium?
And there is no strange errors when starting steam from a terminal and running your game?
And you tried the steam beta?
If you have done all that might consider filing a bug report on steam.
Sometimes its worth waiting a few days for an update, might sort itself out.
It would make sense that the setting to enable PS input was not enabled. I have had this issue before after a fresh install as i had forgotten to enable the input. I remember being very pissed about it then feeling dumb. I hope that’s it cause its a simple fix.
Did you try to pair it with bt just to see if that works? Thats all I got. Hope someone comes along with some other options.
You could write a simple python script using
datetime
andpyperclip
. Datetime would supply the date format and pyperclip to copy that to your clipboard. You could setup a key binding to call the script then[Ctrl + v]
to paste.I believe all linix distros have python installed OTB.
There are probably a bash solution but my bash is rubbish.
Edit:
The bash solution that has been provided is the best option IMO. I just thought I should provide the code for my solution so you have options. This python script is easily extendable / customizable. All this depends in you installing the python module
pyperclip
.datetime
should be part if the standard python library so you dont have to install it.installing
pyperclip
withpip
.pip install pyperclip
The script:
#!/usr/bin/env python3 """A simple script to copy a formatted datetime string to the users clipboard""" import datetime import pyperclip def clipboard_timestamp(initials) -> None: """Function to create a formatted timestamp string to users clipboard. Arguments: initials: Uses the provided string during formatting of the timestamp.""" time = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") pyperclip.copy(f"{initials} {time}") if __name__ == "__main__": clipboard_timestamp('ABC')
The above script also adds the hours minutes and seconds to the timestamp. If not needed remove the
%H:%M:%S
. Dont forget to edit anything that you want like the'ABC'
near the end.Save script somewhere. I usually save personal scripts to
~/.local/bin
so they are out of the way. I used the nameclipboard_timestamp.py
Doesn’t really matter as long as you remember the name. Next you have 2 options. You can make the script executable usingchmod a+x clipboard_timestamp.py
. If you dont want to take this step you will have to tell the shortcut that python is executing the script by prefacing the script’s full path withpython
like sopython ~/.local/bin/clipboard_timestamp.py
If you made the script executable you just use~/.local/bin/clipboard_timestamp.py
.I use KDE but your system should be similar-ish. in your desktop’s setting’s search for
keyboard
and you should see something that says something likeshortcuts
.Add New
->Command or Script
. Point this to your newly saved python script/.local/bin/clipboard_timestamp.py
. Then you choose the keystroke combination.