Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

agnos.is Forums

  1. Home
  2. Selfhosted
  3. introducing copyparty, the FOSS file server

introducing copyparty, the FOSS file server

Scheduled Pinned Locked Moved Selfhosted
selfhosted
131 Posts 81 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • I [email protected]

    Wo wo wow, is that my man JC Denton ??

    I This user is from outside of this forum
    I This user is from outside of this forum
    [email protected]
    wrote last edited by
    #122

    "There are two editors in case you hate one of them"

    You crack me up !!!

    1 Reply Last reply
    1
    • T [email protected]

      I made a video about copyparty, the selfhosted fileserver I've been making for the past 5 years.

      The main focus of the video is the features, but it also touches upon configuration. Was hoping it would be easier to follow than the readme on github... not sure how well that went, but hey 😄

      This video is also available to watch on the copyparty demo server, as a high-quality AV1 file and a lower-quality h264.

      gandalf_der_12te@discuss.tchncs.deG This user is from outside of this forum
      gandalf_der_12te@discuss.tchncs.deG This user is from outside of this forum
      [email protected]
      wrote last edited by
      #123

      this looks amazing! (from the youtube video. also the controls/features seem to be well thought-through) i'll give it a shot tomorrow

      1 Reply Last reply
      2
      • sxan@midwest.socialS [email protected]

        Are China Parties like Tupperware Parties, where friends get together and one shills a pyramid scheme? That's what CP is, right?

        gandalf_der_12te@discuss.tchncs.deG This user is from outside of this forum
        gandalf_der_12te@discuss.tchncs.deG This user is from outside of this forum
        [email protected]
        wrote last edited by [email protected]
        #124

        no, CP is copypasta, the thing you put into your food boxes.

        1 Reply Last reply
        1
        • T [email protected]

          I made a video about copyparty, the selfhosted fileserver I've been making for the past 5 years.

          The main focus of the video is the features, but it also touches upon configuration. Was hoping it would be easier to follow than the readme on github... not sure how well that went, but hey 😄

          This video is also available to watch on the copyparty demo server, as a high-quality AV1 file and a lower-quality h264.

          T This user is from outside of this forum
          T This user is from outside of this forum
          [email protected]
          wrote last edited by
          #125

          This looks great, nothing to check it out.

          1 Reply Last reply
          0
          • dojan@pawb.socialD [email protected]

            I bumped into copyparty the other month when looking for a software that could let me transfer files to a friend with the ability to pause/resume. Didn't bother with it, tried another software instead. Never really got it to work so I gave up on it.

            Bumped into the YouTube video today, decided to give copyparty a shot, damn sir you've written a fine piece of software. It's so easy to get up and configure. The UI is a bit janky, but charming at the same time. Thanks for all the hard work!

            enthusiasm_headquarters@lemmy.worldE This user is from outside of this forum
            enthusiasm_headquarters@lemmy.worldE This user is from outside of this forum
            [email protected]
            wrote last edited by
            #126

            "It's janky. It's charming. It works. It's Copyparty." ®

            1 Reply Last reply
            1
            • T [email protected]

              I made a video about copyparty, the selfhosted fileserver I've been making for the past 5 years.

              The main focus of the video is the features, but it also touches upon configuration. Was hoping it would be easier to follow than the readme on github... not sure how well that went, but hey 😄

              This video is also available to watch on the copyparty demo server, as a high-quality AV1 file and a lower-quality h264.

              S This user is from outside of this forum
              S This user is from outside of this forum
              [email protected]
              wrote last edited by
              #127

              Ho... Ly... Shit... This is great! The UI is a bit confusing at first but doesn't take long to get what's going on. I might even be disappointed with a UI revamp 😁 I can't believe how much functionality this has. It's already replacing some processes I have for mounting drives and backing up files. Maybe I missed something, but my only complaint would be the lack of an automatic one-way folder sync in the Party UP! app.

              I'm blown away, great job!

              1 Reply Last reply
              2
              • P [email protected]

                The fact you mention security features, without ever saying it's 'super secure' tells me you know a lot about what you're doing. I'm so sick of apps like this that start with "most secure app on the net" but you know they're delusional. Thank you, going to check this out.

                T This user is from outside of this forum
                T This user is from outside of this forum
                [email protected]
                wrote last edited by
                #128

                so uhh, sorry for the late response to this -- was going to reply much earlier, but then suddenly it became more timely than ever...

                the good news is, I'm fairly confident in how it handles the filesystem and permissions, preventing unauthorized access to files.

                but the part I'm a bit less sure about is sanitizing user data; the kind of vulnerabilities where someone uploads a malicious file and bad stuff happens if you then open that file in a certain way, or someone sends you a malicious link and trick you into clicking it -- in other words, the kind of vulnerabilities which require the attacker to have a certain level of access already, or that requires tricking you into doing something.

                ...and with version 1.18.5 released just now, we got a prime example of exactly one of those. Really unfortunate timing, but it's a blessing to have so many new and curious eyes on it to spot these sooner rather than later. It is what it is.

                1 Reply Last reply
                0
                • T [email protected]

                  sooo this is one of the things that started with someone saying "wouldn't it be funny if..."

                  if you open copyparty-sfx.py in a text editor, you'll see how -- but please make sure to use an editor which is able to handle about 600 KiB of comments which contain invalid utf8 / binary garbage 😁

                  I ended up rolling my own packer since I wanted optimal encoding efficiency, and everything I could find would do stuff like base85 or ucs2 tricks, but it turns out python is perfectly happy with binary garbage in comments if you declare that the file is latin-1 so it realizes all hope is lost 😄

                  the only drawback of the sfx.py is that it needs to extract to $TEMP before running, so that's the slight advantage of the zipapp (the .pyz alternative), but that suffers from some performance reduction in return, and is more hermetic (doesn't let you swap out the bundled dependencies with fresh versions as easily if necessary)

                  tatterdemalion@programming.devT This user is from outside of this forum
                  tatterdemalion@programming.devT This user is from outside of this forum
                  [email protected]
                  wrote last edited by
                  #129

                  Why not use zipapp?

                  https://docs.python.org/3.13/library/zipapp.html

                  1 Reply Last reply
                  0
                  • andres4ny@social.ridetrans.itA [email protected]

                    @tripflag @disobey2623 Your statement is correct; the way seafile stores files is in blocks (for de-duplication, apparently).

                    They offer a fuse extension that allows you to view stuff like a normal filesystem, though I've never tried it: https://manual.seafile.com/latest/extension/fuse/

                    D This user is from outside of this forum
                    D This user is from outside of this forum
                    [email protected]
                    wrote last edited by
                    #130

                    And obviously, encrypted folders can't be accessed through the file system even with the fuse add on, because that would break the whole point of encryption.

                    To me, the one big advantage Seafile has is its e2e encryption and encrypted folders, as it allows me to host it externally without allowing access to my files to the server administrator.

                    1 Reply Last reply
                    0
                    • T [email protected]

                      I made a video about copyparty, the selfhosted fileserver I've been making for the past 5 years.

                      The main focus of the video is the features, but it also touches upon configuration. Was hoping it would be easier to follow than the readme on github... not sure how well that went, but hey 😄

                      This video is also available to watch on the copyparty demo server, as a high-quality AV1 file and a lower-quality h264.

                      D This user is from outside of this forum
                      D This user is from outside of this forum
                      [email protected]
                      wrote last edited by
                      #131

                      I see flake.nix, i install.

                      1 Reply Last reply
                      0
                      Reply
                      • Reply as topic
                      Log in to reply
                      • Oldest to Newest
                      • Newest to Oldest
                      • Most Votes


                      • Login

                      • Login or register to search.
                      • First post
                        Last post
                      0
                      • Categories
                      • Recent
                      • Tags
                      • Popular
                      • World
                      • Users
                      • Groups