Can't mount /mnt/x after rebootForce unmount of NFS-mounted directoryHow to use Phone Modem with smstools3 on Ubuntu 12.04How to mount a host directory in a Docker containerdebian wheezy - how to mount unused disks?install debian after boot?Uboot : mount can't find root partition in /etc/fstabfstab mount network share with guestContent gets deleted from a mountpoint after rebootmount - can't find /dev/sdc in fstab error
What's the relationship betweeen MS-DOS and XENIX?
Problem with GFCI at start of circuit with both lights and two receptacles
Why can't I see 1861 / 1871 census entries on Freecen website when I can see them on Ancestry website?
Get the full text of a long request
What should I do if actually I found a serious flaw in someone's PhD thesis and an article derived from that PhD thesis?
How to creat a report of reacurring donors
A Magic Diamond
If I am sleeping clutching on to something, how easy is it to steal that item?
Are there any rules on how characters go from 0th to 1st level in a class?
Output with the same length always
Will some rockets really collapse under their own weight?
μονάδαι as plural form of μονάς
Why does "auf der Strecke bleiben" mean "to fall by the wayside"?
Why does this image of cyclocarbon look like a nonagon?
Adjective or adverb before another adjective
Did Michelle Obama have a staff of 23; and Melania have a staff of 4?
Would getting a natural 20 with a penalty still count as a critical hit?
Ending a line of dialogue with "?!": Allowed or obnoxious?
How to train a replacement without them knowing?
Reducing contention in thread-safe LruCache
Why do we use low resistance cables to minimize power losses?
Are there any OR challenges that are similar to kaggle's competitions?
Animate flow lines of time-dependent 3D dynamical system
How to prevent criminal gangs from making/buying guns?
Can't mount /mnt/x after reboot
Force unmount of NFS-mounted directoryHow to use Phone Modem with smstools3 on Ubuntu 12.04How to mount a host directory in a Docker containerdebian wheezy - how to mount unused disks?install debian after boot?Uboot : mount can't find root partition in /etc/fstabfstab mount network share with guestContent gets deleted from a mountpoint after rebootmount - can't find /dev/sdc in fstab error
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
After rebooting my server, I saw through nagios that my /mnt/gimli was only reachable on read-only mode. But I need it to be writable because some backups go there.
To have in in rw mode, I tried unmounting and remounting /mnt/gimli, but got the error : "mount: can't find UUID=f1953589-1c80-466b-91ad-6cfed92a4c38"
When I do df -hT, I can see its not mounted anymore, but I can't remount it.
I don't really know what to try since it's an important part of the sever and I don't want to mess it all up.
Here's the output of blkid
/dev/vda1: UUID="d71f1001-8e5e-416a-b3f1-16000626ebd9" TYPE="ext2" PTTYPE="dos" PARTUUID="00065439-01"
/dev/vda2: UUID="a656b9da-cc00-46e3-ae1e-be47c4ff6061" TYPE="ext4" PARTUUID="00065439-02"
/dev/vda3: UUID="b1989379-cd66-4fce-97d3-ec9cb73d2d02" TYPE="swap" PARTUUID="00065439-03"
/dev/vda5: UUID="89b7401f-f8eb-43cb-af11-a8a9a1811080" TYPE="ext4" PARTUUID="00065439-05"
/dev/vdb1: UUID="d8c920ae-69e2-4fde-9f46-a897bb680234" TYPE="ext4" PARTUUID="87b503d3-01"
/dev/vdc1: UUID="cc668f71-c51e-4b92-aae7-871b3bae9c16" TYPE="ext4" PARTUUID="7f7cf5dd-01"
And the output of cat /etc/fstab :
# /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>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=a656b9da-cc00-46e3-ae1e-be47c4ff6061 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
#d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
# /var was on /dev/sda5 during installation
/dev/vda5 /var ext4 defaults 0 2
# swap was on /dev/sda3 during installation
/dev/vda3 none swap sw 0 0
/dev/vdc1 /mnt/home ext4 defaults 0 2
/dev/vdb1 /mnt/data ext4 defaults 0 2
UUID=f1953589-1c80-466b-91ad-6cfed92a4c38 /mnt/gimli ext4 _netdev,defaults 0 0
#/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
#/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
# /dev/sdb1 /mnt/data ext4 defaults 0 2
#UUID=6c9a4b04-fd18-4682-a174-a0d158315be4 /mnt/home ext4 defaults 0 2
#gimli:/volume1/backups /mnt/gimli nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/serveurs /mnt/sauvegarde nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/versioning /mnt/versioning nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/old /mnt/old nfs rsize=8192,wsize=8192 0 0
UUID=d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
So, I would like to be able to remount /mnt/gimli as it was, and would also like to know why it's the only one appearing as UUID on my fstab, and not as /dev/xxx
Does someone know how I could do it ?
debian uuid mount fstab blkid
add a comment |
After rebooting my server, I saw through nagios that my /mnt/gimli was only reachable on read-only mode. But I need it to be writable because some backups go there.
To have in in rw mode, I tried unmounting and remounting /mnt/gimli, but got the error : "mount: can't find UUID=f1953589-1c80-466b-91ad-6cfed92a4c38"
When I do df -hT, I can see its not mounted anymore, but I can't remount it.
I don't really know what to try since it's an important part of the sever and I don't want to mess it all up.
Here's the output of blkid
/dev/vda1: UUID="d71f1001-8e5e-416a-b3f1-16000626ebd9" TYPE="ext2" PTTYPE="dos" PARTUUID="00065439-01"
/dev/vda2: UUID="a656b9da-cc00-46e3-ae1e-be47c4ff6061" TYPE="ext4" PARTUUID="00065439-02"
/dev/vda3: UUID="b1989379-cd66-4fce-97d3-ec9cb73d2d02" TYPE="swap" PARTUUID="00065439-03"
/dev/vda5: UUID="89b7401f-f8eb-43cb-af11-a8a9a1811080" TYPE="ext4" PARTUUID="00065439-05"
/dev/vdb1: UUID="d8c920ae-69e2-4fde-9f46-a897bb680234" TYPE="ext4" PARTUUID="87b503d3-01"
/dev/vdc1: UUID="cc668f71-c51e-4b92-aae7-871b3bae9c16" TYPE="ext4" PARTUUID="7f7cf5dd-01"
And the output of cat /etc/fstab :
# /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>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=a656b9da-cc00-46e3-ae1e-be47c4ff6061 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
#d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
# /var was on /dev/sda5 during installation
/dev/vda5 /var ext4 defaults 0 2
# swap was on /dev/sda3 during installation
/dev/vda3 none swap sw 0 0
/dev/vdc1 /mnt/home ext4 defaults 0 2
/dev/vdb1 /mnt/data ext4 defaults 0 2
UUID=f1953589-1c80-466b-91ad-6cfed92a4c38 /mnt/gimli ext4 _netdev,defaults 0 0
#/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
#/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
# /dev/sdb1 /mnt/data ext4 defaults 0 2
#UUID=6c9a4b04-fd18-4682-a174-a0d158315be4 /mnt/home ext4 defaults 0 2
#gimli:/volume1/backups /mnt/gimli nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/serveurs /mnt/sauvegarde nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/versioning /mnt/versioning nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/old /mnt/old nfs rsize=8192,wsize=8192 0 0
UUID=d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
So, I would like to be able to remount /mnt/gimli as it was, and would also like to know why it's the only one appearing as UUID on my fstab, and not as /dev/xxx
Does someone know how I could do it ?
debian uuid mount fstab blkid
add a comment |
After rebooting my server, I saw through nagios that my /mnt/gimli was only reachable on read-only mode. But I need it to be writable because some backups go there.
To have in in rw mode, I tried unmounting and remounting /mnt/gimli, but got the error : "mount: can't find UUID=f1953589-1c80-466b-91ad-6cfed92a4c38"
When I do df -hT, I can see its not mounted anymore, but I can't remount it.
I don't really know what to try since it's an important part of the sever and I don't want to mess it all up.
Here's the output of blkid
/dev/vda1: UUID="d71f1001-8e5e-416a-b3f1-16000626ebd9" TYPE="ext2" PTTYPE="dos" PARTUUID="00065439-01"
/dev/vda2: UUID="a656b9da-cc00-46e3-ae1e-be47c4ff6061" TYPE="ext4" PARTUUID="00065439-02"
/dev/vda3: UUID="b1989379-cd66-4fce-97d3-ec9cb73d2d02" TYPE="swap" PARTUUID="00065439-03"
/dev/vda5: UUID="89b7401f-f8eb-43cb-af11-a8a9a1811080" TYPE="ext4" PARTUUID="00065439-05"
/dev/vdb1: UUID="d8c920ae-69e2-4fde-9f46-a897bb680234" TYPE="ext4" PARTUUID="87b503d3-01"
/dev/vdc1: UUID="cc668f71-c51e-4b92-aae7-871b3bae9c16" TYPE="ext4" PARTUUID="7f7cf5dd-01"
And the output of cat /etc/fstab :
# /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>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=a656b9da-cc00-46e3-ae1e-be47c4ff6061 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
#d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
# /var was on /dev/sda5 during installation
/dev/vda5 /var ext4 defaults 0 2
# swap was on /dev/sda3 during installation
/dev/vda3 none swap sw 0 0
/dev/vdc1 /mnt/home ext4 defaults 0 2
/dev/vdb1 /mnt/data ext4 defaults 0 2
UUID=f1953589-1c80-466b-91ad-6cfed92a4c38 /mnt/gimli ext4 _netdev,defaults 0 0
#/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
#/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
# /dev/sdb1 /mnt/data ext4 defaults 0 2
#UUID=6c9a4b04-fd18-4682-a174-a0d158315be4 /mnt/home ext4 defaults 0 2
#gimli:/volume1/backups /mnt/gimli nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/serveurs /mnt/sauvegarde nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/versioning /mnt/versioning nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/old /mnt/old nfs rsize=8192,wsize=8192 0 0
UUID=d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
So, I would like to be able to remount /mnt/gimli as it was, and would also like to know why it's the only one appearing as UUID on my fstab, and not as /dev/xxx
Does someone know how I could do it ?
debian uuid mount fstab blkid
After rebooting my server, I saw through nagios that my /mnt/gimli was only reachable on read-only mode. But I need it to be writable because some backups go there.
To have in in rw mode, I tried unmounting and remounting /mnt/gimli, but got the error : "mount: can't find UUID=f1953589-1c80-466b-91ad-6cfed92a4c38"
When I do df -hT, I can see its not mounted anymore, but I can't remount it.
I don't really know what to try since it's an important part of the sever and I don't want to mess it all up.
Here's the output of blkid
/dev/vda1: UUID="d71f1001-8e5e-416a-b3f1-16000626ebd9" TYPE="ext2" PTTYPE="dos" PARTUUID="00065439-01"
/dev/vda2: UUID="a656b9da-cc00-46e3-ae1e-be47c4ff6061" TYPE="ext4" PARTUUID="00065439-02"
/dev/vda3: UUID="b1989379-cd66-4fce-97d3-ec9cb73d2d02" TYPE="swap" PARTUUID="00065439-03"
/dev/vda5: UUID="89b7401f-f8eb-43cb-af11-a8a9a1811080" TYPE="ext4" PARTUUID="00065439-05"
/dev/vdb1: UUID="d8c920ae-69e2-4fde-9f46-a897bb680234" TYPE="ext4" PARTUUID="87b503d3-01"
/dev/vdc1: UUID="cc668f71-c51e-4b92-aae7-871b3bae9c16" TYPE="ext4" PARTUUID="7f7cf5dd-01"
And the output of cat /etc/fstab :
# /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>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=a656b9da-cc00-46e3-ae1e-be47c4ff6061 / ext4 errors=remount-ro 0 1
# /boot was on /dev/sda1 during installation
#d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
# /var was on /dev/sda5 during installation
/dev/vda5 /var ext4 defaults 0 2
# swap was on /dev/sda3 during installation
/dev/vda3 none swap sw 0 0
/dev/vdc1 /mnt/home ext4 defaults 0 2
/dev/vdb1 /mnt/data ext4 defaults 0 2
UUID=f1953589-1c80-466b-91ad-6cfed92a4c38 /mnt/gimli ext4 _netdev,defaults 0 0
#/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
#/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
# /dev/sdb1 /mnt/data ext4 defaults 0 2
#UUID=6c9a4b04-fd18-4682-a174-a0d158315be4 /mnt/home ext4 defaults 0 2
#gimli:/volume1/backups /mnt/gimli nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/serveurs /mnt/sauvegarde nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/versioning /mnt/versioning nfs rsize=8192,wsize=8192 0 0
#gimli:/volume1/old /mnt/old nfs rsize=8192,wsize=8192 0 0
UUID=d71f1001-8e5e-416a-b3f1-16000626ebd9 /boot ext2 defaults 0 2
So, I would like to be able to remount /mnt/gimli as it was, and would also like to know why it's the only one appearing as UUID on my fstab, and not as /dev/xxx
Does someone know how I could do it ?
debian uuid mount fstab blkid
debian uuid mount fstab blkid
asked Mar 27 at 12:56
EthwallEthwall
63 bronze badges
63 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I've fixed this.
Since it was a Synology, I needed the iscsid service to run, which was missing.
I've restarted open-iscsi which wasn't running, and it was this service which ran iscsis.service.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f55377758%2fcant-mount-mnt-x-after-reboot%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I've fixed this.
Since it was a Synology, I needed the iscsid service to run, which was missing.
I've restarted open-iscsi which wasn't running, and it was this service which ran iscsis.service.
add a comment |
I've fixed this.
Since it was a Synology, I needed the iscsid service to run, which was missing.
I've restarted open-iscsi which wasn't running, and it was this service which ran iscsis.service.
add a comment |
I've fixed this.
Since it was a Synology, I needed the iscsid service to run, which was missing.
I've restarted open-iscsi which wasn't running, and it was this service which ran iscsis.service.
I've fixed this.
Since it was a Synology, I needed the iscsid service to run, which was missing.
I've restarted open-iscsi which wasn't running, and it was this service which ran iscsis.service.
answered Mar 28 at 13:05
EthwallEthwall
63 bronze badges
63 bronze badges
add a comment |
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- 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%2fstackoverflow.com%2fquestions%2f55377758%2fcant-mount-mnt-x-after-reboot%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