Cannot copy owned fileHow to fix “The destination is read-only” error on HDD partitionFile recovery data...
How much of a wave function must reside inside event horizon for it to be consumed by the black hole?
Extracting Dirichlet series coefficients
Is there any pythonic way to find average of specific tuple elements in array?
How can I get rid of an unhelpful parallel branch when unpivoting a single row?
Why is the underscore command _ useful?
As an international instructor, should I openly talk about my accent?
"Whatever a Russian does, they end up making the Kalashnikov gun"? Are there any similar proverbs in English?
Check if a string is entirely made of the same substring
Would the change in enthalpy (ΔH) for the dissolution of urea in water be positive or negative?
How do I produce this Greek letter koppa: Ϟ in pdfLaTeX?
Is Electric Central Heating worth it if using Solar Panels?
Cayley's Matrix Notation
Combinatorics problem, right solution?
What was Apollo 13's "Little Jolt" after MECO?
Co-worker works way more than he should
Was Dennis Ritchie being too modest in this quote about C and Pascal?
Are there moral objections to a life motivated purely by money? How to sway a person from this lifestyle?
Find the identical rows in a matrix
Israeli soda type drink
std::unique_ptr of base class holding reference of derived class does not show warning in gcc compiler while naked pointer shows it. Why?
How to have a sharp product image?
Can a stored procedure reference the database in which it is stored?
How do I reattach a shelf to the wall when it ripped out of the wall?
Mistake in years of experience in resume?
Cannot copy owned file
How to fix “The destination is read-only” error on HDD partitionFile recovery data copyUnable to mount hard drive for file copychanged permission of 'usr' to 700remounting a file systemHow can I make My external hard drive writable in ubuntu 18.04?“No such file or directory” trying to write NTFSChange file permissions on hfs driveusing cifs and cannot paste to folder or change ownershipCannot change ownership or modify it permissionHow to copy file from a list to a new folder?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have ownership access to files, but still paste option is disabled. I tried to change it with sudo, and got another error: no such file or directory
chmod
throws Read-only file system
error.
Also , I have mounted this drive as root, again no such file or directory
was error was there.
mount copy
New contributor
add a comment |
I have ownership access to files, but still paste option is disabled. I tried to change it with sudo, and got another error: no such file or directory
chmod
throws Read-only file system
error.
Also , I have mounted this drive as root, again no such file or directory
was error was there.
mount copy
New contributor
What is the output ofmount | grep /media
andls -l <device name>/WinRadius.rar
?
– Kulfy
15 hours ago
Possibly related: askubuntu.com/questions/809237/…
– Terrance
15 hours ago
add a comment |
I have ownership access to files, but still paste option is disabled. I tried to change it with sudo, and got another error: no such file or directory
chmod
throws Read-only file system
error.
Also , I have mounted this drive as root, again no such file or directory
was error was there.
mount copy
New contributor
I have ownership access to files, but still paste option is disabled. I tried to change it with sudo, and got another error: no such file or directory
chmod
throws Read-only file system
error.
Also , I have mounted this drive as root, again no such file or directory
was error was there.
mount copy
mount copy
New contributor
New contributor
edited 15 hours ago
Kulfy
5,57361945
5,57361945
New contributor
asked 15 hours ago
farshad khazaeefarshad khazaee
1
1
New contributor
New contributor
What is the output ofmount | grep /media
andls -l <device name>/WinRadius.rar
?
– Kulfy
15 hours ago
Possibly related: askubuntu.com/questions/809237/…
– Terrance
15 hours ago
add a comment |
What is the output ofmount | grep /media
andls -l <device name>/WinRadius.rar
?
– Kulfy
15 hours ago
Possibly related: askubuntu.com/questions/809237/…
– Terrance
15 hours ago
What is the output of
mount | grep /media
and ls -l <device name>/WinRadius.rar
?– Kulfy
15 hours ago
What is the output of
mount | grep /media
and ls -l <device name>/WinRadius.rar
?– Kulfy
15 hours ago
Possibly related: askubuntu.com/questions/809237/…
– Terrance
15 hours ago
Possibly related: askubuntu.com/questions/809237/…
– Terrance
15 hours ago
add a comment |
1 Answer
1
active
oldest
votes
When you remount the filesystem you have to make sure that you mount it as Read-Write.
sudo mount -o rw [Partition] [Target directory]
for example:
sudo mount -o rw /dev/sdb2 /mnt/data
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
});
}
});
farshad khazaee 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%2f1138075%2fcannot-copy-owned-file%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
When you remount the filesystem you have to make sure that you mount it as Read-Write.
sudo mount -o rw [Partition] [Target directory]
for example:
sudo mount -o rw /dev/sdb2 /mnt/data
New contributor
add a comment |
When you remount the filesystem you have to make sure that you mount it as Read-Write.
sudo mount -o rw [Partition] [Target directory]
for example:
sudo mount -o rw /dev/sdb2 /mnt/data
New contributor
add a comment |
When you remount the filesystem you have to make sure that you mount it as Read-Write.
sudo mount -o rw [Partition] [Target directory]
for example:
sudo mount -o rw /dev/sdb2 /mnt/data
New contributor
When you remount the filesystem you have to make sure that you mount it as Read-Write.
sudo mount -o rw [Partition] [Target directory]
for example:
sudo mount -o rw /dev/sdb2 /mnt/data
New contributor
New contributor
answered 15 hours ago
FreygeistFreygeist
112
112
New contributor
New contributor
add a comment |
add a comment |
farshad khazaee is a new contributor. Be nice, and check out our Code of Conduct.
farshad khazaee is a new contributor. Be nice, and check out our Code of Conduct.
farshad khazaee is a new contributor. Be nice, and check out our Code of Conduct.
farshad khazaee 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%2f1138075%2fcannot-copy-owned-file%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
What is the output of
mount | grep /media
andls -l <device name>/WinRadius.rar
?– Kulfy
15 hours ago
Possibly related: askubuntu.com/questions/809237/…
– Terrance
15 hours ago