Uninstall Linux Mint without deleting partition?
I've got a dual-boot system using Windows 7 and Linux Mint 13.
When I first installed Mint using the regular Mint installer, the installer did not give me the option of partitioning my drive, presumably because my computer already had 4 partitions.
I decided that I wanted to uninstall Mint and opt for Ubuntu instead, but I have no idea how to remove Mint! Every guide I look at tells me to just delete/reformat the Linux partition... But in my case, no separate partition exists.
linux partitioning linux-mint uninstall
add a comment |
I've got a dual-boot system using Windows 7 and Linux Mint 13.
When I first installed Mint using the regular Mint installer, the installer did not give me the option of partitioning my drive, presumably because my computer already had 4 partitions.
I decided that I wanted to uninstall Mint and opt for Ubuntu instead, but I have no idea how to remove Mint! Every guide I look at tells me to just delete/reformat the Linux partition... But in my case, no separate partition exists.
linux partitioning linux-mint uninstall
add a comment |
I've got a dual-boot system using Windows 7 and Linux Mint 13.
When I first installed Mint using the regular Mint installer, the installer did not give me the option of partitioning my drive, presumably because my computer already had 4 partitions.
I decided that I wanted to uninstall Mint and opt for Ubuntu instead, but I have no idea how to remove Mint! Every guide I look at tells me to just delete/reformat the Linux partition... But in my case, no separate partition exists.
linux partitioning linux-mint uninstall
I've got a dual-boot system using Windows 7 and Linux Mint 13.
When I first installed Mint using the regular Mint installer, the installer did not give me the option of partitioning my drive, presumably because my computer already had 4 partitions.
I decided that I wanted to uninstall Mint and opt for Ubuntu instead, but I have no idea how to remove Mint! Every guide I look at tells me to just delete/reformat the Linux partition... But in my case, no separate partition exists.
linux partitioning linux-mint uninstall
linux partitioning linux-mint uninstall
edited Jun 1 '14 at 3:25
Cristian Ciupitu
4,1392540
4,1392540
asked Jun 1 '14 at 0:26
user3525308user3525308
111
111
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Linux Mint must have installed in one of your partitions separately from windows. Start Linux Mint and on the terminal run this command: sudo blkid
You will need to enter the password. This will show all partitions and their types and labels.
To uninstall Linux mint you will need to boot the computer with a linux liveCD and format the partition with command or some utility like gparted. Alternatively, you may just delete all files from the command line after booting with linux liveCD.
If you want to install Ubuntu, you may just start Ubuntu install CD, choose the partition and select format partition choice. The installer will format it for you!
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
add a comment |
A option would be to
- Identify the partition where Linux Mint is installed, usually using something like
sudo fdisk -l. Now, let's suppose you analyzed the output from the previous command and identified the partition as/dev/sdu1. - Recreate the filesystem of the partition:
sudo mkfs.ext4 /dev/sdu1.
This way you'll wipe Linux Mint from the partition without deleting it.
add a comment |
It turns out that Linux Mint had somehow automatically installed using Wubi, and so I did an easy uninstall using that.
Mint was located in C:linuxmint.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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%2fsuperuser.com%2fquestions%2f762163%2funinstall-linux-mint-without-deleting-partition%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Linux Mint must have installed in one of your partitions separately from windows. Start Linux Mint and on the terminal run this command: sudo blkid
You will need to enter the password. This will show all partitions and their types and labels.
To uninstall Linux mint you will need to boot the computer with a linux liveCD and format the partition with command or some utility like gparted. Alternatively, you may just delete all files from the command line after booting with linux liveCD.
If you want to install Ubuntu, you may just start Ubuntu install CD, choose the partition and select format partition choice. The installer will format it for you!
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
add a comment |
Linux Mint must have installed in one of your partitions separately from windows. Start Linux Mint and on the terminal run this command: sudo blkid
You will need to enter the password. This will show all partitions and their types and labels.
To uninstall Linux mint you will need to boot the computer with a linux liveCD and format the partition with command or some utility like gparted. Alternatively, you may just delete all files from the command line after booting with linux liveCD.
If you want to install Ubuntu, you may just start Ubuntu install CD, choose the partition and select format partition choice. The installer will format it for you!
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
add a comment |
Linux Mint must have installed in one of your partitions separately from windows. Start Linux Mint and on the terminal run this command: sudo blkid
You will need to enter the password. This will show all partitions and their types and labels.
To uninstall Linux mint you will need to boot the computer with a linux liveCD and format the partition with command or some utility like gparted. Alternatively, you may just delete all files from the command line after booting with linux liveCD.
If you want to install Ubuntu, you may just start Ubuntu install CD, choose the partition and select format partition choice. The installer will format it for you!
Linux Mint must have installed in one of your partitions separately from windows. Start Linux Mint and on the terminal run this command: sudo blkid
You will need to enter the password. This will show all partitions and their types and labels.
To uninstall Linux mint you will need to boot the computer with a linux liveCD and format the partition with command or some utility like gparted. Alternatively, you may just delete all files from the command line after booting with linux liveCD.
If you want to install Ubuntu, you may just start Ubuntu install CD, choose the partition and select format partition choice. The installer will format it for you!
edited Jun 1 '14 at 2:01
answered Jun 1 '14 at 1:47
rnsornso
124115
124115
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
add a comment |
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
I don't think sudo is needed. Also lsblk might be a nicer option than blkid in this case.
– Cristian Ciupitu
Jun 1 '14 at 2:26
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
blkid gives partition types and labels also. lsblk gives sizes also but not labels. The OP can use both commands to see detailed information.
– rnso
Jun 1 '14 at 3:34
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
There's also findmnt.
– Cristian Ciupitu
Jun 1 '14 at 4:41
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
Knowing what finally happened will be useful for everybody.
– rnso
Jun 1 '14 at 16:26
add a comment |
A option would be to
- Identify the partition where Linux Mint is installed, usually using something like
sudo fdisk -l. Now, let's suppose you analyzed the output from the previous command and identified the partition as/dev/sdu1. - Recreate the filesystem of the partition:
sudo mkfs.ext4 /dev/sdu1.
This way you'll wipe Linux Mint from the partition without deleting it.
add a comment |
A option would be to
- Identify the partition where Linux Mint is installed, usually using something like
sudo fdisk -l. Now, let's suppose you analyzed the output from the previous command and identified the partition as/dev/sdu1. - Recreate the filesystem of the partition:
sudo mkfs.ext4 /dev/sdu1.
This way you'll wipe Linux Mint from the partition without deleting it.
add a comment |
A option would be to
- Identify the partition where Linux Mint is installed, usually using something like
sudo fdisk -l. Now, let's suppose you analyzed the output from the previous command and identified the partition as/dev/sdu1. - Recreate the filesystem of the partition:
sudo mkfs.ext4 /dev/sdu1.
This way you'll wipe Linux Mint from the partition without deleting it.
A option would be to
- Identify the partition where Linux Mint is installed, usually using something like
sudo fdisk -l. Now, let's suppose you analyzed the output from the previous command and identified the partition as/dev/sdu1. - Recreate the filesystem of the partition:
sudo mkfs.ext4 /dev/sdu1.
This way you'll wipe Linux Mint from the partition without deleting it.
answered Jun 1 '14 at 3:55
thiagowfxthiagowfx
1,11911215
1,11911215
add a comment |
add a comment |
It turns out that Linux Mint had somehow automatically installed using Wubi, and so I did an easy uninstall using that.
Mint was located in C:linuxmint.
add a comment |
It turns out that Linux Mint had somehow automatically installed using Wubi, and so I did an easy uninstall using that.
Mint was located in C:linuxmint.
add a comment |
It turns out that Linux Mint had somehow automatically installed using Wubi, and so I did an easy uninstall using that.
Mint was located in C:linuxmint.
It turns out that Linux Mint had somehow automatically installed using Wubi, and so I did an easy uninstall using that.
Mint was located in C:linuxmint.
answered Jun 3 '14 at 0:20
user3525308user3525308
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f762163%2funinstall-linux-mint-without-deleting-partition%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