I installed Arch because I liked the idea of building everything from the ground up, choosing all of my utilities, and gentoo would take too long on my laptop. Still haven’t finished my DE 2 computers and 3 years later
I installed Arch because I liked the idea of building everything from the ground up, choosing all of my utilities, and gentoo would take too long on my laptop. Still haven’t finished my DE 2 computers and 3 years later
I’m not sure what’s going on, I can think of a couple things worth checking.
First I would make sure that all the files are being copied over properly. In a terminal window, run ‘ls -la /home’ and ‘ls -la /new_home’ or ‘ls -la /old_home’ and compare the outputs. Both should be the same and have a folder with your username. Check inside the user folder as well by appending ‘/username’ to the command (ex: ‘ls -la /home/Doctor_Rex’ but use your linux username).
The letters on the left (rwxr-xr-x or something similar) are permissions and should be the same. Continuing across the line there’s another number that isn’t important and then it should say your username twice. If it says “root” you need to update the owner of the files. this can be done by running ‘sudo chown -r username:username /home/username’ where “username” is your linux username.
Lots of configuration settings are stored in files or directories that start with a ‘.’ and are hidden by most file managers and ‘ls’ by default. If these are missing it’d cause problems.
If everything looks the same, you could try logging in from a TTY. This won’t start a GUI, but it will allow us to see if you can log in at all. You can switch to another TTY by pressing ctrl+alt+any function key (f1/f2/f3/etc). Most distros use TTY1 or TTY7 for their GUI, so try ctrl+alt+f2. If it doesn’t change to a terminal screen, try another function key. From there it should prompt you to enter a username and password. Try and log in to your account. If you can, it’s probably an issue with KDE, if you can’t there’s still something wrong with how you have the drives mounted, missing files, or incorrect file permissions.
Sorry if the formatting is a little chaotic, I added the part about checking ownership in after writing the rest
Docker is professional software and because of that isn’t always the most intuitive thing to use.
The first big thing to get your head around is that there is no GUI. Everything you do to manage docker is through the command line. If you really want to, there’s some third party GUI software for managing Docker, but I haven’t used it in the 2 years I’ve been using Docker.
Once you’ve installed docker, there’s a little bit of setup required to make it run smoothly. The Docker Docs page on Linux post-installation steps has detailed instructions on how to do that and how to run a test container
You’re right. The comments here have been really weird and kinda missed the whole point of OP’s post.
Going over your steps, it looks like you forgot to copy the contents of your old home directory (partition A) into the new partition on drive B before editing your fstab file. This would cause the system to boot and not find any home directory (because once you change the fstab file it only knows to look for it on drive B) and then fail to log you in.
You also shouldn’t have to remount your home directory (partition A) before copying files over because it’s already mounted when you boot your system.
Hope this helps! Let me know if you have any questions!
+1 for kitty. Embedded images for Ranger is super cool. The only downside is i’ve been getting rendering issues for a couple seconds after waking up from suspend but that’s probably a configuration issue on my end
As far as I’m aware the only real difference is what repositories are available and what the default settings/programs/etc are
It might be worth checking a resource monitor such as top, htop, or bashtop to see if there’s a process using way more resources than it should
So many want “change” … Trump is “change”, right from his personal nature and demeanour.
Back in 2016 when Trump as sill “new” I fell very squarely into this. I was still too young to vote and had just started learning about politics. Looking at both major parties all I saw was people who didn’t care about normal people, politicians that seemed too involved in the political game to actually get anything done. I remember seeing Trump as a kinda of wild card that would hopefully stir things up enough to hopefully get something done. That someone removed from the traditional nepotism in politics could make real changes.
Unfortunately that’s not what happened, and not really how any of this works. It seems like his presidency just made new problems, and all the old ones still persist.
The Arch Wiki has a page for the tool :)
Edit: forgot the link https://wiki.archlinux.org/title/Fprint
This entire article just feels like good news and that’s exciting
Or Snapchat Spectacles
Seeing the “natha” username is so vindicating. I thought I had typed my name wrong for so long
What are your issues with Firefox? Been great for me
You can think of yas-bdsm eject as your safeword.
He definitely knows
Even then 99% of the time it’s just installing a single package to fix it. Just gotta check the lookup table on the wiki
Disclaimer: I’m on mobile, please excuse and terrible formatting
The issue that you’re running into is that the Python module “libevdev” isn’t installed.
The traditional “best practice” for installing python modules is to create a python virtual environment (venv) for each project so they can have different versions of the same module. However, this will make running the script/program a little less convenient. I’ll include instructions for both, you only need to follow one.
The first thing we’ll want to do is create a virtual environment. This will let us install modules that don’t mess with the rest of the system.
All of these commands should be run in the root folder of the application (the folder that src is inside of). Run the following command to create a folder (.venv) the virtual environment will be stored in.
python -m venv .venv
Next, we’ll want to activate the virtual environment. This needs to be done every time you run the application. If you’re using the bash shell the following command will active the virtual environment. (The bash shell is the default in Ubuntu. If you haven’t changed it this what you want)
source .venv/bin/activate
Now that we’ve created and activated a virtual environment, we can install the missing package.
The repository you linked has a requirements.txt file we can use to install all the required modules without typing them out by hand. This can be done using pip and the ”-r” flag.
pip install -r requirements.txt
Now that everything is installed, you should be able to run the application as normal with:
sudo python -m src
If you close your terminal window, you’ll have to reactivate the virtual environment the next time you want to run the script/program. You can also write a bash script to do this for you.
If you don’t want to setup a virtual environment, you can install the modules user wide. This will make it so the installed packages are available every time you run python. You can do this with pip as follows. Make sure to run this command in the root folder of the application (the folder src is in)
pip install -r requirements.txt
You should then be able to run the script/program as you did before with
sudo python -m src
Archive link for those who want it:
Please avoid Manjaro. I’ve had my Manjaro install break more than any other distro. If you want something arch based, you’re better off installing Arch from scratch, using the arch install script, or using EndeavorOS. All three of these options use the normal arch repositories which are far more stable than the Manjaro ones, and also offer much better compatibility with the AUR
Not when discord launched. Discord had far better audio quality, multiple text and voice channels, and some moderation tools. Skype was basically a group chat with a group call function