Errors when attempting to format and partition SSDIs it safe to install the / partition on an SSD?How do I...
Why does academia still use scientific journals and not peer-reviewed government funded alternatives?
Error message with tabularx
How can Republicans who favour free markets, consistently express anger when they don't like the outcome of that choice?
Do I have to worry about players making “bad” choices on level up?
Are Boeing 737-800’s grounded?
How to creep the reader out with what seems like a normal person?
Rivers without rain
In order to check if a field is required or not, is the result of isNillable method sufficient?
Phrase for the opposite of "foolproof"
What is the strongest case that can be made in favour of the UK regaining some control over fishing policy after Brexit?
What are the potential pitfalls when using metals as a currency?
Was there a shared-world project before "Thieves World"?
How to stop co-workers from teasing me because I know Russian?
What is Niska's accent?
The Defining Moment
Will tsunami waves travel forever if there was no land?
How come there are so many candidates for the 2020 Democratic party presidential nomination?
Does Gita support doctrine of eternal cycle of birth and death for evil people?
How can I place the product on a social media post better?
what is the sudo password for a --disabled-password user
Apply MapThread to all but one variable
How to reduce LED flash rate (frequency)
Pulling the rope with one hand is as heavy as with two hands?
What route did the Hindenburg take when traveling from Germany to the U.S.?
Errors when attempting to format and partition SSD
Is it safe to install the / partition on an SSD?How do I format my 24gb SSD for ubuntu?Cannot create partitionMessy partitions: How do I fix my HDD and SSD partitions from a USB?How do I partition my SSD to benefit of the speed?Error while deleting partitionInstalling Ubuntu 16.04 on 120Gb ssd and 500Gb hdd partitioning [ CLOSED ]Unable to format/partition secondary SSD in ThinkPad X240Ubuntu installer does not detect the PCIe SSD partitionNeed advice for cloning SSD to new SSD with dual boot multi partition
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I've recently downloaded Ubuntu with the hopes of using it as an alternative to Windows on an old desktop of mine, which features an 80GB HDD and a 256GB SSD. I've installed Ubuntu on the HDD, and have been trying to have access to the SSD in any capacity. It was previously loaded with a bunch of things I've since backed up elsewhere, so I went and formatted it using the Disks utility.
After formatting it looks like this:
I cannot find the disk in any fashion to copy files to it or use it in any fashion. I looked into it, and it was suggested that I attempt to put in partitions, specifically an Ext4 one, but whenever I try I get an error that reads
Don't know how to create partitions of partition table type `(null)' (udisks-error-quark,0)
I'm really not sure where to go from here. I probably should have installed Ubuntu onto the SSD to begin with, as it is the drive I want as my main for this computer, but having made the error to begin with, I'm not wholly sure what to do now. Any help is greatly appreciated.
partitioning
add a comment |
I've recently downloaded Ubuntu with the hopes of using it as an alternative to Windows on an old desktop of mine, which features an 80GB HDD and a 256GB SSD. I've installed Ubuntu on the HDD, and have been trying to have access to the SSD in any capacity. It was previously loaded with a bunch of things I've since backed up elsewhere, so I went and formatted it using the Disks utility.
After formatting it looks like this:
I cannot find the disk in any fashion to copy files to it or use it in any fashion. I looked into it, and it was suggested that I attempt to put in partitions, specifically an Ext4 one, but whenever I try I get an error that reads
Don't know how to create partitions of partition table type `(null)' (udisks-error-quark,0)
I'm really not sure where to go from here. I probably should have installed Ubuntu onto the SSD to begin with, as it is the drive I want as my main for this computer, but having made the error to begin with, I'm not wholly sure what to do now. Any help is greatly appreciated.
partitioning
add a comment |
I've recently downloaded Ubuntu with the hopes of using it as an alternative to Windows on an old desktop of mine, which features an 80GB HDD and a 256GB SSD. I've installed Ubuntu on the HDD, and have been trying to have access to the SSD in any capacity. It was previously loaded with a bunch of things I've since backed up elsewhere, so I went and formatted it using the Disks utility.
After formatting it looks like this:
I cannot find the disk in any fashion to copy files to it or use it in any fashion. I looked into it, and it was suggested that I attempt to put in partitions, specifically an Ext4 one, but whenever I try I get an error that reads
Don't know how to create partitions of partition table type `(null)' (udisks-error-quark,0)
I'm really not sure where to go from here. I probably should have installed Ubuntu onto the SSD to begin with, as it is the drive I want as my main for this computer, but having made the error to begin with, I'm not wholly sure what to do now. Any help is greatly appreciated.
partitioning
I've recently downloaded Ubuntu with the hopes of using it as an alternative to Windows on an old desktop of mine, which features an 80GB HDD and a 256GB SSD. I've installed Ubuntu on the HDD, and have been trying to have access to the SSD in any capacity. It was previously loaded with a bunch of things I've since backed up elsewhere, so I went and formatted it using the Disks utility.
After formatting it looks like this:
I cannot find the disk in any fashion to copy files to it or use it in any fashion. I looked into it, and it was suggested that I attempt to put in partitions, specifically an Ext4 one, but whenever I try I get an error that reads
Don't know how to create partitions of partition table type `(null)' (udisks-error-quark,0)
I'm really not sure where to go from here. I probably should have installed Ubuntu onto the SSD to begin with, as it is the drive I want as my main for this computer, but having made the error to begin with, I'm not wholly sure what to do now. Any help is greatly appreciated.
partitioning
partitioning
edited Aug 28 '18 at 10:24
phuclv
335326
335326
asked Jun 13 '17 at 11:14
Brett LovelyBrett Lovely
1112
1112
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
It looks like the drive is mounting, but Ubuntu is not seeing a partition table on the drive. To fix this, you will need gParted. You can install it by opening a terminal and typing:
sudo apt-get install gparted
WARNING: The following will erase any data you may have on the drive.
- Run gParted.
- Select your disk from the drop down box in the upper right corner. In your case it would be /dev/sda.
- Under the "Device" menu, select "Create Partition Table"
- A warning dialog will be displayed, and it will ask you to select a partition table type. Select "msdos".
- Click Apply.
gParted will now create an new partition table on your SSD. Once that operation is complete, you can format the drive.
I hope this helps!
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
add a comment |
- Find the name of the partition by using
lsblk
orfdisk -l
. Let's say it issdc1
. - Unmount that partition, if mounted:
sudo umount /dev/sdc1
- Format the partition
sudo dd if=/dev/zero of=/dev/sdc bs=4M
.
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%2f924910%2ferrors-when-attempting-to-format-and-partition-ssd%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
It looks like the drive is mounting, but Ubuntu is not seeing a partition table on the drive. To fix this, you will need gParted. You can install it by opening a terminal and typing:
sudo apt-get install gparted
WARNING: The following will erase any data you may have on the drive.
- Run gParted.
- Select your disk from the drop down box in the upper right corner. In your case it would be /dev/sda.
- Under the "Device" menu, select "Create Partition Table"
- A warning dialog will be displayed, and it will ask you to select a partition table type. Select "msdos".
- Click Apply.
gParted will now create an new partition table on your SSD. Once that operation is complete, you can format the drive.
I hope this helps!
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
add a comment |
It looks like the drive is mounting, but Ubuntu is not seeing a partition table on the drive. To fix this, you will need gParted. You can install it by opening a terminal and typing:
sudo apt-get install gparted
WARNING: The following will erase any data you may have on the drive.
- Run gParted.
- Select your disk from the drop down box in the upper right corner. In your case it would be /dev/sda.
- Under the "Device" menu, select "Create Partition Table"
- A warning dialog will be displayed, and it will ask you to select a partition table type. Select "msdos".
- Click Apply.
gParted will now create an new partition table on your SSD. Once that operation is complete, you can format the drive.
I hope this helps!
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
add a comment |
It looks like the drive is mounting, but Ubuntu is not seeing a partition table on the drive. To fix this, you will need gParted. You can install it by opening a terminal and typing:
sudo apt-get install gparted
WARNING: The following will erase any data you may have on the drive.
- Run gParted.
- Select your disk from the drop down box in the upper right corner. In your case it would be /dev/sda.
- Under the "Device" menu, select "Create Partition Table"
- A warning dialog will be displayed, and it will ask you to select a partition table type. Select "msdos".
- Click Apply.
gParted will now create an new partition table on your SSD. Once that operation is complete, you can format the drive.
I hope this helps!
It looks like the drive is mounting, but Ubuntu is not seeing a partition table on the drive. To fix this, you will need gParted. You can install it by opening a terminal and typing:
sudo apt-get install gparted
WARNING: The following will erase any data you may have on the drive.
- Run gParted.
- Select your disk from the drop down box in the upper right corner. In your case it would be /dev/sda.
- Under the "Device" menu, select "Create Partition Table"
- A warning dialog will be displayed, and it will ask you to select a partition table type. Select "msdos".
- Click Apply.
gParted will now create an new partition table on your SSD. Once that operation is complete, you can format the drive.
I hope this helps!
answered Jun 13 '17 at 12:54
Mark LinesMark Lines
617
617
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
add a comment |
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
The Disk Utility program that Brett was using should be able to do this, but I don't happen to know the exact steps to do this off the top of my head. GParted is more commonly used for this task, so Mark's suggestion to use it makes sense.
– Rod Smith
Jun 13 '17 at 13:25
add a comment |
- Find the name of the partition by using
lsblk
orfdisk -l
. Let's say it issdc1
. - Unmount that partition, if mounted:
sudo umount /dev/sdc1
- Format the partition
sudo dd if=/dev/zero of=/dev/sdc bs=4M
.
add a comment |
- Find the name of the partition by using
lsblk
orfdisk -l
. Let's say it issdc1
. - Unmount that partition, if mounted:
sudo umount /dev/sdc1
- Format the partition
sudo dd if=/dev/zero of=/dev/sdc bs=4M
.
add a comment |
- Find the name of the partition by using
lsblk
orfdisk -l
. Let's say it issdc1
. - Unmount that partition, if mounted:
sudo umount /dev/sdc1
- Format the partition
sudo dd if=/dev/zero of=/dev/sdc bs=4M
.
- Find the name of the partition by using
lsblk
orfdisk -l
. Let's say it issdc1
. - Unmount that partition, if mounted:
sudo umount /dev/sdc1
- Format the partition
sudo dd if=/dev/zero of=/dev/sdc bs=4M
.
answered 15 hours ago
Shibasis PatelShibasis Patel
414
414
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%2f924910%2ferrors-when-attempting-to-format-and-partition-ssd%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