What am I supposed to so with this, nothing I've tried has worked. [duplicate]

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
-2
down vote

favorite













This question already has an answer here:



  • How can I debug why Ubuntu boots to BusyBox? [duplicate]

    3 answers



Busybox v1. 22. 1 (Ubuntu 1:1. 22. 0-19ubuntu2) built-in shell (ash) enter 'help' for a list of built-in commands.







share|improve this question












marked as duplicate by RoVo, pomsky, Elder Geek, Fabby, Kevin Bowen May 26 at 20:18


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 2




    What are you trying to do? What is your question?
    – RoVo
    May 24 at 13:45















up vote
-2
down vote

favorite













This question already has an answer here:



  • How can I debug why Ubuntu boots to BusyBox? [duplicate]

    3 answers



Busybox v1. 22. 1 (Ubuntu 1:1. 22. 0-19ubuntu2) built-in shell (ash) enter 'help' for a list of built-in commands.







share|improve this question












marked as duplicate by RoVo, pomsky, Elder Geek, Fabby, Kevin Bowen May 26 at 20:18


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 2




    What are you trying to do? What is your question?
    – RoVo
    May 24 at 13:45













up vote
-2
down vote

favorite









up vote
-2
down vote

favorite












This question already has an answer here:



  • How can I debug why Ubuntu boots to BusyBox? [duplicate]

    3 answers



Busybox v1. 22. 1 (Ubuntu 1:1. 22. 0-19ubuntu2) built-in shell (ash) enter 'help' for a list of built-in commands.







share|improve this question













This question already has an answer here:



  • How can I debug why Ubuntu boots to BusyBox? [duplicate]

    3 answers



Busybox v1. 22. 1 (Ubuntu 1:1. 22. 0-19ubuntu2) built-in shell (ash) enter 'help' for a list of built-in commands.





This question already has an answer here:



  • How can I debug why Ubuntu boots to BusyBox? [duplicate]

    3 answers









share|improve this question











share|improve this question




share|improve this question










asked May 24 at 13:38









M. N

1




1




marked as duplicate by RoVo, pomsky, Elder Geek, Fabby, Kevin Bowen May 26 at 20:18


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.






marked as duplicate by RoVo, pomsky, Elder Geek, Fabby, Kevin Bowen May 26 at 20:18


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









  • 2




    What are you trying to do? What is your question?
    – RoVo
    May 24 at 13:45













  • 2




    What are you trying to do? What is your question?
    – RoVo
    May 24 at 13:45








2




2




What are you trying to do? What is your question?
– RoVo
May 24 at 13:45





What are you trying to do? What is your question?
– RoVo
May 24 at 13:45











1 Answer
1






active

oldest

votes

















up vote
1
down vote













It should be showing you that the file system has uncleaned blocks. The message should be like this:



/dev/sda1 contains a file system with errors, check forced.
Inodes that were part of a corrupted orphan linked list found.
/dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
(i.e., without -a or -p options)
fsck exited with status code 4
The root filesystem on `/dev/sda1` requires a manual `fsck`

BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
Enter 'help' for a list of built-in-commands.

(initramfs)_


Anyways, you should first determine which partition you need to clean. In the above example, /dev/sda1 is the partition. According to the example, now you just need to run:



fsck /dev/sda1


Then press y key when asked for confirmation. And after that just press Enter when it asks for any more confirmation.
That's all. After it finishes cleaning the partition, type exit. And within a few seconds, you will boot up normally.






share|improve this answer



























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote













    It should be showing you that the file system has uncleaned blocks. The message should be like this:



    /dev/sda1 contains a file system with errors, check forced.
    Inodes that were part of a corrupted orphan linked list found.
    /dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
    (i.e., without -a or -p options)
    fsck exited with status code 4
    The root filesystem on `/dev/sda1` requires a manual `fsck`

    BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
    Enter 'help' for a list of built-in-commands.

    (initramfs)_


    Anyways, you should first determine which partition you need to clean. In the above example, /dev/sda1 is the partition. According to the example, now you just need to run:



    fsck /dev/sda1


    Then press y key when asked for confirmation. And after that just press Enter when it asks for any more confirmation.
    That's all. After it finishes cleaning the partition, type exit. And within a few seconds, you will boot up normally.






    share|improve this answer
























      up vote
      1
      down vote













      It should be showing you that the file system has uncleaned blocks. The message should be like this:



      /dev/sda1 contains a file system with errors, check forced.
      Inodes that were part of a corrupted orphan linked list found.
      /dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
      (i.e., without -a or -p options)
      fsck exited with status code 4
      The root filesystem on `/dev/sda1` requires a manual `fsck`

      BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
      Enter 'help' for a list of built-in-commands.

      (initramfs)_


      Anyways, you should first determine which partition you need to clean. In the above example, /dev/sda1 is the partition. According to the example, now you just need to run:



      fsck /dev/sda1


      Then press y key when asked for confirmation. And after that just press Enter when it asks for any more confirmation.
      That's all. After it finishes cleaning the partition, type exit. And within a few seconds, you will boot up normally.






      share|improve this answer






















        up vote
        1
        down vote










        up vote
        1
        down vote









        It should be showing you that the file system has uncleaned blocks. The message should be like this:



        /dev/sda1 contains a file system with errors, check forced.
        Inodes that were part of a corrupted orphan linked list found.
        /dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
        (i.e., without -a or -p options)
        fsck exited with status code 4
        The root filesystem on `/dev/sda1` requires a manual `fsck`

        BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
        Enter 'help' for a list of built-in-commands.

        (initramfs)_


        Anyways, you should first determine which partition you need to clean. In the above example, /dev/sda1 is the partition. According to the example, now you just need to run:



        fsck /dev/sda1


        Then press y key when asked for confirmation. And after that just press Enter when it asks for any more confirmation.
        That's all. After it finishes cleaning the partition, type exit. And within a few seconds, you will boot up normally.






        share|improve this answer












        It should be showing you that the file system has uncleaned blocks. The message should be like this:



        /dev/sda1 contains a file system with errors, check forced.
        Inodes that were part of a corrupted orphan linked list found.
        /dev/sda1: UNEXPECTED INCONSISTENCY; RUN fsck MANUALLY.
        (i.e., without -a or -p options)
        fsck exited with status code 4
        The root filesystem on `/dev/sda1` requires a manual `fsck`

        BusyBox v1.22.1 (Ubuntu 1:1.22.0-15ubuntu1) built-in shell (ash)
        Enter 'help' for a list of built-in-commands.

        (initramfs)_


        Anyways, you should first determine which partition you need to clean. In the above example, /dev/sda1 is the partition. According to the example, now you just need to run:



        fsck /dev/sda1


        Then press y key when asked for confirmation. And after that just press Enter when it asks for any more confirmation.
        That's all. After it finishes cleaning the partition, type exit. And within a few seconds, you will boot up normally.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 24 at 13:52









        pro neon

        1164




        1164












            Popular posts from this blog

            pylint3 and pip3 broken

            Missing snmpget and snmpwalk

            How to enroll fingerprints to Ubuntu 17.10 with VFS491