How do I remount a filesystem as read/write?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3
in command line it returns not mounted or bad option
. Any help would be appreciated.
mount filesystem
add a comment |
I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3
in command line it returns not mounted or bad option
. Any help would be appreciated.
mount filesystem
add a comment |
I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3
in command line it returns not mounted or bad option
. Any help would be appreciated.
mount filesystem
I'm trying to mount an hfsplus filesystem in a Xubuntu 12.04 VM (kernel version 3.2.0-23-generic) but when I type mount -o remount,rw /dev/sdb3
in command line it returns not mounted or bad option
. Any help would be appreciated.
mount filesystem
mount filesystem
edited Aug 15 '18 at 6:29
mook765
4,47721333
4,47721333
asked Aug 14 '12 at 14:12
AlkthreeAlkthree
9672913
9672913
add a comment |
add a comment |
5 Answers
5
active
oldest
votes
The correct syntax is:
sudo mount -o remount,rw /partition/identifier /mount/point
Where mount/point
is /partition/identifier
's corresponding mountpoint, as listed by the following command:
mount -v | grep "^/" | awk '{print "nPartition identifier: " $1 "n Mountpoint: " $3}'
For example, say that the above command gives this:
Partition identifier: /dev/sda1
Mountpoint: /
Partition identifier: /dev/sda2
Mountpoint: /boot
Partition identifier: /dev/sda3
Mountpoint: /test
The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)
sudo umount /test
sudo umount /dev/sdb3
sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
Have you triedsudo mountall
?
– SirCharlo
Aug 14 '12 at 14:42
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
1
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
|
show 33 more comments
for busybox/android users:
you need to add a space (in contrast to normal usage) between 'remount' and 'rw':
mount -o remount, rw /
otherwise it won't work.
2
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
1
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
add a comment |
Running dmesg | grep hfs
showed that the filesystem was unmounted incorrectly, which I was able to repair using
fsck.hfsplus /dev/sdb3/
add a comment |
I have Dragonboard 410c
I connecting via adb
I wanted to mount the physical sdcard as RW.
the following worked for me.
adb root
adb shell
su
mount -o remount,rw /storage/sdcard1 /storage/sdcard1
So I can now access it in rw mode as /storage/sdcard1
nb. /storage/sdcard0 is emulated and is /sdcard
add a comment |
first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")
sudo ntfsfix /dev/sda7
before go to mount we need a Directory(file)
mkdir ~/Desktop/disk
now mount
sudo mount /dev/sda7 ~Desktop/disk
in this cause "sda7" is hard disk partition name,
now you read and write dis
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f175739%2fhow-do-i-remount-a-filesystem-as-read-write%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
5 Answers
5
active
oldest
votes
5 Answers
5
active
oldest
votes
active
oldest
votes
active
oldest
votes
The correct syntax is:
sudo mount -o remount,rw /partition/identifier /mount/point
Where mount/point
is /partition/identifier
's corresponding mountpoint, as listed by the following command:
mount -v | grep "^/" | awk '{print "nPartition identifier: " $1 "n Mountpoint: " $3}'
For example, say that the above command gives this:
Partition identifier: /dev/sda1
Mountpoint: /
Partition identifier: /dev/sda2
Mountpoint: /boot
Partition identifier: /dev/sda3
Mountpoint: /test
The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)
sudo umount /test
sudo umount /dev/sdb3
sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
Have you triedsudo mountall
?
– SirCharlo
Aug 14 '12 at 14:42
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
1
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
|
show 33 more comments
The correct syntax is:
sudo mount -o remount,rw /partition/identifier /mount/point
Where mount/point
is /partition/identifier
's corresponding mountpoint, as listed by the following command:
mount -v | grep "^/" | awk '{print "nPartition identifier: " $1 "n Mountpoint: " $3}'
For example, say that the above command gives this:
Partition identifier: /dev/sda1
Mountpoint: /
Partition identifier: /dev/sda2
Mountpoint: /boot
Partition identifier: /dev/sda3
Mountpoint: /test
The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)
sudo umount /test
sudo umount /dev/sdb3
sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
Have you triedsudo mountall
?
– SirCharlo
Aug 14 '12 at 14:42
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
1
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
|
show 33 more comments
The correct syntax is:
sudo mount -o remount,rw /partition/identifier /mount/point
Where mount/point
is /partition/identifier
's corresponding mountpoint, as listed by the following command:
mount -v | grep "^/" | awk '{print "nPartition identifier: " $1 "n Mountpoint: " $3}'
For example, say that the above command gives this:
Partition identifier: /dev/sda1
Mountpoint: /
Partition identifier: /dev/sda2
Mountpoint: /boot
Partition identifier: /dev/sda3
Mountpoint: /test
The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)
sudo umount /test
sudo umount /dev/sdb3
sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled
The correct syntax is:
sudo mount -o remount,rw /partition/identifier /mount/point
Where mount/point
is /partition/identifier
's corresponding mountpoint, as listed by the following command:
mount -v | grep "^/" | awk '{print "nPartition identifier: " $1 "n Mountpoint: " $3}'
For example, say that the above command gives this:
Partition identifier: /dev/sda1
Mountpoint: /
Partition identifier: /dev/sda2
Mountpoint: /boot
Partition identifier: /dev/sda3
Mountpoint: /test
The following would be the correct syntax. (We start by unmounting it, if it's already mounted.)
sudo umount /test
sudo umount /dev/sdb3
sudo mount -t hfsplus -o rw,remount -force /dev/sdb3 /media/untitled
edited Aug 15 '13 at 18:47
Richard
6,25183865
6,25183865
answered Aug 14 '12 at 14:15
SirCharloSirCharlo
30.5k75976
30.5k75976
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
Have you triedsudo mountall
?
– SirCharlo
Aug 14 '12 at 14:42
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
1
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
|
show 33 more comments
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
Have you triedsudo mountall
?
– SirCharlo
Aug 14 '12 at 14:42
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
1
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
Thanks for the response! I have been using sudo, forgot to include that. I'm by no means an advanced linux user, so I'm not exactly sure what I'm supposed to be seeing in /etc/fstab. However, when i type "df -h" it tells me that the hfsplus filesystem is mounted at /dev/sdb3
– Alkthree
Aug 14 '12 at 14:21
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
I see what you're saying now, "mount -v | grep ^/" returns "/devsdb3 on /media/untitled". I tried "sudo mount -o remount,rw /media/untitled" and got the same problem-not mounted or bad option.
– Alkthree
Aug 14 '12 at 14:32
Have you tried
sudo mountall
?– SirCharlo
Aug 14 '12 at 14:42
Have you tried
sudo mountall
?– SirCharlo
Aug 14 '12 at 14:42
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
Let's continue this discussion in chat..
– SirCharlo
Aug 14 '12 at 14:45
1
1
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
Oh come on! That simple.. Good for you! :P In order to help clean up the site, please post the steps you took as an answer to your question and then accept your answer. This will prevent your questions from showing up in the Unanswered section. Thank you!
– SirCharlo
Aug 14 '12 at 19:38
|
show 33 more comments
for busybox/android users:
you need to add a space (in contrast to normal usage) between 'remount' and 'rw':
mount -o remount, rw /
otherwise it won't work.
2
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
1
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
add a comment |
for busybox/android users:
you need to add a space (in contrast to normal usage) between 'remount' and 'rw':
mount -o remount, rw /
otherwise it won't work.
2
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
1
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
add a comment |
for busybox/android users:
you need to add a space (in contrast to normal usage) between 'remount' and 'rw':
mount -o remount, rw /
otherwise it won't work.
for busybox/android users:
you need to add a space (in contrast to normal usage) between 'remount' and 'rw':
mount -o remount, rw /
otherwise it won't work.
answered Mar 11 '16 at 11:10
coderofsalvationcoderofsalvation
36933
36933
2
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
1
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
add a comment |
2
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
1
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
2
2
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
I did not need an extra space on my Busybox implementation. Or did you mean busybox and Android? My busybox is within an embedded controller (not a smart phone)....
– wallyk
May 9 '16 at 22:22
1
1
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
Had to do this on plain Ubuntu too.
– DustWolf
Sep 2 '16 at 18:01
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
what a strange syntax
– Blauhirn
Feb 27 '18 at 21:09
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
@wallyk i found this out when I ssh'ed into my rooted android (busybox is a necessary app in the playstore). It might have been an old version of busybox, as it was android v2 dot something.
– coderofsalvation
Mar 12 '18 at 9:37
add a comment |
Running dmesg | grep hfs
showed that the filesystem was unmounted incorrectly, which I was able to repair using
fsck.hfsplus /dev/sdb3/
add a comment |
Running dmesg | grep hfs
showed that the filesystem was unmounted incorrectly, which I was able to repair using
fsck.hfsplus /dev/sdb3/
add a comment |
Running dmesg | grep hfs
showed that the filesystem was unmounted incorrectly, which I was able to repair using
fsck.hfsplus /dev/sdb3/
Running dmesg | grep hfs
showed that the filesystem was unmounted incorrectly, which I was able to repair using
fsck.hfsplus /dev/sdb3/
edited Aug 15 '12 at 17:26
user76204
answered Aug 15 '12 at 13:49
AlkthreeAlkthree
9672913
9672913
add a comment |
add a comment |
I have Dragonboard 410c
I connecting via adb
I wanted to mount the physical sdcard as RW.
the following worked for me.
adb root
adb shell
su
mount -o remount,rw /storage/sdcard1 /storage/sdcard1
So I can now access it in rw mode as /storage/sdcard1
nb. /storage/sdcard0 is emulated and is /sdcard
add a comment |
I have Dragonboard 410c
I connecting via adb
I wanted to mount the physical sdcard as RW.
the following worked for me.
adb root
adb shell
su
mount -o remount,rw /storage/sdcard1 /storage/sdcard1
So I can now access it in rw mode as /storage/sdcard1
nb. /storage/sdcard0 is emulated and is /sdcard
add a comment |
I have Dragonboard 410c
I connecting via adb
I wanted to mount the physical sdcard as RW.
the following worked for me.
adb root
adb shell
su
mount -o remount,rw /storage/sdcard1 /storage/sdcard1
So I can now access it in rw mode as /storage/sdcard1
nb. /storage/sdcard0 is emulated and is /sdcard
I have Dragonboard 410c
I connecting via adb
I wanted to mount the physical sdcard as RW.
the following worked for me.
adb root
adb shell
su
mount -o remount,rw /storage/sdcard1 /storage/sdcard1
So I can now access it in rw mode as /storage/sdcard1
nb. /storage/sdcard0 is emulated and is /sdcard
answered May 28 '16 at 2:36
David JonesDavid Jones
111
111
add a comment |
add a comment |
first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")
sudo ntfsfix /dev/sda7
before go to mount we need a Directory(file)
mkdir ~/Desktop/disk
now mount
sudo mount /dev/sda7 ~Desktop/disk
in this cause "sda7" is hard disk partition name,
now you read and write dis
New contributor
add a comment |
first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")
sudo ntfsfix /dev/sda7
before go to mount we need a Directory(file)
mkdir ~/Desktop/disk
now mount
sudo mount /dev/sda7 ~Desktop/disk
in this cause "sda7" is hard disk partition name,
now you read and write dis
New contributor
add a comment |
first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")
sudo ntfsfix /dev/sda7
before go to mount we need a Directory(file)
mkdir ~/Desktop/disk
now mount
sudo mount /dev/sda7 ~Desktop/disk
in this cause "sda7" is hard disk partition name,
now you read and write dis
New contributor
first, let fix NTFS problem (if you're you dual boot "windows and ubuntu")
sudo ntfsfix /dev/sda7
before go to mount we need a Directory(file)
mkdir ~/Desktop/disk
now mount
sudo mount /dev/sda7 ~Desktop/disk
in this cause "sda7" is hard disk partition name,
now you read and write dis
New contributor
New contributor
answered Apr 18 at 17:39
user9860532user9860532
111
111
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f175739%2fhow-do-i-remount-a-filesystem-as-read-write%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