You are Here:
Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section



Always Have To Mount SSD Drive

Author (Read 8311 times)

0 Members and 3 Guests are viewing this topic.

Re: Always Have To Mount SSD Drive
« Reply #4 on: July 24, 2020, 03:53:55 PM »
 

Şerban S.

  • Şerban
  • PayPal Supporter
  • I come here a lot
  • *****
  • 326
    Posts
  • Reputation: 16
  • Linux Lite Member
    • View Profile
    • Forum

  • CPU: Intel® Core™ i7-4790

  • MEMORY: 16Gb

  • VIDEO CARD: Intel® HD Graphics 4600 + NVidia GK107 (GeForce GT630 OEM)

  • Kernel: 5.x
[...] Always use our Help Manual before referring to 3rd party websites. Develops good habits and is OS specific with the right pictures.

Done! :)
"It's easy to die for an idea. It's way harder TO LIVE for your idea!"
Current Machine:
 Dell Precision T1700, 16 GB RAM, SSD Kingston A400, 480 GB.
Laptop:
 ASUS X200MA , Intel® Celeron® N2830, 2 GB RAM, SSD Kingston A400, 480 GB.
 

Re: Always Have To Mount SSD Drive
« Reply #3 on: July 24, 2020, 03:45:07 PM »
 

Jerry

  • Linux Lite Creator
  • Administrator
  • Platinum Level Poster
  • *****
  • 8775
    Posts
  • Reputation: 801
  • Linux Lite Member
    • View Profile
    • Linux Lite OS

  • CPU: Intel Core i9-10850K CPU @ 3.60GHz

  • MEMORY: 32Gb

  • VIDEO CARD: nVidia GeForce GTX 1650

  • Kernel: 5.x
Help Manual, Mounting Partitions. Always use our Help Manual before referring to 3rd party websites. Develops good habits and is OS specific with the right pictures.

Sent from my mobile phone using Tapatalk

 

Re: Always Have To Mount SSD Drive
« Reply #2 on: July 24, 2020, 03:31:47 PM »
 

Şerban S.

  • Şerban
  • PayPal Supporter
  • I come here a lot
  • *****
  • 326
    Posts
  • Reputation: 16
  • Linux Lite Member
    • View Profile
    • Forum

  • CPU: Intel® Core™ i7-4790

  • MEMORY: 16Gb

  • VIDEO CARD: Intel® HD Graphics 4600 + NVidia GK107 (GeForce GT630 OEM)

  • Kernel: 5.x
[...] Any suggestions? [...]

Hello! :)

Edit the /etc/fstab file.

https://www.linuxliteos.com/manual/install.html#mountpartdrives

You can use the following editors: Pluma; GEdit; MousePad; LeafPad.

Start a terminal window, copy/paste the code below than hit Enter:

Code: [Select]
sudo pluma /etc/fstab
If you have other preferences, replace Pluma with the editor you are used to.
Follow the instructions given in the article to get the UUID (GUID) of the drive.
After editing the file, save it then RESTART computer, in order for the changes to become effective.

SAMPLE:

Code: [Select]
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda2 during installation
UUID=48dfd786-b463-4d54-93d6-76d8e1e91e74 /               ext4    errors=remount-ro 0       1
# /boot/efi was on /dev/sda1 during installation
UUID=CF67-8C7A  /boot/efi       vfat    umask=0077      0       1
# /home was on /dev/sda3 during installation
UUID=ededc096-9e8b-4a7b-b074-8e0a4267034f /home           ext2    defaults        0       2
# /win was on /dev/sda4 during installation
UUID=1abd80b2-aaeb-4cf9-84fc-30f5203792f5 /win            ext4    defaults        0       2
# swap was on /dev/sda5 during installation
UUID=6d49fba9-a49d-4f59-9b6c-5eb7d91057f0 none            swap    sw              0       0

In my case, there are two partitions I mount using /etc/fstab:

UUID=ededc096-9e8b-4a7b-b074-8e0a4267034f /home           ext2    defaults        0       2

UUID=1abd80b2-aaeb-4cf9-84fc-30f5203792f5 /win            ext4    defaults        0       2

What you need to do is get the result from blkid command:

serban@T1700:~$ blkid
/dev/sda1: UUID="CF67-8C7A" TYPE="vfat" PARTUUID="c532f390-0f77-433b-9af0-7ea363071291"
/dev/sda2: UUID="48dfd786-b463-4d54-93d6-76d8e1e91e74" TYPE="ext4" PARTUUID="c70d5b86-a05c-4b1e-99dc-d311981baa2d"
/dev/sda3: UUID="ededc096-9e8b-4a7b-b074-8e0a4267034f" TYPE="ext2" PARTUUID="721b71b8-d5a7-4f13-80f8-10ffab030e69"
/dev/sda4: UUID="1abd80b2-aaeb-4cf9-84fc-30f5203792f5" TYPE="ext4" PARTUUID="1288d3e7-997c-4a90-b2e1-81dfb7c5a3d6"
/dev/sda5: UUID="6d49fba9-a49d-4f59-9b6c-5eb7d91057f0" TYPE="swap" PARTUUID="cd007861-002e-4af3-bdf9-56be0bd63efa"
serban@T1700:~$

After you get the UUID, copy one of the lines above, than paste INSTEAD of one of UUID of the two partitions above, the ones with the blue font.

That might look like that:

UUID=your-uuid /home           ext2    defaults        0       2

Instead of /home, it would be a good idea to use GPartEd to put a label to the drive, such as VBox
Instead of ext2, you can use whatever you think is appropriate.
I use ext2 for /home since it spares drive usage. Journalised filesystems such ext3, ext4 are journalised and this leads to many extra read/write operations.




Good luck! :)

« Last Edit: July 24, 2020, 03:52:50 PM by Şerban S. »
"It's easy to die for an idea. It's way harder TO LIVE for your idea!"
Current Machine:
 Dell Precision T1700, 16 GB RAM, SSD Kingston A400, 480 GB.
Laptop:
 ASUS X200MA , Intel® Celeron® N2830, 2 GB RAM, SSD Kingston A400, 480 GB.
 

Always Have To Mount SSD Drive
« Reply #1 on: July 24, 2020, 02:43:51 PM »
 

lc6529

  • Merchandise Supporter
  • New to Forums
  • *****
  • 40
    Posts
  • Reputation: 1
  • Linux Lite Member
    • View Profile

  • Kernel: 5.x
I recently added a 2 TB drive strictly to hold VirtualBox images.    For some reason the drive is not mounting automatically though I have it set to automount (at least I believe I have).

Anyway, the workaround is to mount when the desktop loads but that is annoying.

Any suggestions?

Attached are screenshots of the drive setup and settings.

 

 

-->
X Close Ad

Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section