How can I copy a file from one partition to another?How can I quickly copy a GPT partition scheme from one hard drive to another?Existing partitons not recognized during installationAttempting to dual boot Ubuntu and Windows 7 on Sony Vaio with Insyde H2O BIOSReinstall of Windows Bootloader not workingUbuntu 13.04 hard disk does not bootComputer won't boot after installing Ubuntu 14.04.1 LTS to replace Windows 8.1Preparing HDD partitions for dual boothow to copy directory from one partition to another?

Could an adjective be used like an adverb in Latin?

Has any version of Marvel's Black Panther ever been able to actually turn into a Were-Panther form?

Features of a Coda section

Why don't my appliances work when my tester shows voltage at the outlets?

Why can't I book this multi-city fare on American Airlines?

Can a stolen Android phone with USB debugging enabled have screen lock bypassed?

I can be found near gentle green hills and stony mountains

Is void *function a pointer to function or a function returning a void*?

What are the applications of the Mean Value Theorem?

Stacked math with lefthand braces around selected lines

Why is the Falcon Heavy center core recovery done at sea?

Does no-one standing against the speaker of the house in UK lead to the local electorate being disenfranchised?

What would be the best propulsion system for this aircraft carrier?

Uncooked peppers and garlic in olive oil fizzled when opened

Building a phone charger 500 years ago

Replacing triangulated categories with something better

For the Dungeon of the Mad Mage adventure, which dimension is used to determine a room's ceiling height?

Do effects that prevent someone from becoming an undead stop or delay the effect?

Left a meeting without reason, what to do?

Why combine commands on a single line in a Bash script?

What would it take to slow down fermentation? (Specific: Wine / grape juice)

Colleague used admin access to view my private employee order

How did the T-850 still function after it removed its second battery?

Is it possible to have a healthy work-life balance as a professor?



How can I copy a file from one partition to another?


How can I quickly copy a GPT partition scheme from one hard drive to another?Existing partitons not recognized during installationAttempting to dual boot Ubuntu and Windows 7 on Sony Vaio with Insyde H2O BIOSReinstall of Windows Bootloader not workingUbuntu 13.04 hard disk does not bootComputer won't boot after installing Ubuntu 14.04.1 LTS to replace Windows 8.1Preparing HDD partitions for dual boothow to copy directory from one partition to another?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









1

















I started with Linux a year ago. Few weeks ago it was my idea to install the EFISTUB bootloader.



I used an Live CD to freshly install 12.10, and studied the articles of http://www.rodsbooks.com/ inside out.



The problem I am facing is that few files need to be copied from sda2 (Ext) to sda1 (fat32). I can not find a way to do it?










share|improve this question




























  • What do you mean, "my esp having fat32"?

    – Flimm
    Nov 27 '12 at 17:30











  • Sorry, Efi System Partition. In order to make efi work, a first partition is needed in Fat32.

    – user111095
    Nov 27 '12 at 20:35


















1

















I started with Linux a year ago. Few weeks ago it was my idea to install the EFISTUB bootloader.



I used an Live CD to freshly install 12.10, and studied the articles of http://www.rodsbooks.com/ inside out.



The problem I am facing is that few files need to be copied from sda2 (Ext) to sda1 (fat32). I can not find a way to do it?










share|improve this question




























  • What do you mean, "my esp having fat32"?

    – Flimm
    Nov 27 '12 at 17:30











  • Sorry, Efi System Partition. In order to make efi work, a first partition is needed in Fat32.

    – user111095
    Nov 27 '12 at 20:35














1












1








1








I started with Linux a year ago. Few weeks ago it was my idea to install the EFISTUB bootloader.



I used an Live CD to freshly install 12.10, and studied the articles of http://www.rodsbooks.com/ inside out.



The problem I am facing is that few files need to be copied from sda2 (Ext) to sda1 (fat32). I can not find a way to do it?










share|improve this question

















I started with Linux a year ago. Few weeks ago it was my idea to install the EFISTUB bootloader.



I used an Live CD to freshly install 12.10, and studied the articles of http://www.rodsbooks.com/ inside out.



The problem I am facing is that few files need to be copied from sda2 (Ext) to sda1 (fat32). I can not find a way to do it?







partitioning bootloader uefi






share|improve this question
















share|improve this question













share|improve this question




share|improve this question








edited Aug 13 '14 at 14:25









Pro Backup

2,2063 gold badges17 silver badges30 bronze badges




2,2063 gold badges17 silver badges30 bronze badges










asked Nov 27 '12 at 16:27









user111095user111095

61 silver badge3 bronze badges




61 silver badge3 bronze badges















  • What do you mean, "my esp having fat32"?

    – Flimm
    Nov 27 '12 at 17:30











  • Sorry, Efi System Partition. In order to make efi work, a first partition is needed in Fat32.

    – user111095
    Nov 27 '12 at 20:35


















  • What do you mean, "my esp having fat32"?

    – Flimm
    Nov 27 '12 at 17:30











  • Sorry, Efi System Partition. In order to make efi work, a first partition is needed in Fat32.

    – user111095
    Nov 27 '12 at 20:35

















What do you mean, "my esp having fat32"?

– Flimm
Nov 27 '12 at 17:30





What do you mean, "my esp having fat32"?

– Flimm
Nov 27 '12 at 17:30













Sorry, Efi System Partition. In order to make efi work, a first partition is needed in Fat32.

– user111095
Nov 27 '12 at 20:35






Sorry, Efi System Partition. In order to make efi work, a first partition is needed in Fat32.

– user111095
Nov 27 '12 at 20:35











1 Answer
1






active

oldest

votes


















0


















boot to live cd and use the mount command to mount both partitions,
then copy the files like normal.



sudo mkdir /mnt/drv2
sudo mount /dev/sda2 /mnt/drv2

sudo mkdir /mnt/drv1
sudo mount /dev/sda1 /mnt/drv1





share|improve this answer


























  • If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

    – James
    Nov 28 '12 at 0:35












  • Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

    – Rod Smith
    Nov 28 '12 at 3:18











  • CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

    – user111095
    Nov 29 '12 at 8:43












  • I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

    – user111095
    Nov 29 '12 at 9:06












  • The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

    – user111095
    Nov 29 '12 at 9:12













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/4.0/"u003ecc by-sa 4.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
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f222632%2fhow-can-i-copy-a-file-from-one-partition-to-another%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









0


















boot to live cd and use the mount command to mount both partitions,
then copy the files like normal.



sudo mkdir /mnt/drv2
sudo mount /dev/sda2 /mnt/drv2

sudo mkdir /mnt/drv1
sudo mount /dev/sda1 /mnt/drv1





share|improve this answer


























  • If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

    – James
    Nov 28 '12 at 0:35












  • Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

    – Rod Smith
    Nov 28 '12 at 3:18











  • CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

    – user111095
    Nov 29 '12 at 8:43












  • I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

    – user111095
    Nov 29 '12 at 9:06












  • The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

    – user111095
    Nov 29 '12 at 9:12
















0


















boot to live cd and use the mount command to mount both partitions,
then copy the files like normal.



sudo mkdir /mnt/drv2
sudo mount /dev/sda2 /mnt/drv2

sudo mkdir /mnt/drv1
sudo mount /dev/sda1 /mnt/drv1





share|improve this answer


























  • If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

    – James
    Nov 28 '12 at 0:35












  • Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

    – Rod Smith
    Nov 28 '12 at 3:18











  • CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

    – user111095
    Nov 29 '12 at 8:43












  • I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

    – user111095
    Nov 29 '12 at 9:06












  • The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

    – user111095
    Nov 29 '12 at 9:12














0














0










0









boot to live cd and use the mount command to mount both partitions,
then copy the files like normal.



sudo mkdir /mnt/drv2
sudo mount /dev/sda2 /mnt/drv2

sudo mkdir /mnt/drv1
sudo mount /dev/sda1 /mnt/drv1





share|improve this answer














boot to live cd and use the mount command to mount both partitions,
then copy the files like normal.



sudo mkdir /mnt/drv2
sudo mount /dev/sda2 /mnt/drv2

sudo mkdir /mnt/drv1
sudo mount /dev/sda1 /mnt/drv1






share|improve this answer













share|improve this answer




share|improve this answer










answered Nov 27 '12 at 23:26









endor43endor43

61 gold badge1 silver badge2 bronze badges




61 gold badge1 silver badge2 bronze badges















  • If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

    – James
    Nov 28 '12 at 0:35












  • Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

    – Rod Smith
    Nov 28 '12 at 3:18











  • CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

    – user111095
    Nov 29 '12 at 8:43












  • I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

    – user111095
    Nov 29 '12 at 9:06












  • The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

    – user111095
    Nov 29 '12 at 9:12


















  • If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

    – James
    Nov 28 '12 at 0:35












  • Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

    – Rod Smith
    Nov 28 '12 at 3:18











  • CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

    – user111095
    Nov 29 '12 at 8:43












  • I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

    – user111095
    Nov 29 '12 at 9:06












  • The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

    – user111095
    Nov 29 '12 at 9:12

















If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

– James
Nov 28 '12 at 0:35






If the drive with the partitions is connected to your system, it shouldn't require a Live Cd. Simply mount both partitions and copy the files as you'd like. Note that you may have to copy the files as Sudo if you don't have permissions with the files.

– James
Nov 28 '12 at 0:35














Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

– Rod Smith
Nov 28 '12 at 3:18





Also, if the system is already installed in EFI mode, there's a good chance that the ESP is already mounted at /boot/efi. Your kernel will already be accessible under /boot, of course. The different filesystem types are unimportant; user-level tools like cp just see files, not the details of the filesystems (ext3fs vs. FAT, for instance).

– Rod Smith
Nov 28 '12 at 3:18













CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

– user111095
Nov 29 '12 at 8:43






CD not needed: Actually I used the CD to boot the machine to install the stubloader, which requires files to be moved from /boot to boot/efi.

– user111095
Nov 29 '12 at 8:43














I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

– user111095
Nov 29 '12 at 9:06






I used gparted for making the gpt (rodsbooks.com) and a 500 mb fat32 sda1. So far so good. I installed Ubuntu on the second partition (sda2 - root), and /home on a third partition. Because I used a GPT partition table, I thought my MBR would be destroyed, consequently I thus had use the Installation cd. As I could not make it work, I eventually reinstalled Ubuntu, yet now using "EFI start-up partition" as an option during install (in stead of leaving it blank). As a result Ubuntu started from the HD, but used grub - very instable.

– user111095
Nov 29 '12 at 9:06














The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

– user111095
Nov 29 '12 at 9:12






The issue, what are the commans to copy the files? cp /boot/vmlinuz/ /boot/efi/EFI/ubuntu/vmlinuz.efi..?

– user111095
Nov 29 '12 at 9:12



















draft saved

draft discarded















































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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f222632%2fhow-can-i-copy-a-file-from-one-partition-to-another%23new-answer', 'question_page');

);

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









Popular posts from this blog

Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü