Files disappearing after mv commandCauses of files disappearing and ways of prevention?chmod directories and files in one command?mv command - don't overwrite filesScript for moving files that are older than 5 daysfiles disappear when I run mv commandMove only the last 8 files in a directory to another directoryHidden files found only by command line?Where did my files go after using mv?How to move some files to their parent directory?

White marks on garage ceiling

Operational Research - Evacuation Planning

Are all LTI systems invertible? If not, what is a good counterexample?

I'm from Mumbai, India. I want to travel to Europe as a tourist but my salary is low ( €190/month)

90's or earlier book with a ship called Heinlein

Seven Pounds Eight and Eight Pence

PyQGIS using selected layer from a combobox

Average Two Letters

How to test oom-killer from command line

What are pitfalls I should be aware of with NPC/PC romantic relationships?

Does a small cup of coffee result in a 45% reduced blood flow to the brain?

If Space Shuttle flies "like a brick", why does it need the wings?

"Readability is one thing, legibility is another", translation into french

Driverless car Puzzle

Why would a life company agree to a 20-year guaranteed life annuity which is expected to pay out more than the principal?

Are there any (natural) scientists in Middle-earth?

Would an antimatter bullet fired from a sniper rifle even reach its target?

How does Facebook track your browsing without third party cookies?

copying files with a string in their name from one folder to another

Is it possible to use a Mordhau grip to deal bludgeoning damage?

An element whose removal makes sets in a family distinct

Origin of the Latin Language?

Solving Fizz Buzz using LINQ in C#

Does a lich die if its phylactery is destroyed, or can it simply not rejuvenate anymore?



Files disappearing after mv command


Causes of files disappearing and ways of prevention?chmod directories and files in one command?mv command - don't overwrite filesScript for moving files that are older than 5 daysfiles disappear when I run mv commandMove only the last 8 files in a directory to another directoryHidden files found only by command line?Where did my files go after using mv?How to move some files to their parent directory?






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









0

















I trying to learn how to move files around. I made some test files and directories to practice with. When I try to move a file from one directory to the other, the file just completely disappears.



I use "sudo mv testfile2.txt /Jupiter



Jupiter is one of my directories. It leaves the one its in but never shows up in Jupiter. I am at a loss of what to do. I have been using my Linux plus study guide and have already hit a brick wall with this. thank you.










share|improve this question


























  • I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory). You moved it to /Jupiter - ie. Jupiter in the / directory (which if not a directory, you renamed testfile2.txt to /Jupiter with the command.

    – guiverc
    Aug 10 at 4:49












  • That helped... I guess I was renaming it over and over again. I put the (.) infront of the / and that helped. thank you so much!

    – marcello1988
    Aug 10 at 5:28











  • If you're happy with the answer, please consider accepting the answer below.

    – guiverc
    Aug 10 at 6:33

















0

















I trying to learn how to move files around. I made some test files and directories to practice with. When I try to move a file from one directory to the other, the file just completely disappears.



I use "sudo mv testfile2.txt /Jupiter



Jupiter is one of my directories. It leaves the one its in but never shows up in Jupiter. I am at a loss of what to do. I have been using my Linux plus study guide and have already hit a brick wall with this. thank you.










share|improve this question


























  • I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory). You moved it to /Jupiter - ie. Jupiter in the / directory (which if not a directory, you renamed testfile2.txt to /Jupiter with the command.

    – guiverc
    Aug 10 at 4:49












  • That helped... I guess I was renaming it over and over again. I put the (.) infront of the / and that helped. thank you so much!

    – marcello1988
    Aug 10 at 5:28











  • If you're happy with the answer, please consider accepting the answer below.

    – guiverc
    Aug 10 at 6:33













0












0








0








I trying to learn how to move files around. I made some test files and directories to practice with. When I try to move a file from one directory to the other, the file just completely disappears.



I use "sudo mv testfile2.txt /Jupiter



Jupiter is one of my directories. It leaves the one its in but never shows up in Jupiter. I am at a loss of what to do. I have been using my Linux plus study guide and have already hit a brick wall with this. thank you.










share|improve this question















I trying to learn how to move files around. I made some test files and directories to practice with. When I try to move a file from one directory to the other, the file just completely disappears.



I use "sudo mv testfile2.txt /Jupiter



Jupiter is one of my directories. It leaves the one its in but never shows up in Jupiter. I am at a loss of what to do. I have been using my Linux plus study guide and have already hit a brick wall with this. thank you.







files directory mv






share|improve this question














share|improve this question











share|improve this question




share|improve this question










asked Aug 10 at 4:45









marcello1988marcello1988

1




1















  • I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory). You moved it to /Jupiter - ie. Jupiter in the / directory (which if not a directory, you renamed testfile2.txt to /Jupiter with the command.

    – guiverc
    Aug 10 at 4:49












  • That helped... I guess I was renaming it over and over again. I put the (.) infront of the / and that helped. thank you so much!

    – marcello1988
    Aug 10 at 5:28











  • If you're happy with the answer, please consider accepting the answer below.

    – guiverc
    Aug 10 at 6:33

















  • I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory). You moved it to /Jupiter - ie. Jupiter in the / directory (which if not a directory, you renamed testfile2.txt to /Jupiter with the command.

    – guiverc
    Aug 10 at 4:49












  • That helped... I guess I was renaming it over and over again. I put the (.) infront of the / and that helped. thank you so much!

    – marcello1988
    Aug 10 at 5:28











  • If you're happy with the answer, please consider accepting the answer below.

    – guiverc
    Aug 10 at 6:33
















I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory). You moved it to /Jupiter - ie. Jupiter in the / directory (which if not a directory, you renamed testfile2.txt to /Jupiter with the command.

– guiverc
Aug 10 at 4:49






I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory). You moved it to /Jupiter - ie. Jupiter in the / directory (which if not a directory, you renamed testfile2.txt to /Jupiter with the command.

– guiverc
Aug 10 at 4:49














That helped... I guess I was renaming it over and over again. I put the (.) infront of the / and that helped. thank you so much!

– marcello1988
Aug 10 at 5:28





That helped... I guess I was renaming it over and over again. I put the (.) infront of the / and that helped. thank you so much!

– marcello1988
Aug 10 at 5:28













If you're happy with the answer, please consider accepting the answer below.

– guiverc
Aug 10 at 6:33





If you're happy with the answer, please consider accepting the answer below.

– guiverc
Aug 10 at 6:33










1 Answer
1






active

oldest

votes


















3


















I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory).



You moved it to /Jupiter - ie. Jupiter in the / directory (which if directory named /Jupiter didn't already exist, you renamed testfile2.txt to /Jupiter with your command).






share|improve this answer



























    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%2f1164728%2ffiles-disappearing-after-mv-command%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









    3


















    I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory).



    You moved it to /Jupiter - ie. Jupiter in the / directory (which if directory named /Jupiter didn't already exist, you renamed testfile2.txt to /Jupiter with your command).






    share|improve this answer






























      3


















      I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory).



      You moved it to /Jupiter - ie. Jupiter in the / directory (which if directory named /Jupiter didn't already exist, you renamed testfile2.txt to /Jupiter with your command).






      share|improve this answer




























        3














        3










        3









        I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory).



        You moved it to /Jupiter - ie. Jupiter in the / directory (which if directory named /Jupiter didn't already exist, you renamed testfile2.txt to /Jupiter with your command).






        share|improve this answer














        I suspect you meant ./Jupiter (ie. Jupiter in the current or $PWD directory).



        You moved it to /Jupiter - ie. Jupiter in the / directory (which if directory named /Jupiter didn't already exist, you renamed testfile2.txt to /Jupiter with your command).







        share|improve this answer













        share|improve this answer




        share|improve this answer










        answered Aug 10 at 4:50









        guivercguiverc

        8,7602 gold badges18 silver badges28 bronze badges




        8,7602 gold badges18 silver badges28 bronze badges































            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%2f1164728%2ffiles-disappearing-after-mv-command%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

            Tamil (spriik) Luke uk diar | Nawigatjuun

            Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

            Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?