Securely erase single (Windows) partition Announcing the arrival of Valued Associate #679:...
How would a mousetrap for use in space work?
What causes the direction of lightning flashes?
How could we fake a moon landing now?
Amount of permutations on an NxNxN Rubik's Cube
Compare a given version number in the form major.minor.build.patch and see if one is less than the other
Is CEO the profession with the most psychopaths?
Is it cost-effective to upgrade an old-ish Giant Escape R3 commuter bike with entry-level branded parts (wheels, drivetrain)?
Is grep documentation wrong?
Using audio cues to encourage good posture
How come Sam didn't become Lord of Horn Hill?
Why wasn't DOSKEY integrated with COMMAND.COM?
How can I use the Python library networkx from Mathematica?
How does the math work when buying airline miles?
Denied boarding although I have proper visa and documentation. To whom should I make a complaint?
Is there such thing as an Availability Group failover trigger?
How do I make this wiring inside cabinet safer? (Pic)
First console to have temporary backward compatibility
How do pianists reach extremely loud dynamics?
Do I really need recursive chmod to restrict access to a folder?
Crossing US/Canada Border for less than 24 hours
Extracting terms with certain heads in a function
How to find all the available tools in mac terminal?
If my PI received research grants from a company to be able to pay my postdoc salary, did I have a potential conflict interest too?
Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?
Securely erase single (Windows) partition
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Windows disk's partition(s) are misaligned: Can't mountHow can I expand a partition into non adjacent unallocated space?Unable to extend ubuntu partitonUbuntu Live CD does not recognize a Windows partition with data on itHow to create a separate home partition after installing Ubuntu under single / partitionWindows doesn't see gparted partition doneExpanding ubuntu partition with unallocated spaceHow to expand boot partition in front of LVM partitionUbuntu 16.04 new home partitioni dual booted ubuntu with windows 10 but i cant boot with windows 10
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am currently dual booted Windows 10 and Ubuntu 18.10. I know I can "erase" the Windows partition with gparted, but does that really erase the data?
I would like to run something like DBAN on the windows partition before I delete it and expand the Ubuntu one. This is an older computer (and not my primary) that I have been using to experiment with Ubuntu. I do not have much data yet, so completely wiping the drive and starting over is a possibility if wiping just the windows partition is not an option.
But, I wanted to ask... Is there any tool that will wipe the windows partition but leave the Ubuntu one intact?
dual-boot partitioning
New contributor
add a comment |
I am currently dual booted Windows 10 and Ubuntu 18.10. I know I can "erase" the Windows partition with gparted, but does that really erase the data?
I would like to run something like DBAN on the windows partition before I delete it and expand the Ubuntu one. This is an older computer (and not my primary) that I have been using to experiment with Ubuntu. I do not have much data yet, so completely wiping the drive and starting over is a possibility if wiping just the windows partition is not an option.
But, I wanted to ask... Is there any tool that will wipe the windows partition but leave the Ubuntu one intact?
dual-boot partitioning
New contributor
You could do this, but it seems like extra effort unless you believe that someone is going to take physical posession of your computer, and find something you don't want them to.
– Charles Green
2 hours ago
It is my old work computer and has clients' data on it. I suppose I could wipe individual folders with something like ccleaner or bcwipe.
– Driver8
1 hour ago
add a comment |
I am currently dual booted Windows 10 and Ubuntu 18.10. I know I can "erase" the Windows partition with gparted, but does that really erase the data?
I would like to run something like DBAN on the windows partition before I delete it and expand the Ubuntu one. This is an older computer (and not my primary) that I have been using to experiment with Ubuntu. I do not have much data yet, so completely wiping the drive and starting over is a possibility if wiping just the windows partition is not an option.
But, I wanted to ask... Is there any tool that will wipe the windows partition but leave the Ubuntu one intact?
dual-boot partitioning
New contributor
I am currently dual booted Windows 10 and Ubuntu 18.10. I know I can "erase" the Windows partition with gparted, but does that really erase the data?
I would like to run something like DBAN on the windows partition before I delete it and expand the Ubuntu one. This is an older computer (and not my primary) that I have been using to experiment with Ubuntu. I do not have much data yet, so completely wiping the drive and starting over is a possibility if wiping just the windows partition is not an option.
But, I wanted to ask... Is there any tool that will wipe the windows partition but leave the Ubuntu one intact?
dual-boot partitioning
dual-boot partitioning
New contributor
New contributor
edited 12 mins ago
Zzzach...
2,2991628
2,2991628
New contributor
asked 2 hours ago
Driver8Driver8
1
1
New contributor
New contributor
You could do this, but it seems like extra effort unless you believe that someone is going to take physical posession of your computer, and find something you don't want them to.
– Charles Green
2 hours ago
It is my old work computer and has clients' data on it. I suppose I could wipe individual folders with something like ccleaner or bcwipe.
– Driver8
1 hour ago
add a comment |
You could do this, but it seems like extra effort unless you believe that someone is going to take physical posession of your computer, and find something you don't want them to.
– Charles Green
2 hours ago
It is my old work computer and has clients' data on it. I suppose I could wipe individual folders with something like ccleaner or bcwipe.
– Driver8
1 hour ago
You could do this, but it seems like extra effort unless you believe that someone is going to take physical posession of your computer, and find something you don't want them to.
– Charles Green
2 hours ago
You could do this, but it seems like extra effort unless you believe that someone is going to take physical posession of your computer, and find something you don't want them to.
– Charles Green
2 hours ago
It is my old work computer and has clients' data on it. I suppose I could wipe individual folders with something like ccleaner or bcwipe.
– Driver8
1 hour ago
It is my old work computer and has clients' data on it. I suppose I could wipe individual folders with something like ccleaner or bcwipe.
– Driver8
1 hour ago
add a comment |
1 Answer
1
active
oldest
votes
One method I could device to do this, would be to first use gparted to remove the Windows partitions, and then create a new (ext2) partition in the remaining space.
After creating the new partition, you could use dd
to write data to the disk, nulls, or zeros or random data.
Assuming your disk is /dev/sda
and the new partition is /dev/sda9
, you might try a command like
sudo dd --progress ifile=/dev/zero ofile=/dev/sda9 bs=4g
But be very, very careful with dd.
Following this, you could then use gparted to again create the partition, and format it as a file system that you would like to use for your Linux system.
Why ext2 partition?
– heynnema
1 hour ago
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
});
}
});
Driver8 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1134791%2fsecurely-erase-single-windows-partition%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
One method I could device to do this, would be to first use gparted to remove the Windows partitions, and then create a new (ext2) partition in the remaining space.
After creating the new partition, you could use dd
to write data to the disk, nulls, or zeros or random data.
Assuming your disk is /dev/sda
and the new partition is /dev/sda9
, you might try a command like
sudo dd --progress ifile=/dev/zero ofile=/dev/sda9 bs=4g
But be very, very careful with dd.
Following this, you could then use gparted to again create the partition, and format it as a file system that you would like to use for your Linux system.
Why ext2 partition?
– heynnema
1 hour ago
add a comment |
One method I could device to do this, would be to first use gparted to remove the Windows partitions, and then create a new (ext2) partition in the remaining space.
After creating the new partition, you could use dd
to write data to the disk, nulls, or zeros or random data.
Assuming your disk is /dev/sda
and the new partition is /dev/sda9
, you might try a command like
sudo dd --progress ifile=/dev/zero ofile=/dev/sda9 bs=4g
But be very, very careful with dd.
Following this, you could then use gparted to again create the partition, and format it as a file system that you would like to use for your Linux system.
Why ext2 partition?
– heynnema
1 hour ago
add a comment |
One method I could device to do this, would be to first use gparted to remove the Windows partitions, and then create a new (ext2) partition in the remaining space.
After creating the new partition, you could use dd
to write data to the disk, nulls, or zeros or random data.
Assuming your disk is /dev/sda
and the new partition is /dev/sda9
, you might try a command like
sudo dd --progress ifile=/dev/zero ofile=/dev/sda9 bs=4g
But be very, very careful with dd.
Following this, you could then use gparted to again create the partition, and format it as a file system that you would like to use for your Linux system.
One method I could device to do this, would be to first use gparted to remove the Windows partitions, and then create a new (ext2) partition in the remaining space.
After creating the new partition, you could use dd
to write data to the disk, nulls, or zeros or random data.
Assuming your disk is /dev/sda
and the new partition is /dev/sda9
, you might try a command like
sudo dd --progress ifile=/dev/zero ofile=/dev/sda9 bs=4g
But be very, very careful with dd.
Following this, you could then use gparted to again create the partition, and format it as a file system that you would like to use for your Linux system.
answered 2 hours ago
Charles GreenCharles Green
14.5k73960
14.5k73960
Why ext2 partition?
– heynnema
1 hour ago
add a comment |
Why ext2 partition?
– heynnema
1 hour ago
Why ext2 partition?
– heynnema
1 hour ago
Why ext2 partition?
– heynnema
1 hour ago
add a comment |
Driver8 is a new contributor. Be nice, and check out our Code of Conduct.
Driver8 is a new contributor. Be nice, and check out our Code of Conduct.
Driver8 is a new contributor. Be nice, and check out our Code of Conduct.
Driver8 is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1134791%2fsecurely-erase-single-windows-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
You could do this, but it seems like extra effort unless you believe that someone is going to take physical posession of your computer, and find something you don't want them to.
– Charles Green
2 hours ago
It is my old work computer and has clients' data on it. I suppose I could wipe individual folders with something like ccleaner or bcwipe.
– Driver8
1 hour ago