What's your objective here? What is it you want to do with all these Linux distros?
Linux
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I'm afraid that you won't get an answer from OP. Based on the last couple of days, and OP's many posts, we've noted that OP has only rarely answered questions. I don't think it will be different this time.
So, while I can't read their intentions, I will provide my thoughts.
OP is a newb. And has asked this community many different (but somehow related) questions.
OP was on Xubuntu, but experienced a problem. After they saw that the solution involved more steps than they're willing to take, they instead opted to switch distros. After prompting the community for some input and inspiration, they decided to go for Debian with Xfce. However, they've experienced a bunch of things since that have made them second-guess their choice; Xubuntu was perhaps better at some things AND Linux Mint Xfce was actually the popular pick in their earlier community prompt.
So, in order to resolve their second-guessing, they intend to put them all to the test simultaneously though multi-boot before finalizing their decision.
Sorry, but I don't think that's a pretty positive and constructive attitude to have in a thread where someone is asking for help. Especially if they are newbies.
In fact, OP has answered my reply.
I'm glad to be proven wrong.
Thank you for being more optimistic than I am.
❤️
time to just let them use distrobox
I honestly suspect the main issue is related to either the opinionatedness of Ubuntu compared to Debian or the absence of Snap. Why do you think that Distrobox will help them with their choice?
compare
Would installing them in virtual machines be a good option for you?
It would allow you to test them without having to go through all the trouble of repartitioning and risking to lose your data.
Your CPU is okay, for testing instead I recommend installing virt-manager qemu qemu-kvm
. The packages on Debian are called a bit differently.
You can also just install XFCE on Debian, it doesnt interfere with GNOME.
btrfs with subvolumes. I have fedora gnome, fedora kde, debian 12 kde, arch mate as subvolumes on the same disk and of course a home subvolume that they all mount on boot, so all my data is always available.
Get a second ssd, I'm sure your PC has a placeholder for it. Normally, I'd say that you simply resize your main / partition using gparted, however, because it's encrypted this might be dicey. Hence, get a second SSD.
As long as it was encrypted with LUKS headers and not a raw cryptsetup resize
is totally capable of resizing partitions/LVs.
Yes. You can use lvresize
to reduce the size of your logical volumes.
You first need to shrink the filesystems using e.g. resize2fs
(exact command depends on filesystem). See the manpage for details, but for shrinking the filesystem it needs to be unmounted, so you'll need to do this from a live usb or something.
After that you can use lvresize
to resize the logical volumes. Pro tip: You can shrink the filesystem to e.g. 20 GiB, but shrink the partition to 30 GiB, just to make sure you're not cutting off the filesystem due to some slight error or inexactness, and then afterwards run resize2fs
again to resize the filesystem back to fill the whole partition, which it does by default if you don't specify any size.
Also note, since you have LVM-on-LUKS, when you boot into a live cd, you will need to first use cryptsetup
to decrypt your partition, and then run vgscan
to make lvm find the unecrypted partition.