

Good to know that the info I gave was correct. Thanks for the confirmation!
Just a cat wandering about Tamriel.
Good to know that the info I gave was correct. Thanks for the confirmation!
You can use brasso to burn ISO’s of the games.
Steam used to have a game backup function. Not sure if its there anymore or if it would even work without steam.
Glad I could help!
Developer Options -> Network then add all the entries in the Size column. Is that what your looking for?
Running arch as well and have it installed. Works just fine with linux-g14
kernel and headers. I use the zen kernel mostly so i don’t have the armory settings most of the time because I use zen but everything else works.
Just did a pacman -Q | grep linux
and my linux-g14
is on 6.15.2 and zen is on 6.15.3.
Did you add the keys?
Might be worth checking out, not positive it supports your laptop but if it does it might give you control over some bells and whistles like fan curves and lighting.
Okay. Look. We both said a lot of things that you’re going to regret. But I think we can put our differences behind us. For science. You monster.
I don’t know if this would help but it might be worth a try, make a file immutable by
sudo chattr +i /file/location
If it doesn’t work change it back,
sudo chattr -i /file/location
Never had this happen on my setup. Have a nv3080 optimus with integrated AMD GPU though.
I don’t think I can help per say but it might help others if they knew a bit more about your setup.
nivida-smi
uname -a
plasmashell --version
Kf5-config --version
Those bits might help.
If you have 2 separate drives
each with their own boot loader and you tell your bios to boot from the grub bootloader and grub has successfully detected another OS like windows everything will be fine.
The trouble with dual booting comes from splitting a drive into partitions with different OS’s on them sharing the same boot partition. Eventually windows will nuke grub and you will loose the ability to boot linux till you use a live USB to repair through chroot and fixing/installing grub manually or using a grub-repair live USB. Usually only gets complicated if you have luks set up.
I don’t advise dual booting on a single drive. I intentionally buy gaming laptops with dual drive setups and keep the windows drive untouched till the warranty is out. Just in case i have to send it in for repair. Been doing this since 2004 without ever having any bootloader issues that I didn’t cause myself.
You could write a simple python script using datetime
and pyperclip
. 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 [
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
with pip
.
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 name clipboard_timestamp.py
Doesn’t really matter as long as you remember the name. Next you have 2 options. You can make the script executable using chmod 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 with python
like so python ~/.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 like shortcuts
. Add New
-> Command or Script
. Point this to your newly saved python script /.local/bin/clipboard_timestamp.py
. Then you choose the keystroke combination.
I was loyal to samsung till I bought the S9 and couldn’t throw a custom rom on it. So I reluctantly bought a pixel and put grapheneOS on it the second i bought it. Hands down the best android experience i have ever had. I have complete control over what the apps do, what sensors and directory’s they have access to and whether they have google services or not. Sanboxing is great. Buffer overflow protection, security focused updates regularly.
I wish fairphone’s hardware was up to the security standards of gOS. I really wanted one of those but im extremely happy with the pixel overall.
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?
nvtop
: visualize nvidia GPU usage and memorytop
: monitor/manage processes althoughps aux | grep appName
is still my goto.pyenv
: easily install and use any python versionipython
: a customizable python interpreter. I have figured out many poorly documented modules using ipython and great for exploring modules.Import psutil as ps ps.#then hit tab
after hitting tab will show all attributes related to your imported module, use arrow keys to select methods == profit!
nethogs
: monitor network connections by app.firejail
: app sandboxing