Lemmy.ca
  • Communities
  • Create Post
  • Create Community
  • heart
    Support Lemmy
  • search
    Search
  • Login
  • Sign Up
ColdWater to linux4noobs@programming.dev · 10 months ago

30GB+ used on freash Arch install+KDE? Why?

message-square
35
link
fedilink
33

30GB+ used on freash Arch install+KDE? Why?

ColdWater to linux4noobs@programming.dev · 10 months ago
message-square
35
link
fedilink
alert-triangle
You must log in or register to comment.
  • unexposedhazard@discuss.tchncs.de
    link
    fedilink
    arrow-up
    14
    ·
    10 months ago

    Maybe you have a swap file that happens to be 16GB ?

    • ColdWaterOP
      link
      fedilink
      arrow-up
      5
      ·
      edit-2
      10 months ago

      I only allowed 4G for swap, maybe arch enabled zram and it used 8GB by default and I actually don’t need to create a swap partition?

      • superkret@feddit.org
        link
        fedilink
        arrow-up
        10
        ·
        10 months ago

        Arch doesn’t really do anything you don’t tell it to do during installation.
        That’s the entire point. After installing Arch, you know what your system does, cause you configured it.

  • Kalcifer@sh.itjust.works
    link
    fedilink
    arrow-up
    14
    arrow-down
    1
    ·
    edit-2
    10 months ago

    You can try using # du -h -d 1 / to locate the largest directory under /. Once you’ve located the largest directory, replace / with that directory. Repeat that until you find the culprit (if there is a single large directory).

    EDIT (2024-07-22T19:34Z): As suggested by @[email protected], you can also use a program like Filelight, which provides a visual and more comprehensive breakdown of the sizes of directories.

    • DarkThoughts@fedia.io
      link
      fedilink
      arrow-up
      15
      ·
      10 months ago

      You can use Filelight which is much simpler and more visual.

      • ByteOnBikes@slrpnk.net
        link
        fedilink
        arrow-up
        13
        ·
        10 months ago

        But it doesn’t make you feel like hackerman

        • SidewaysHighways@lemmy.world
          link
          fedilink
          arrow-up
          5
          ·
          10 months ago

          goddamn does it ever feel good to feel like a hackerman

      • Kalcifer@sh.itjust.works
        link
        fedilink
        arrow-up
        2
        ·
        10 months ago

        Agreed.

      • NostraDavid@programming.dev
        link
        fedilink
        arrow-up
        2
        ·
        10 months ago

        ncdu for the terminal. Also enables you to delete folders/files.

        • Oscar@programming.dev
          link
          fedilink
          English
          arrow-up
          1
          ·
          10 months ago

          gdu is another alternative. It is sometimes faster than ncdu for me.

    • FlexibleToast@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      10 months ago

      Df does that too, or did you mean du?

      • Kalcifer@sh.itjust.works
        link
        fedilink
        arrow-up
        4
        ·
        edit-2
        10 months ago

        Whoops! You are correct — I have updated the original comment. I’m not sure why I wrote df instead of du. This is a good example of why one should always be wary of blindly copying commands 😜 It begins to teeter on being potentially disastrous if I had instead wrote dd.

        • FlexibleToast@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          10 months ago

          Luckily the syntax wouldn’t have worked if it was dd

    • ColdWaterOP
      link
      fedilink
      arrow-up
      2
      ·
      10 months ago

      You’re a life saver I finally found the culprit

      • flambonkscious@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        5
        ·
        10 months ago

        Do tell! We need a follow up :)

        • ColdWaterOP
          link
          fedilink
          arrow-up
          4
          arrow-down
          1
          ·
          10 months ago

          It’s “Steam” inside .local eat up 6GB even though I have not open it yet and tmp files (almost 5GB) that is not clear itself after installing the OS

          • 0xDREADBEEF@programming.dev
            link
            fedilink
            English
            arrow-up
            1
            ·
            edit-2
            10 months ago

            A fresh Arch install included Steam? Or was this not a fresh install?

            • ColdWaterOP
              link
              fedilink
              arrow-up
              3
              ·
              10 months ago

              I install it during pacstrap

              • 0xDREADBEEF@programming.dev
                link
                fedilink
                English
                arrow-up
                2
                ·
                10 months ago

                Ah, I see. Just be aware that any additional file size when you get to the stage you can install KDE is pretty much considered the “bloat” part of installs, meaning you only make arch as bloated as you want after that. I like filelight in KDE https://apps.kde.org/filelight/

    • Artyom@lemm.ee
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      10 months ago

      Or you could use baobab to do the same thing if you want an answer within 10 minutes.

      • sunstoned@lemmus.org
        link
        fedilink
        English
        arrow-up
        2
        ·
        10 months ago

        Or dust if you want it fastest with a pretty graph

  • Potatisen@lemmy.world
    link
    fedilink
    arrow-up
    9
    ·
    10 months ago

    It might have something to do with the dolphin you’re keeping in there.

    • ColdWaterOP
      link
      fedilink
      arrow-up
      4
      arrow-down
      1
      ·
      10 months ago

      ?

      • Midnight Wolf@lemmy.world
        link
        fedilink
        English
        arrow-up
        10
        ·
        10 months ago

        Dolphins are quite large

        • radivojevic@discuss.online
          link
          fedilink
          arrow-up
          5
          ·
          10 months ago

          But they’re faster than lightning.

  • Kalcifer@sh.itjust.works
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    10 months ago

    Try the following command to list all installed packages sorted by size [source]:

    LC_ALL=C.UTF-8 pacman -Qi | awk '/^Name/{name=$3} /^Installed Size/{print $4$5, name}' | LC_ALL=C.UTF-8 sort -h

    There may be some unexpectedly large packages installed.

  • remram@lemmy.ml
    link
    fedilink
    English
    arrow-up
    5
    ·
    10 months ago

    Keep in mind that a part of the filesystem will be reserved on creation. Here if I create a completely empty ext4 filesystem with:

    truncate -s 230G /tmp/img
    mkfs.ext4 /tmp/img
    mount /tmp/img /mnt
    

    Dolphin reports “213.8 GiB free of 225.3 GiB (5% used)”

    screenshot

  • adam_y@lemmy.world
    link
    fedilink
    English
    arrow-up
    5
    ·
    10 months ago

    Freash on a leak

  • 𝘋𝘪𝘳𝘬@lemmy.ml
    link
    fedilink
    arrow-up
    4
    ·
    10 months ago

    Try running pacman -Scc to get rid of the pacman cache.

    Also: How did you install KDE?

    • ColdWaterOP
      link
      fedilink
      arrow-up
      4
      ·
      edit-2
      10 months ago

      I used “sudo pacman -S plasma sddm”

  • Fijxu@programming.dev
    link
    fedilink
    arrow-up
    4
    ·
    10 months ago
    ncdu /
    
  • EddyBot@discuss.tchncs.de
    link
    fedilink
    arrow-up
    3
    ·
    10 months ago

    sounds ok for me if you install the full KDE Plasma + all applications package group and add some basic software like LibreOffice

    • ColdWaterOP
      link
      fedilink
      arrow-up
      3
      ·
      10 months ago

      I used minimal plasma (pacman -S plasma)

      • sanpo@sopuli.xyz
        link
        fedilink
        arrow-up
        11
        ·
        10 months ago

        plasma-desktop is the minimal one.

      • LinearArray@programming.dev
        link
        fedilink
        English
        arrow-up
        1
        ·
        10 months ago

        use plasma-desktop, that’s the actual minimal one.

linux4noobs@programming.dev

linux4noobs@programming.dev

Subscribe from Remote Instance

Create a post
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: [email protected]

linux4noobs


Noob Friendly, Expert Enabling

Whether you’re a seasoned pro or the noobiest of noobs, you’ve found the right place for Linux support and information. With a dedication to supporting free and open source software, this community aims to ensure Linux fits your needs and works for you. From troubleshooting to tutorials, practical tips, news and more, all aspects of Linux are warmly welcomed. Join a community of like-minded enthusiasts and professionals driving Linux’s ongoing evolution.


Seeking Support?
  • Mention your Linux distro and relevant system details.
  • Describe what you’ve tried so far.
  • Share your solution even if you found it yourself.
  • Do not delete your post. This allows other people to see possible solutions if they have a similar problem.
  • Properly format any scripts, code, logs, or error messages.
  • Be mindful to omit any sensitive information such as usernames, passwords, IP addresses, etc.

Community Rules

  • Keep discussions respectful and amiable. This community is a space where individuals may freely inquire, exchange thoughts, express viewpoints, and extend help without encountering belittlement. We were all a noob at one point. Differing opinions and ideas is a normal part of discourse, but it must remain civil. Offenders will be warned and/or removed.
  • Posts must be Linux oriented
  • Spam or affiliate links will not be tolerated.
Visibility: Public
globe

This community can be federated to other instances and be posted/commented in by their users.

  • 18 users / day
  • 66 users / week
  • 154 users / month
  • 577 users / 6 months
  • 38 local subscribers
  • 2.01K subscribers
  • 179 Posts
  • 1.32K Comments
  • Modlog
  • mods:
  • PlutoParty@programming.dev
  • BE: 0.19.11
  • Modlog
  • Legal
  • Instances
  • Docs
  • Code
  • join-lemmy.org