LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 11-02-2015, 07:16 PM   #1
skoronesa
LQ Newbie
 
Registered: Nov 2015
Posts: 8

Rep: Reputation: Disabled
How do I set disk to mount on boot using GUI?


There ya go, that's my question. I have a storage drive that things like deluge are set to save to but they give me errors when they start up because my disk isn't mounted.
 
Old 11-02-2015, 08:16 PM   #2
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Hi
please read the linuxquestions FAQ on posting a question


you have given us NO - ZERO - NADA information that we can use

Operating system and it's version ?

What is this drive ?
a usb ?
a internal ?

is is formatted to a Microsoft Windows NTFS ?
or a linux format ?

How are you mounting this drive ?
udev?
fstab ?
how ?

that is 10 out of 20 ???????
 
Old 11-02-2015, 08:17 PM   #3
frieza
Senior Member
 
Registered: Feb 2002
Location: harvard, il
Distribution: Ubuntu 11.4,DD-WRT micro plus ssh,lfs-6.6,Fedora 15,Fedora 16
Posts: 3,233

Rep: Reputation: 406Reputation: 406Reputation: 406Reputation: 406Reputation: 406
welcome to LQ,

there really isn't a 'gui' per se to auto mount a drive, but then again it really isn't that hard to do so either
it involves creating a folder (as root) to be used as a mount point (assuming that hasn't already been done)
then (as root) edit the file /etc/fstab with your favorite text editor (text editor mind you, not word processor) and add a line for your new mount

the fstab looks like this

Code:
a 
#
# /etc/fstab
# Created by anaconda on Sat May  7 09:04:15 2011
#
# Accessible filesystems, by reference, are maintained under '/dev/disk'
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info
#
UUID=4ebe0939-5dba-4f1b-9fb0-dc8223eb7d28 /                       ext4    defaults                       1 1
UUID=917135c6-9ed1-4d10-b3ea-b26b32e1a9aa /media/storage          ext4    defaults                       1 2
UUID=bbe33dc3-0a1d-43cb-8874-c907b4954129 /media/stuff            ext4    defaults                       1 2
UUID=924799a9-04cc-4edf-bc82-136838fcfc4c swap                    swap    defaults                       0 0
UUID=BEB2-2BEE                            /media/drive            vfat    nosuid,uid=500,gid=500,noauto  0 0
tmpfs                   /dev/shm                tmpfs   defaults        0 0
devpts                  /dev/pts                devpts  gid=5,mode=620  0 0
sysfs                   /sys                    sysfs   defaults        0 0
proc                    /proc                   proc    defaults        0 0
192.168.2.3:/mnt/data	/mnt/lfs/mnt/data	nfs	defaults	0 0
#192.168.2.3:/home/hopper /mnt/hopper		nfs	defaults	0 0
#192.168.2.6:/home/hopper /mnt/pi		nfs	defaults	0 0
#UUID=c4745b64-8a58-11c8-87fd-8b885401eae3 /mnt/remove/5 	ext4	defaults	0 0
of course yours will lookd differnt, but it gives you an idea of what you are loking at

the colums are

device mountpoint filesystem options fs_freq fsck_passno

then next time you reboot it will auto mount
 
Old 11-02-2015, 08:40 PM   #4
skoronesa
LQ Newbie
 
Registered: Nov 2015
Posts: 8

Original Poster
Rep: Reputation: Disabled
Linux mint newest version, I reformatted last week.

I ended up finally finding a guide on google
I did a search from the start bar and found the disks menu
I selected the ntfs partition on the disk and unchecked the auto option
 
Old 11-03-2015, 01:52 AM   #5
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
for the benefit of those with a similar problem, reading this, i'd just like to point out:

the above is not a solution to the question originally asked.
it might be a requirement after taking the steps outlined bu frieza.
 
Old 11-03-2015, 06:20 PM   #6
skoronesa
LQ Newbie
 
Registered: Nov 2015
Posts: 8

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by ondoho View Post
for the benefit of those with a similar problem, reading this, i'd just like to point out:

the above is not a solution to the question originally asked.
it might be a requirement after taking the steps outlined bu frieza.
That's not true, it does work, at least for me. I did edit any files.
Attached Thumbnails
Click image for larger version

Name:	step 1.jpg
Views:	20
Size:	125.7 KB
ID:	19957   Click image for larger version

Name:	step 2.jpg
Views:	20
Size:	131.8 KB
ID:	19958   Click image for larger version

Name:	step 3.jpg
Views:	17
Size:	226.7 KB
ID:	19959  
 
Old 11-03-2015, 06:23 PM   #7
skoronesa
LQ Newbie
 
Registered: Nov 2015
Posts: 8

Original Poster
Rep: Reputation: Disabled
Step 1, open "disks" which can be found through the search function in the start bar

Step 2, select the correct disk and partition

Step 3, open "more actions" and uncheck "automatic mount options", "mount at startup" which is hidden by the yellow text box in the third picture should be checked, if it is not do so.

That's it. No manually editing fstab or using terminal.
 
Old 11-03-2015, 07:27 PM   #8
Fred Caro
Senior Member
 
Registered: May 2007
Posts: 1,007

Rep: Reputation: 167Reputation: 167
Yes you are manually editing fstab, just not on the cli.
 
Old 11-04-2015, 12:07 PM   #9
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Fred Caro View Post
Yes you are manually editing fstab, just not on the cli.
basically the gui is doing for you what frieza pointed out earlier.
i admit, it looks like someone did a good job on this utility.
 
Old 11-04-2015, 04:21 PM   #10
frieza
Senior Member
 
Registered: Feb 2002
Location: harvard, il
Distribution: Ubuntu 11.4,DD-WRT micro plus ssh,lfs-6.6,Fedora 15,Fedora 16
Posts: 3,233

Rep: Reputation: 406Reputation: 406Reputation: 406Reputation: 406Reputation: 406
Quote:
Originally Posted by ondoho View Post
basically the gui is doing for you what frieza pointed out earlier.
i admit, it looks like someone did a good job on this utility.
precisely, gui utilities are nice and all, but they are just front ends, and are not infallible, knowing the 'manual' way of doing a task is good to know in case the gui fails or does not allow you to do what you want to do.
 
Old 11-04-2015, 04:45 PM   #11
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
and the instructions for using
Gnome2
Gnome3
KDE4
XFCE
E19

are ALL!!!!! different
add to that there may or may NOT be the same tools installed on whatever the distro is

so
typing the commands into the terminal

ONE TIME

or

typing out 50 different set of instructions
 
Old 11-04-2015, 05:15 PM   #12
skoronesa
LQ Newbie
 
Registered: Nov 2015
Posts: 8

Original Poster
Rep: Reputation: Disabled
I wouldn't say this is manually doing it, using the gui automates a ton, splitting hairs there. Point is the simple user, you know the ones who currently use windows, are not going to switch to linux if they have to use a "command prompt".

I completely understand that terminal is close to universal for linux, but mint and ubuntu are the most popular and at some point we want mainstream adoption right?
 
Old 11-04-2015, 07:44 PM   #13
Fred Caro
Senior Member
 
Registered: May 2007
Posts: 1,007

Rep: Reputation: 167Reputation: 167
skoronesa-

no.
If you are used to the gui then you expect that. If you are faced with the cli but are unfamiliar with it you are a bit freaked.
Consider this, the gui presents you with lots of possibilities you have never heard of but the cli just gives you what you asked for- which is easier?

Fred.
 
Old 11-04-2015, 08:01 PM   #14
Emerson
LQ Sage
 
Registered: Nov 2004
Location: Saint Amant, Acadiana
Distribution: Gentoo ~amd64
Posts: 7,661

Rep: Reputation: Disabled
Try it on a remote computer.
 
Old 11-05-2015, 02:01 AM   #15
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by skoronesa View Post
mint and ubuntu are the most popular and at some point we want mainstream adoption right?
i don't want it.
i use a user-centric distro. one that gives me power over my system, and doesn't try to soothe me.
and i'm pretty sure i'm speaking for most other users here.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
linux GUI full disk encryption including /boot postcd Linux - Security 12 11-04-2014 12:05 AM
[SOLVED] Mount the disk drives at boot time kedarp Linux - Newbie 4 08-15-2012 11:19 PM
can't mount file system when trying to set up disk quotas rob_xx17 Linux - General 2 04-13-2006 07:16 AM
Cannot mount floppy after trying to create boot disk halfhaggis Linux - General 2 09-20-2003 02:11 AM
Linux boot disk + NTFS mount Freaksta Linux - General 2 04-15-2003 11:38 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 04:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration