this mount point is invalid. The /root directory must be on / file system
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm preparing CentOS 6.5 x86_64 system with following mount points
/usr/local – 10 GB or more ***
/var – 10 GB or more ***
/root – 200 MB or more ***
/tmp – 200 MB or more ***
The mount points are created successfully but the system does not allow me to complete installation and issues an error:
this mount point is invalid. The /root directory must be on / file system
linux partition centos
add a comment |
I'm preparing CentOS 6.5 x86_64 system with following mount points
/usr/local – 10 GB or more ***
/var – 10 GB or more ***
/root – 200 MB or more ***
/tmp – 200 MB or more ***
The mount points are created successfully but the system does not allow me to complete installation and issues an error:
this mount point is invalid. The /root directory must be on / file system
linux partition centos
When this error came ? What is the command ?
– SHW
Mar 25 '14 at 9:21
add a comment |
I'm preparing CentOS 6.5 x86_64 system with following mount points
/usr/local – 10 GB or more ***
/var – 10 GB or more ***
/root – 200 MB or more ***
/tmp – 200 MB or more ***
The mount points are created successfully but the system does not allow me to complete installation and issues an error:
this mount point is invalid. The /root directory must be on / file system
linux partition centos
I'm preparing CentOS 6.5 x86_64 system with following mount points
/usr/local – 10 GB or more ***
/var – 10 GB or more ***
/root – 200 MB or more ***
/tmp – 200 MB or more ***
The mount points are created successfully but the system does not allow me to complete installation and issues an error:
this mount point is invalid. The /root directory must be on / file system
linux partition centos
linux partition centos
edited Mar 9 at 13:22
Rui F Ribeiro
41.9k1483142
41.9k1483142
asked Mar 25 '14 at 7:37
User4283User4283
12017
12017
When this error came ? What is the command ?
– SHW
Mar 25 '14 at 9:21
add a comment |
When this error came ? What is the command ?
– SHW
Mar 25 '14 at 9:21
When this error came ? What is the command ?
– SHW
Mar 25 '14 at 9:21
When this error came ? What is the command ?
– SHW
Mar 25 '14 at 9:21
add a comment |
2 Answers
2
active
oldest
votes
The current version of the Anaconda installer in the Centos 6.5 repository is 13.21.215-1.
By checking out that source code, we can see that the installer has sanity checks for the storage configuration (starting at 1008 of storage/__init__.py
).
Part of those sanity checks assert that the following directories must be on the root filesystem and thus cannot be on separate mountpoints
mustbeonroot = ['/bin','/dev','/sbin','/etc','/lib','/root', '/mnt', 'lost+found', '/proc']
If you remove the separate mount you have created for /root (perhaps allocate the space to your / pointpoint if possible), the installer will likely allow you to continue.
add a comment |
please create a partition as / .
/ partition should be minimum 4.5 Gb in size.
Under / all directory will be created.
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why/root
cannot be placed on a separate partition not to put everything on the same. And where does that4.5Gb
come from exactly? In which way is it relevant here?
– lgeorget
Mar 25 '14 at 9:13
@lgeorget, I suppose the installer complains that there's nothing mounted on/
. You need a root filesystem in any case.
– Stéphane Chazelas
Mar 25 '14 at 10:39
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a/
mounting point.
– lgeorget
Mar 25 '14 at 11:57
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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%2f121318%2fthis-mount-point-is-invalid-the-root-directory-must-be-on-file-system%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The current version of the Anaconda installer in the Centos 6.5 repository is 13.21.215-1.
By checking out that source code, we can see that the installer has sanity checks for the storage configuration (starting at 1008 of storage/__init__.py
).
Part of those sanity checks assert that the following directories must be on the root filesystem and thus cannot be on separate mountpoints
mustbeonroot = ['/bin','/dev','/sbin','/etc','/lib','/root', '/mnt', 'lost+found', '/proc']
If you remove the separate mount you have created for /root (perhaps allocate the space to your / pointpoint if possible), the installer will likely allow you to continue.
add a comment |
The current version of the Anaconda installer in the Centos 6.5 repository is 13.21.215-1.
By checking out that source code, we can see that the installer has sanity checks for the storage configuration (starting at 1008 of storage/__init__.py
).
Part of those sanity checks assert that the following directories must be on the root filesystem and thus cannot be on separate mountpoints
mustbeonroot = ['/bin','/dev','/sbin','/etc','/lib','/root', '/mnt', 'lost+found', '/proc']
If you remove the separate mount you have created for /root (perhaps allocate the space to your / pointpoint if possible), the installer will likely allow you to continue.
add a comment |
The current version of the Anaconda installer in the Centos 6.5 repository is 13.21.215-1.
By checking out that source code, we can see that the installer has sanity checks for the storage configuration (starting at 1008 of storage/__init__.py
).
Part of those sanity checks assert that the following directories must be on the root filesystem and thus cannot be on separate mountpoints
mustbeonroot = ['/bin','/dev','/sbin','/etc','/lib','/root', '/mnt', 'lost+found', '/proc']
If you remove the separate mount you have created for /root (perhaps allocate the space to your / pointpoint if possible), the installer will likely allow you to continue.
The current version of the Anaconda installer in the Centos 6.5 repository is 13.21.215-1.
By checking out that source code, we can see that the installer has sanity checks for the storage configuration (starting at 1008 of storage/__init__.py
).
Part of those sanity checks assert that the following directories must be on the root filesystem and thus cannot be on separate mountpoints
mustbeonroot = ['/bin','/dev','/sbin','/etc','/lib','/root', '/mnt', 'lost+found', '/proc']
If you remove the separate mount you have created for /root (perhaps allocate the space to your / pointpoint if possible), the installer will likely allow you to continue.
edited Mar 25 '14 at 9:15
answered Mar 25 '14 at 8:05
Steven DSteven D
32.9k898108
32.9k898108
add a comment |
add a comment |
please create a partition as / .
/ partition should be minimum 4.5 Gb in size.
Under / all directory will be created.
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why/root
cannot be placed on a separate partition not to put everything on the same. And where does that4.5Gb
come from exactly? In which way is it relevant here?
– lgeorget
Mar 25 '14 at 9:13
@lgeorget, I suppose the installer complains that there's nothing mounted on/
. You need a root filesystem in any case.
– Stéphane Chazelas
Mar 25 '14 at 10:39
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a/
mounting point.
– lgeorget
Mar 25 '14 at 11:57
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
add a comment |
please create a partition as / .
/ partition should be minimum 4.5 Gb in size.
Under / all directory will be created.
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why/root
cannot be placed on a separate partition not to put everything on the same. And where does that4.5Gb
come from exactly? In which way is it relevant here?
– lgeorget
Mar 25 '14 at 9:13
@lgeorget, I suppose the installer complains that there's nothing mounted on/
. You need a root filesystem in any case.
– Stéphane Chazelas
Mar 25 '14 at 10:39
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a/
mounting point.
– lgeorget
Mar 25 '14 at 11:57
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
add a comment |
please create a partition as / .
/ partition should be minimum 4.5 Gb in size.
Under / all directory will be created.
please create a partition as / .
/ partition should be minimum 4.5 Gb in size.
Under / all directory will be created.
answered Mar 25 '14 at 9:08
pravin09pravin09
242313
242313
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why/root
cannot be placed on a separate partition not to put everything on the same. And where does that4.5Gb
come from exactly? In which way is it relevant here?
– lgeorget
Mar 25 '14 at 9:13
@lgeorget, I suppose the installer complains that there's nothing mounted on/
. You need a root filesystem in any case.
– Stéphane Chazelas
Mar 25 '14 at 10:39
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a/
mounting point.
– lgeorget
Mar 25 '14 at 11:57
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
add a comment |
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why/root
cannot be placed on a separate partition not to put everything on the same. And where does that4.5Gb
come from exactly? In which way is it relevant here?
– lgeorget
Mar 25 '14 at 9:13
@lgeorget, I suppose the installer complains that there's nothing mounted on/
. You need a root filesystem in any case.
– Stéphane Chazelas
Mar 25 '14 at 10:39
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a/
mounting point.
– lgeorget
Mar 25 '14 at 11:57
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why
/root
cannot be placed on a separate partition not to put everything on the same. And where does that 4.5Gb
come from exactly? In which way is it relevant here?– lgeorget
Mar 25 '14 at 9:13
The OP clearly wants separate mountpoints for some of his directories. The point is to understand why
/root
cannot be placed on a separate partition not to put everything on the same. And where does that 4.5Gb
come from exactly? In which way is it relevant here?– lgeorget
Mar 25 '14 at 9:13
@lgeorget, I suppose the installer complains that there's nothing mounted on
/
. You need a root filesystem in any case.– Stéphane Chazelas
Mar 25 '14 at 10:39
@lgeorget, I suppose the installer complains that there's nothing mounted on
/
. You need a root filesystem in any case.– Stéphane Chazelas
Mar 25 '14 at 10:39
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a
/
mounting point.– lgeorget
Mar 25 '14 at 11:57
@StephaneChazelas Sorry! I haven't noticed that the OP doesn't have a
/
mounting point.– lgeorget
Mar 25 '14 at 11:57
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
Agreed, looks like you need a / to start with.
– coteyr
Mar 25 '14 at 14:14
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f121318%2fthis-mount-point-is-invalid-the-root-directory-must-be-on-file-system%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
When this error came ? What is the command ?
– SHW
Mar 25 '14 at 9:21