Can't enter in Ubuntu because fstab error
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
When I shut-down or restart the machine (VM) it won't log in to the system. I get the following error and then, continuous black-screen.
This is my fstab, I don't know why uid=1000 is wrong.
User with uid=1000 is the first user I've created when I installed Ubuntu. Its username is "laura".
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=9097fce3-f6e5-4708-9460-f40cf134d868 / ext4 auto,rw,nosuid,errors=remount-ro 0 1
# /backup was on /dev/sda4 during installation
UUID=a7f3aa62-0c91-491d-b2c6-237c6376f526 /backup ext4 auto,rw,uid=1000,noexec,defaults 0 2
# /home was on /dev/sda3 during installation
UUID=2892df69-b043-4087-bfe9-dc8acd17bfc5 /home ext4 auto,rwdefaults 0 2
# swap was on /dev/sda2 during installation
UUID=7cf3a7d1-f9a3-484c-8a34-2ccd5df333d4 none swap sw 0 0
ubuntu login fstab
New contributor
add a comment |
up vote
0
down vote
favorite
When I shut-down or restart the machine (VM) it won't log in to the system. I get the following error and then, continuous black-screen.
This is my fstab, I don't know why uid=1000 is wrong.
User with uid=1000 is the first user I've created when I installed Ubuntu. Its username is "laura".
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=9097fce3-f6e5-4708-9460-f40cf134d868 / ext4 auto,rw,nosuid,errors=remount-ro 0 1
# /backup was on /dev/sda4 during installation
UUID=a7f3aa62-0c91-491d-b2c6-237c6376f526 /backup ext4 auto,rw,uid=1000,noexec,defaults 0 2
# /home was on /dev/sda3 during installation
UUID=2892df69-b043-4087-bfe9-dc8acd17bfc5 /home ext4 auto,rwdefaults 0 2
# swap was on /dev/sda2 during installation
UUID=7cf3a7d1-f9a3-484c-8a34-2ccd5df333d4 none swap sw 0 0
ubuntu login fstab
New contributor
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
When I shut-down or restart the machine (VM) it won't log in to the system. I get the following error and then, continuous black-screen.
This is my fstab, I don't know why uid=1000 is wrong.
User with uid=1000 is the first user I've created when I installed Ubuntu. Its username is "laura".
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=9097fce3-f6e5-4708-9460-f40cf134d868 / ext4 auto,rw,nosuid,errors=remount-ro 0 1
# /backup was on /dev/sda4 during installation
UUID=a7f3aa62-0c91-491d-b2c6-237c6376f526 /backup ext4 auto,rw,uid=1000,noexec,defaults 0 2
# /home was on /dev/sda3 during installation
UUID=2892df69-b043-4087-bfe9-dc8acd17bfc5 /home ext4 auto,rwdefaults 0 2
# swap was on /dev/sda2 during installation
UUID=7cf3a7d1-f9a3-484c-8a34-2ccd5df333d4 none swap sw 0 0
ubuntu login fstab
New contributor
When I shut-down or restart the machine (VM) it won't log in to the system. I get the following error and then, continuous black-screen.
This is my fstab, I don't know why uid=1000 is wrong.
User with uid=1000 is the first user I've created when I installed Ubuntu. Its username is "laura".
# <file system> <mount point> <type> <options> <dump> <pass>
# / was on /dev/sda1 during installation
UUID=9097fce3-f6e5-4708-9460-f40cf134d868 / ext4 auto,rw,nosuid,errors=remount-ro 0 1
# /backup was on /dev/sda4 during installation
UUID=a7f3aa62-0c91-491d-b2c6-237c6376f526 /backup ext4 auto,rw,uid=1000,noexec,defaults 0 2
# /home was on /dev/sda3 during installation
UUID=2892df69-b043-4087-bfe9-dc8acd17bfc5 /home ext4 auto,rwdefaults 0 2
# swap was on /dev/sda2 during installation
UUID=7cf3a7d1-f9a3-484c-8a34-2ccd5df333d4 none swap sw 0 0
ubuntu login fstab
ubuntu login fstab
New contributor
New contributor
edited Nov 22 at 0:37
Rui F Ribeiro
38.3k1475126
38.3k1475126
New contributor
asked Nov 21 at 23:37
Sandrituky
112
112
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
The filesystem to be mounted on /backup
is declared of type ext4
. There is no mount option uid=
for Ext4 filesystems.
Either the filesystem is not Ext4, and in this case the 3rd field of the
fstab
entry needs to be changed to reflect the correct filesystem type, orThe option
uid=
needs to be removed.
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
The filesystem to be mounted on /backup
is declared of type ext4
. There is no mount option uid=
for Ext4 filesystems.
Either the filesystem is not Ext4, and in this case the 3rd field of the
fstab
entry needs to be changed to reflect the correct filesystem type, orThe option
uid=
needs to be removed.
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
add a comment |
up vote
2
down vote
accepted
The filesystem to be mounted on /backup
is declared of type ext4
. There is no mount option uid=
for Ext4 filesystems.
Either the filesystem is not Ext4, and in this case the 3rd field of the
fstab
entry needs to be changed to reflect the correct filesystem type, orThe option
uid=
needs to be removed.
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
The filesystem to be mounted on /backup
is declared of type ext4
. There is no mount option uid=
for Ext4 filesystems.
Either the filesystem is not Ext4, and in this case the 3rd field of the
fstab
entry needs to be changed to reflect the correct filesystem type, orThe option
uid=
needs to be removed.
The filesystem to be mounted on /backup
is declared of type ext4
. There is no mount option uid=
for Ext4 filesystems.
Either the filesystem is not Ext4, and in this case the 3rd field of the
fstab
entry needs to be changed to reflect the correct filesystem type, orThe option
uid=
needs to be removed.
answered Nov 21 at 23:59
AlexP
6,9391024
6,9391024
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
add a comment |
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
Thank you for the fast response! I didn't know about that. I will change the owner and permissions of the file system (/backup) then.
– Sandrituky
Nov 22 at 0:59
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
@Sandrituky: You are welcome.
– AlexP
Nov 22 at 1:00
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
You could also put the s back so it reads suid. So that it sets user id to 1000 like it most likely was in the begining.
– Michael Prokopec
Nov 22 at 1:40
add a comment |
Sandrituky is a new contributor. Be nice, and check out our Code of Conduct.
Sandrituky is a new contributor. Be nice, and check out our Code of Conduct.
Sandrituky is a new contributor. Be nice, and check out our Code of Conduct.
Sandrituky is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f483327%2fcant-enter-in-ubuntu-because-fstab-error%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown