How do I move a folder in Kubuntu?

0
7
Asked By TechyTurtle92 On

I'm trying to figure out how to move a folder and all its contents from an external drive to an internal drive in Kubuntu. I'm used to cutting and pasting in Windows, but that doesn't seem to apply here. In Dolphin, I can right-click to copy or duplicate, but I'm not sure how to actually move the folder. Any tips?

3 Answers

Answered By HelpfulHacker77 On

You should be able to just cut and paste it. If you open two Dolphin windows, you can drag the folder from one to the other. If you're seeing a red circle when trying to drag, it might be a permissions issue. Make sure you're not trying to move it to a location that requires root access—stick to your home directory if possible.

Answered By FileMoverX On

Drag-and-drop in Dolphin generally prompts you to choose between cut or copy. But if you want a faster way and have appropriate access, just open a terminal and use the `mv` command to move the folders. It's a lot cleaner and skips those pesky graphical issues.

Answered By LinuxLover42 On

Linux uses 'directories' instead of 'folders', which can behave a bit differently. You might want to think of them as just files. You can use commands like `mv /oldlocation/ /newlocation/` to relocate them, or create a new directory and move the contents over that way.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.