Meu nome é Davi, eu programo sites e faço pixel arte!

  • 11 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: June 22nd, 2023

help-circle



  • I think mine went something like this: Windows (for a long time) -> Zorin Os -> Linux Mint -> Ubuntu -> Fedora (I don’t remember how long I used any of them) -> Manjaro.

    Here I got myself into a hole, distrohopping aimlessly, like, I kept switching from distro to distro literally every day. I was checking my emails, and discovered that I have 156 confirmation emails from the ecosia search engine, so I guess that represents the many times I distrohopped during this time (about 5 or 6 months).

    I never really understood what happened there, maybe it was anxiety.

    And then I finally stopped at linux mint, I’ve been here for about a month (more time, i made many clean installs, but always returning to mint), I don’t intend to change.

    Maybe I’ve beaten distrohopping? well, I hope so.


















  • locale: Cannot set LC_CTYPE to default locale: No such file or directory
    locale: Cannot set LC_MESSAGES to default locale: No such file or directory
    locale: Cannot set LC_ALL to default locale: No such file or directory
    LANG=pt_BR
    LC_CTYPE="pt_BR"
    LC_NUMERIC="pt_BR"
    LC_TIME="pt_BR"
    LC_COLLATE="pt_BR"
    LC_MONETARY="pt_BR"
    LC_MESSAGES="pt_BR"
    LC_PAPER="pt_BR"
    LC_NAME="pt_BR"
    LC_ADDRESS="pt_BR"
    LC_TELEPHONE="pt_BR"
    LC_MEASUREMENT="pt_BR"
    LC_IDENTIFICATION="pt_BR"
    LC_ALL=
    
    

    Esses erros aí em cima eu corrigi com: export LC_ALL="pt_BR.UTF-8" Agora vai sem erros:

    LANG=pt_BR
    LC_CTYPE="pt_BR.UTF-8"
    LC_NUMERIC="pt_BR.UTF-8"
    LC_TIME="pt_BR.UTF-8"
    LC_COLLATE="pt_BR.UTF-8"
    LC_MONETARY="pt_BR.UTF-8"
    LC_MESSAGES="pt_BR.UTF-8"
    LC_PAPER="pt_BR.UTF-8"
    LC_NAME="pt_BR.UTF-8"
    LC_ADDRESS="pt_BR.UTF-8"
    LC_TELEPHONE="pt_BR.UTF-8"
    LC_MEASUREMENT="pt_BR.UTF-8"
    LC_IDENTIFICATION="pt_BR.UTF-8"
    LC_ALL=pt_BR.UTF-8
    

    Mas no próximo boot, LC_ALL não está setado

    Eu corrigi o locale naquele arquivo, /etc/locale.conf, eu tinha escrito errado, e corrigi agora a pouco.

    De acordo com esse passo na arch wiki:

    Create the locale.conf(5) file, and set the LANG variable accordingly:

    /etc/locale.conf
    ---------------------
    LANG=en_US.UTF-8
    

    No meu tá assim: LANG=pt_BR.UTF-8