Manjaro Add a Storage Partition & Modify your System to Suit

Add a Storage Partition & Modify your System to Suit

From Manjaro
Revision as of 13:26, 28 September 2020 by Fhdk (talk | contribs) (→‎Configure the system to use new default storage directories: Using the file content template)

Introduction

My storage system was OK when I initially devised it, as it happens, the years have gone by & it had become inefficient & a bit messy. So, time for a makeover.

So I spent some hours reorganizing my partitions - 11 -> 12 hours of GParted work. During this time I removed the /swap partition; enlarged my / partition, it still had ~2GB of free space which should have been fine for the way I use my system.

A /swapfile [[1]] is to replace the /swap partition (see the previous link for the simple how-to on how to create a /swapfile). My /swapfile was located in the / partition.

I also shrunk my /home partition as near as small as I could with the size of the data it was holding, so that I could then create a new partition where that data will reside in future.

I had to create a new partition, then reboot into Manjaro, where I moved all of my personal storage data over to the new partition. Then reboot the GParted live CD & shrink my /home down to 20GB, which is far larger than it needs to be in my new layout, but I have the disk space to spare, so why not? (I could always change it with GParted in the future if I had to.)

My system then needed to be configured to work with these changes as I will go into below.

The new partition layout

/boot      - 102MB  ext2  (half full)
/          - 20GB  ext4  (carries the 4GB /swapfile & still has 5GB free)
/home      - 20GB  ext4  (12GB free)
/bdata     - 892GB  ext4


Manipulating the Partitions

The GParted boot CD (based on Debian) was used to delete /swap & to modify the size of all (bar /boot) of the partitions on the 1TB (931.51GB formatted) drive. I had to, delete, shrink, move, expand, create (reboot & move my personal data across from /home to the new /bdata , then reboot GParted) shrink, expand.

As previously mentioned, this took 11 -> 12 hours. The larger the partition & the more data involved the longer it takes to process a partition.


begin rant: As I harp on about in the forum with partition work, finish one job then setup the next job in your partitioning software. Don't give whatever software you are using a string of jobs to do & then tell it to do them all. Your time is valuable & your data is often too valuable to run the risk of corrupting it. Sometimes it is irreplaceable for those that don't backup (baby photos for instance.) /rant


Modifying the system to suit these changes

I had to comment out the call for mounting the /swap partition in /etc/fstab , change the path buttons in Worker (I'm probably the only one reading this that uses the wonderful Worker, so, for all that statement is worth...) to suit the new partition layout. For anyone doing the same thing you need to think about anything that you may have done that needs to be reconfigured to use these new paths (more on this later).

Then in the Terminal I used the blkid command to get the UUID of the new /bdata partition so I could add a call to it into the /etc/fstab :


[handy@jarmano ~]$ blkid
/dev/sda1: UUID="41c2c2b3-5ad8-43bc-9bf0-84d3b429127d" TYPE="ext2" 
/dev/sda2: LABEL="big.data" UUID="9fe95af9-529e-4f68-b83c-7fa9e7fb3ba1" TYPE="ext4" 
/dev/sda3: LABEL="my.system" UUID="6dfe5e6b-86b9-4301-b385-8cc3816ada8c" TYPE="ext4" 
/dev/sda4: LABEL="my.home" UUID="b993339d-dbb3-4fbd-adb4-e61baf43cd7f" TYPE="ext4" 
/dev/sdb1: LABEL="store" UUID="05e6f212-4003-430b-a7d9-a53d98fad0b5" TYPE="ext4" PARTUUID="8cb60e1f-8d16-4d9c-bccc-3a2cd5396836" 


As you may have noticed, the new partition was given the /dev/sda2: spot (which once belonged to /swap)

I Copied the UUID for the new partition into /etc/fstab & created a call for this new partition, like so:


UUID=9fe95af9-529e-4f68-b83c-7fa9e7fb3ba1 /mnt/bdata ext4 defaults      0       1


Then as root I made the directory /mnt/bdata , so that the new partition is accessible. You can do this in the Terminal like so (replace <directory.name> with the name you want to call your new partition:


sudo mkdir /mnt/<directory.name>


Due to GParted doing its work with root permissions we need to change the ownership (owner:group) of the new partition, which we do by modifying the ownership of the directory name (that was created in the last command above) from root:root to <user.name>:users. To do that use the following Terminal command:


sudo chown <user.name>:users  /mnt/<new.partition's.name>


Configure the system to use new default storage directories

Firstly, I had to check both the ~/.bash_profile & the /etc/profile files & modify the PATH variables where I had added paths that were now incorrect. Most users here won't have changed anything in these two files, though it is just too easy to do, to not check them for safeties sake. When looking at these files, check the PATH line for anything that relates to your moved storage directories. You probably won't have any differences unless you added them. These lines in my files follow, you will see where I have replaced the original paths with /mnt/bdata :

~/.bash_profile
PATH=$PATH:/mnt/bdata/scripts
export PATH
PATH=$PATH:~/games/ut2004
export PATH
PATH=$PATH:~/games/ut2004/System
export PATH
/etc/profile
# Set our default path
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/mnt/bdata/scripts:"
export PATH

Then I needed to change the paths for what are considered to be the standard default /home/<user>/ storage directories - Downloads, Video, Music & so on. I had previously changed these paths, also, I don't want to use capital letters in the beginning of their names.

If you have more than one user account on your system, then it would be best to use & edit:

~/.config/user-dirs.conf

If the above file doesn't exist, create it. Then copy mine (just below), editing it to suit your system/desires.

Having only one user account on my Manjaro setup, I delete the previously mentioned file (if it existed anyway) & modify:

/etc/xdg/user-dirs.defaults 

As its settings, under these circumstances (not having a ~/.config/user-dirs.conf ) will be global. Mine edited file follows:

~/.config/user-dirs.conf
# Default settings for user directories customised by handy :->
#
# The values are relative pathnames from the home directory and
# will be translated on a per-path-element basis into the users locale
DESKTOP=desktop
DOWNLOAD=/mnt/bdata/downloads
DOCUMENTS=/mnt/bdata/documents
MUSIC=/mnt/bdata/music
PICTURES=/mnt/bdata/pictures
VIDEOS=/mnt/bdata/videos

Once you have done this, check that you don't have new (likely empty) default directories in your ~/ that were created by the above file(s) on boot. Any such void files should be deleted after you have modified either the user based ~/.config/user-dirs.conf or the root based /etc/xdg/user-dirs.defaults files.

~/.bashrc may need some paths changed as well, depending on what you call from it.

I also had to tell qBittorent, Firefox (& the few other browsers I'm testing) where their particular download directories had moved to. Any other applications that were set to save data into the documents, or any other directory that has moved (or been created as a default, in either of the two directories above) will need to have their config's modified too. & so it goes...


Creating a /swapfile

Now, if you do choose to not have a /swap partition but you would still like to have swap space (which of course you can choose to easily have at any time in the future), then there is a very functional option available to you called a /swapfile. For simple information on how to set one up, have a look over here: [2]

Support

Following is a link to this page's forum counterpart where you can post any related feedback: Wiki Add a Storage Partition

Cookies help us deliver our services. By using our services, you agree to our use of cookies.