Shameless plug: I am the author.

  • tabular@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    3 个月前

    tmpfs (…) to build programs (…) to not be hammering my ssd with unnecessary writes

    Sounds useful. How did you setup the directory?

    Running df tells me “tmpfs” is mounted on /run. If I build in that that directory then would it be stored in RAM, or do I need to do something else?

    • Samueru@lemmy.ml
      link
      fedilink
      arrow-up
      3
      ·
      3 个月前

      I have /tmp in my fstab with these mount options.

      tmpfs /tmp tmpfs rw,noatime,size=20G 0 0

      And the rest of the setup is done in my zprofile

      • tabular@lemmy.world
        link
        fedilink
        English
        arrow-up
        2
        ·
        edit-2
        3 个月前

        I think I should be able to get this working following your zprofile file. Thanks!