Did I make data recovery from my USB flash drive less likely?FreeBSD in USB Flash DriveAuto mount HP USB...
What is a "soap"?
Is there any official ruling on how characters go from 0th to 1st level in a class?
Does writing regular diary entries count as writing practice?
Can anyone help me what's wrong here as i can prove 0 = 1?
What should we do with manuals from the 80s?
Sum Square Difference, which way is more Pythonic?
What should I do if actually I found a serious flaw in someone's PhD thesis and an article derived from that PhD thesis?
Are there any cons in using rounded corners for bar graphs?
A Magic Diamond
What is the purpose/function of this power inductor in parallel?
What is the opposite of "hunger level"?
Is this bar slide trick shown on Cheers real or a visual effect?
What are the advantages of this gold finger shape?
How to get locks that are keyed alike?
Did Pope Urban II issue the papal bull "terra nullius" in 1095?
Why do so many people play out of turn on the last lead?
What's the relationship betweeen MS-DOS and XENIX?
Unconventional examples of mathematical modelling
Visa on arrival to exit airport in Russia
Has the speed of light ever been measured in vacuum?
Will some rockets really collapse under their own weight?
Is the Microsoft recommendation to use C# properties applicable to game development?
Are there liquid fueled rocket boosters having coaxial fuel/oxidizer tanks?
Escape Velocity - Won't the orbital path just become larger with higher initial velocity?
Did I make data recovery from my USB flash drive less likely?
FreeBSD in USB Flash DriveAuto mount HP USB Flash drive ErrorRemove USB flash-drive write-protectionRun CentOS 6 from a USB flash driveUSB flash drive mounts and unmounts automaticallyboot from usb flash driveCannot find directory & Cannot cd errors during usb mount openwrtMount .img created by ddrescue-guirecovery of usb flash drive: extracted image is full of zerosHow do I make an image of my entire USB flash drive?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I was using the dd
command to copy my entire flash drive in 'blocks'. I was using the following:
dd if=/dev/sda bs=16M of=/filepath/filename
I was half asleep and I hit enter after dd if=/dev/sda
, instead of hitting the spacebar.
Simply, since I don't know what hitting enter after dd if=/dev/sda
did, so I would just like to know if I made recovery efforts for deleted/stolen files from my flash drive less likely.
I checked the flash drive and the amount of data present after I hit enter was the same.
linux usb
add a comment |
I was using the dd
command to copy my entire flash drive in 'blocks'. I was using the following:
dd if=/dev/sda bs=16M of=/filepath/filename
I was half asleep and I hit enter after dd if=/dev/sda
, instead of hitting the spacebar.
Simply, since I don't know what hitting enter after dd if=/dev/sda
did, so I would just like to know if I made recovery efforts for deleted/stolen files from my flash drive less likely.
I checked the flash drive and the amount of data present after I hit enter was the same.
linux usb
add a comment |
I was using the dd
command to copy my entire flash drive in 'blocks'. I was using the following:
dd if=/dev/sda bs=16M of=/filepath/filename
I was half asleep and I hit enter after dd if=/dev/sda
, instead of hitting the spacebar.
Simply, since I don't know what hitting enter after dd if=/dev/sda
did, so I would just like to know if I made recovery efforts for deleted/stolen files from my flash drive less likely.
I checked the flash drive and the amount of data present after I hit enter was the same.
linux usb
I was using the dd
command to copy my entire flash drive in 'blocks'. I was using the following:
dd if=/dev/sda bs=16M of=/filepath/filename
I was half asleep and I hit enter after dd if=/dev/sda
, instead of hitting the spacebar.
Simply, since I don't know what hitting enter after dd if=/dev/sda
did, so I would just like to know if I made recovery efforts for deleted/stolen files from my flash drive less likely.
I checked the flash drive and the amount of data present after I hit enter was the same.
linux usb
linux usb
edited yesterday
Stephen Kitt
199k27 gold badges473 silver badges543 bronze badges
199k27 gold badges473 silver badges543 bronze badges
asked yesterday
hddfsck777hddfsck777
356 bronze badges
356 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
dd if=/dev/sda
, with no other argument, will read /dev/sda
512 bytes at a time and copy its contents to standard out.
This won’t have changed anything on the USB drive, and won’t have affected potential recovery efforts.
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f535712%2fdid-i-make-data-recovery-from-my-usb-flash-drive-less-likely%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
dd if=/dev/sda
, with no other argument, will read /dev/sda
512 bytes at a time and copy its contents to standard out.
This won’t have changed anything on the USB drive, and won’t have affected potential recovery efforts.
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
add a comment |
dd if=/dev/sda
, with no other argument, will read /dev/sda
512 bytes at a time and copy its contents to standard out.
This won’t have changed anything on the USB drive, and won’t have affected potential recovery efforts.
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
add a comment |
dd if=/dev/sda
, with no other argument, will read /dev/sda
512 bytes at a time and copy its contents to standard out.
This won’t have changed anything on the USB drive, and won’t have affected potential recovery efforts.
dd if=/dev/sda
, with no other argument, will read /dev/sda
512 bytes at a time and copy its contents to standard out.
This won’t have changed anything on the USB drive, and won’t have affected potential recovery efforts.
answered yesterday
Stephen KittStephen Kitt
199k27 gold badges473 silver badges543 bronze badges
199k27 gold badges473 silver badges543 bronze badges
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
add a comment |
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
Thanks for the info. Can you recommend an excellent recovery tool I can install on my linux system to recover deleted/stolen files from a usb flash drive that is FAT formatted? Or should I use a windows system to try to recover the files?
– hddfsck777
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
See PhotoRec, it fits your requirements and is available packaged in most Linux distributions. For more advanced recovery, see also Foremost.
– Stephen Kitt
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
Great, thank you Stephen.
– hddfsck777
yesterday
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- 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%2funix.stackexchange.com%2fquestions%2f535712%2fdid-i-make-data-recovery-from-my-usb-flash-drive-less-likely%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