![]() |
Need to authenticate before accessing internal drives - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Other (https://www.linuxliteos.com/forums/forumdisplay.php?fid=20) +--- Thread: Need to authenticate before accessing internal drives (/showthread.php?tid=2035) |
Re: Need to authenticate before accessing internal drives - paul1149 - 07-29-2015 Ok, I can see how text/code would be much better than a pic. Using multiple folders makes a lot of sense. That clears that up for me. I will try this and get back. Thank you. The only thing I can add about the first version of that post is that I used the forum url links directly from postimage, and probably they conflicted with SMF somehow. Re: Need to authenticate before accessing internal drives - paul1149 - 07-29-2015 Ok, I still have a problem. Here is the mount output: Code: paul@Precision:~$ sudo mount -a Here is the fstab (it had a blank line at the bottom): Code: # /etc/fstab: static file system information. And here is a pic of the permissions (all three folders had exactly the same permissions): ![]() If this prints well then the problem was with postimage's forum url. Thanks for your time. Re: Need to authenticate before accessing internal drives - Valtam - 07-29-2015 Those UUID's don't look right at all. They should be something like '4f9e3858-d3f2-49da-8504-c728c7ccee88' instead yours are like 'A0103FFB103FD74E' Can you check again with the sudo blkid command please. Also check the formatting of your fstab. Each block of info should be proceeded by a tab eg. You have: UUID=A0103FFB103FD74E /home/paul/seagate400 ntfs defaults,umask=007, uid=1000, gid=1000 0 0 Should be: UUID=D872AA8A72AA6D46 /home/paul/wd2000 ntfs defaults,umask=007,uid=1000,gid=1000 0 0 looks like you've just put a space instead of a tab. You also have spaces after these: umask=007, uid=1000, gid=1000 when there should be none. Should be: umask=007,uid=1000,gid=1000 Much to work on here. Re: Need to authenticate before accessing internal drives - Valtam - 07-29-2015 Permissions look good, just need to change the above mentioned fstab. Re: Need to authenticate before accessing internal drives - Valtam - 07-29-2015 (07-29-2015, 11:19 PM)paul1149 link Wrote:If this prints well then the problem was with postimage's forum url. Try to use imgur.com instead as the Guidelines state. Then you wont have any issues ![]() Re: Need to authenticate before accessing internal drives - paul1149 - 07-29-2015 Ok, bingo. I hadn't realized that lines in fstab must be contiguous, delimited only by tabs. Once I substituted tabs for spaces, and took out the spaces after the commas, I was in. Two folders were already mounted so I just rebooted to wipe the slate clean, and it's perfect now. I did note that the UUIDs looked different from those of the ext4 partitions on the system, so I double checked and it is accurate. If imgur is a hard and fast rule here let me know and I will comply. But I have to say that I detest the interface there. Postimage.org is so very simple. To get it to work one has to use the Direct Link, though, and then submit it to this forum's image insert facility. Thanks so much for lending me your valuable time. BTW, I installed LL on an HP netbook today. Went very well. Speaking of fstab, though, is it necessary to go through the TRIM procedure there and via command line for the sake of the SSD? Paul Re: Need to authenticate before accessing internal drives - Valtam - 07-29-2015 fastb - glad it's working. Only reboot once the sudo mount -a stops producing errors. If you try to reboot on a broken fstab, you won't be able to boot your pc ![]() Imgur - it's not a hard and fast rule, but it would have saved you and I some time. We always try to give the best advice for members ![]() Trim SSD - use this command to check if Trim is supported: Code: sudo hdparm -I /dev/sda | grep "TRIM supported" If it is, follow the guide in the Help Manual ![]() Type carefully in the fstab and always check with sudo mount -a before rebooting ![]() Re: Need to authenticate before accessing internal drives - Valtam - 07-30-2015 Also re. postimage.org the quality is terrible: Your image on postimage.org: ![]() Same permissions tab on imgur.com: ![]() Re: Need to authenticate before accessing internal drives - paul1149 - 07-30-2015 Thanks again. Yes, I did find out the hard way that fstab really is finicky. But it was easy to go in and edit it via the install disk. I will continue then with postimage, but I will preview each post before sending it in. Thanks for that TRIM command. I don't think I saw that in the manual, and will save it in my notes. And thanks for your work on LL. BW, Paul Re: Need to authenticate before accessing internal drives - Valtam - 07-30-2015 You're welcome Paul. I cringe at your choice of postimage.org, but we can't force you not to use it. Happy computing ![]() |