Copy-Paste Not Working
Using precise pangolin. I am trying to copy some folders from my portable hard drive to one of the partitions. The paste button is not working in the destination folder and whenever I am trying a drag-drop with my mouse, it says that I don't have permission to create there, albeit I have the root. Even the new folder button is not working. Help please. Dialogue box and Permission details attached.
12.04 partitioning permissions
add a comment |
Using precise pangolin. I am trying to copy some folders from my portable hard drive to one of the partitions. The paste button is not working in the destination folder and whenever I am trying a drag-drop with my mouse, it says that I don't have permission to create there, albeit I have the root. Even the new folder button is not working. Help please. Dialogue box and Permission details attached.
12.04 partitioning permissions
You may want to have a look at these questions: askubuntu.com/questions/47538/…, and e.g. askubuntu.com/questions/77655/… (and more) in case your partition is NTFS.
– Takkat
Sep 29 '12 at 8:06
add a comment |
Using precise pangolin. I am trying to copy some folders from my portable hard drive to one of the partitions. The paste button is not working in the destination folder and whenever I am trying a drag-drop with my mouse, it says that I don't have permission to create there, albeit I have the root. Even the new folder button is not working. Help please. Dialogue box and Permission details attached.
12.04 partitioning permissions
Using precise pangolin. I am trying to copy some folders from my portable hard drive to one of the partitions. The paste button is not working in the destination folder and whenever I am trying a drag-drop with my mouse, it says that I don't have permission to create there, albeit I have the root. Even the new folder button is not working. Help please. Dialogue box and Permission details attached.
12.04 partitioning permissions
12.04 partitioning permissions
edited Sep 29 '12 at 6:33
Della
asked Sep 29 '12 at 6:26
DellaDella
2564714
2564714
You may want to have a look at these questions: askubuntu.com/questions/47538/…, and e.g. askubuntu.com/questions/77655/… (and more) in case your partition is NTFS.
– Takkat
Sep 29 '12 at 8:06
add a comment |
You may want to have a look at these questions: askubuntu.com/questions/47538/…, and e.g. askubuntu.com/questions/77655/… (and more) in case your partition is NTFS.
– Takkat
Sep 29 '12 at 8:06
You may want to have a look at these questions: askubuntu.com/questions/47538/…, and e.g. askubuntu.com/questions/77655/… (and more) in case your partition is NTFS.
– Takkat
Sep 29 '12 at 8:06
You may want to have a look at these questions: askubuntu.com/questions/47538/…, and e.g. askubuntu.com/questions/77655/… (and more) in case your partition is NTFS.
– Takkat
Sep 29 '12 at 8:06
add a comment |
3 Answers
3
active
oldest
votes
Open a terminal (you can use CtrlAltT) and type:
gksudo nautilus
A new Nautilus browsing window will appear. Use it to copy and paste the results.
5
sudo nautilus
is a bad idea,gksu nautilus
is best.
– Tom Brossman
Sep 29 '12 at 8:39
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
1
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it togksudo
?
– hexafraction
Sep 30 '12 at 22:07
1
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
add a comment |
I think I get your problem.
Lets assume your destination folder is /home/user/MOVIES
If you are using your root account (Not recommend it) do the follwing
chmod 777 /home/user/MOVIES (You give all the permissions to your folder)
cp /media/HARDDISK/ /home/user/MOVIES -R (You are copying all the content of your harddisk to you MOVIES folder)
if you have a special folder just specify it /media/HARDDISK/SPECIALFOLDER -R means recursive, you are going to copy what is on that folder)
If you check your destination folder only has access permissions, you can't write on it.
add a comment |
Each time I want to do this I have to Open a terminal and type gksudo nautilus
to do the paste.
(I wonder myself if there any permanent option to do copy/paste.)
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%2f194307%2fcopy-paste-not-working%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
Open a terminal (you can use CtrlAltT) and type:
gksudo nautilus
A new Nautilus browsing window will appear. Use it to copy and paste the results.
5
sudo nautilus
is a bad idea,gksu nautilus
is best.
– Tom Brossman
Sep 29 '12 at 8:39
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
1
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it togksudo
?
– hexafraction
Sep 30 '12 at 22:07
1
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
add a comment |
Open a terminal (you can use CtrlAltT) and type:
gksudo nautilus
A new Nautilus browsing window will appear. Use it to copy and paste the results.
5
sudo nautilus
is a bad idea,gksu nautilus
is best.
– Tom Brossman
Sep 29 '12 at 8:39
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
1
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it togksudo
?
– hexafraction
Sep 30 '12 at 22:07
1
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
add a comment |
Open a terminal (you can use CtrlAltT) and type:
gksudo nautilus
A new Nautilus browsing window will appear. Use it to copy and paste the results.
Open a terminal (you can use CtrlAltT) and type:
gksudo nautilus
A new Nautilus browsing window will appear. Use it to copy and paste the results.
edited 8 mins ago
Olorin
2,006720
2,006720
answered Sep 29 '12 at 7:05
Sourav MishraSourav Mishra
5951413
5951413
5
sudo nautilus
is a bad idea,gksu nautilus
is best.
– Tom Brossman
Sep 29 '12 at 8:39
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
1
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it togksudo
?
– hexafraction
Sep 30 '12 at 22:07
1
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
add a comment |
5
sudo nautilus
is a bad idea,gksu nautilus
is best.
– Tom Brossman
Sep 29 '12 at 8:39
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
1
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it togksudo
?
– hexafraction
Sep 30 '12 at 22:07
1
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
5
5
sudo nautilus
is a bad idea, gksu nautilus
is best.– Tom Brossman
Sep 29 '12 at 8:39
sudo nautilus
is a bad idea, gksu nautilus
is best.– Tom Brossman
Sep 29 '12 at 8:39
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
Hi, I thought gksu is for graphical applications and since nautilus is a file manager, we can open it with sudo.
– Sourav Mishra
Sep 29 '12 at 9:32
1
1
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it to
gksudo
?– hexafraction
Sep 30 '12 at 22:07
Nautilus is a graphical application. It involves the use of X, and it displays quite a few icons. Do you mind if I change it to
gksudo
?– hexafraction
Sep 30 '12 at 22:07
1
1
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
I agree with @ObsessiveFOSS , 'gksudo' will be more appropriate.
– Sourav Mishra
Oct 1 '12 at 3:37
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
You can try restarting nautilus askubuntu.com/a/489574/271328
– Harsh Vakharia
Jun 29 '14 at 12:52
add a comment |
I think I get your problem.
Lets assume your destination folder is /home/user/MOVIES
If you are using your root account (Not recommend it) do the follwing
chmod 777 /home/user/MOVIES (You give all the permissions to your folder)
cp /media/HARDDISK/ /home/user/MOVIES -R (You are copying all the content of your harddisk to you MOVIES folder)
if you have a special folder just specify it /media/HARDDISK/SPECIALFOLDER -R means recursive, you are going to copy what is on that folder)
If you check your destination folder only has access permissions, you can't write on it.
add a comment |
I think I get your problem.
Lets assume your destination folder is /home/user/MOVIES
If you are using your root account (Not recommend it) do the follwing
chmod 777 /home/user/MOVIES (You give all the permissions to your folder)
cp /media/HARDDISK/ /home/user/MOVIES -R (You are copying all the content of your harddisk to you MOVIES folder)
if you have a special folder just specify it /media/HARDDISK/SPECIALFOLDER -R means recursive, you are going to copy what is on that folder)
If you check your destination folder only has access permissions, you can't write on it.
add a comment |
I think I get your problem.
Lets assume your destination folder is /home/user/MOVIES
If you are using your root account (Not recommend it) do the follwing
chmod 777 /home/user/MOVIES (You give all the permissions to your folder)
cp /media/HARDDISK/ /home/user/MOVIES -R (You are copying all the content of your harddisk to you MOVIES folder)
if you have a special folder just specify it /media/HARDDISK/SPECIALFOLDER -R means recursive, you are going to copy what is on that folder)
If you check your destination folder only has access permissions, you can't write on it.
I think I get your problem.
Lets assume your destination folder is /home/user/MOVIES
If you are using your root account (Not recommend it) do the follwing
chmod 777 /home/user/MOVIES (You give all the permissions to your folder)
cp /media/HARDDISK/ /home/user/MOVIES -R (You are copying all the content of your harddisk to you MOVIES folder)
if you have a special folder just specify it /media/HARDDISK/SPECIALFOLDER -R means recursive, you are going to copy what is on that folder)
If you check your destination folder only has access permissions, you can't write on it.
answered Sep 29 '12 at 6:39
DiegoDiego
4361417
4361417
add a comment |
add a comment |
Each time I want to do this I have to Open a terminal and type gksudo nautilus
to do the paste.
(I wonder myself if there any permanent option to do copy/paste.)
add a comment |
Each time I want to do this I have to Open a terminal and type gksudo nautilus
to do the paste.
(I wonder myself if there any permanent option to do copy/paste.)
add a comment |
Each time I want to do this I have to Open a terminal and type gksudo nautilus
to do the paste.
(I wonder myself if there any permanent option to do copy/paste.)
Each time I want to do this I have to Open a terminal and type gksudo nautilus
to do the paste.
(I wonder myself if there any permanent option to do copy/paste.)
edited May 25 '14 at 14:43
v2r
6,291113848
6,291113848
answered May 25 '14 at 14:11
user285150user285150
12
12
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%2f194307%2fcopy-paste-not-working%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 may want to have a look at these questions: askubuntu.com/questions/47538/…, and e.g. askubuntu.com/questions/77655/… (and more) in case your partition is NTFS.
– Takkat
Sep 29 '12 at 8:06