Wouldnāt it be simpler just o copy folders .config , .Mozilla, .thunderbird to and usb and then on the new installation paste them to overwrite the existing ones?
Partly this is true. Messing up KDE and reinstalling taught me a couple of tricks.
Dual Pane browsers are great for browsing my HOME and my BACKUP/HOME. So I can selectively copy something in (for example, my .mozilla folder - straight copy).
Some configs arenāt great for new hardware - so you canāt restore a backup.
Most time is taken setting up stuff like Servarr/Plex etc.
You want to be sure to copy back your theming and desktop configs.
But also, you should generate a package list - just dump that on your desktop maybe: pacman -Qqet | grep -v "$(pacman -Qqg)" | grep -v "$(pacman -Qqm)" > ~/Desktop/pkglist.txt
You can take time to edit that, because you might want your new install to be less ābloatedāā¦ or you might just want to install items and delete them one-by-one as you set it up.
But in the end, thereās still a fair bit of work - so if your current installation doesnāt need significant cleaning, Iād just go with the automatic route
Now, as far as running scripts is concerned - itās easy. Itās certainly something you should know, and writing scripts is often very very simple.
Try it with something stupidly simple:
Open your terminal.
cd ~/Desktop
touch simple.sh
you should now have the file on desktop.
Copy this text and paste it (text editor) in the file, then save it:
#!/usr/bin/env bash
date +"It's now %R" | cowthink
echo "Enter a random number from 1 to 200 (I won't look!)?"
read TIME
echo "Your number is $TIME!"
So now you have a script, but canāt run it.
Terminal again, on Desktop. Add the permission to āexecuteā which is ā+Xā: chmod +x simple.sh
Now if you double click that file, it will run (but youāll see nowt).
So run it in terminal (Start with a period)
./simple.sh (it should automcomplete if you hit tab after typing './si`).
Transferring settings to a new install can save a lot of time, as long as the existing profile has no issues. If one has a troublesome profile to begin with, copying to a new profile can transfer those issues aswell; which is probably not what anyone desires.
Well the question did really imply finding a simpler option to more or less transfer the system, in which case thatās going to work.
I agree with you, having done it once or twice, now I opt for a dual pane copying - keep it under control, starting with basics like my layout/themes and keyboard shortcutsā¦
Iām not sure about .xfce but I know Plasma has quite a lot thatās worth copying, and quite a lot thatās worth leaving behindā¦
I disagree with the thread title now, however, because the thread is discussing the whole system, pacman and AUR packages (interestingly ignoring Flatpak, there should be a flatpak list in there somewhereā¦) as well as just settings.
After that, you install Authy then copy in the ~/.config/Authy Desktop folder etcā¦ it depends how much time you will allocate the task.
@linux-aarhus will be finished in ten minutes, Iāll take half a day.
I donāt want to transfer the whole system since the laptop Iām using XFCE on is very old hardware from 2007 I only added RAM for total 3GB and SSD 120GB drive.
The laptops I want to make dual boot have Win 10 installed and are from around 2015/2017 with 8GB RAM and SSD drive as a primary boot and HDD has added storage.
Since Windooze 10 will end support soon and this laptops (I have 4 and the old 2007 one) do not support W11 and and I want to ditch Windooze anyway, I intend to have Manjaro XFCE (which I already use on my oldest laptop) on dual boot with W10.
Eventually in the future erase the Win10 (once support ends) and have Manjaro only.
Iām a casual user not advanced in any way.
I only want the same settings which are mostly visual (like icons, themes, keyboard shortcuts etc) on all laptops
I would like to install Manjaro form scratch install all apps I use and them ātransferā all these visual settings to the new installs so that the user experience is the same across the various laptops.
Something I could do over USB pen or FTP (using Filezilla) and baammm!
Have the same visual user expererince across different hardware laptops.
Something like setting Thunderbird which I recently started using across all laptops (since Mail 10 will end in 2024) and you export all Tbird config to all installs and thatās it.
On the topic of Thunderbird; I found it easy enough to transfer not only settings, but all mail aswell, to another machine (Linux to Linux). That saved having to wait for all mail to download from the servers again.
I already fresh installed latest updated Manjaro XFCE on dual boot with Win 10 successfully (I followed you guide also).
I already copied the backup files to an USB pen.
Do you recommend running the 3 files immediately after a fresh Manjaro install (after all updates)?
Or install all apps on the fresh install and them run it?
Iām a bit confused since the package files contain the repos, does this mean the apps will be installed after running the 2 package files and them run the config?