browse files // control panel

or choose your OS for cooler alternatives:

make this server appear on your computer as a regular HDD!
pick your favorite below (sorted by performance, best first) and lets 🎉

placeholders: pw=password, W:=mountpoint pw=password, mp=mountpoint

WebDAV

if you can, install winfsp+rclone and then paste this in cmd:

                rclone config create ASHubuntu-dav webdav url=https://files.ashie.lol vendor=owncloud pacer_min_sleep=0.01ms user=k pass=pw
                rclone mount --vfs-cache-mode writes --dir-cache-time 5s ASHubuntu-dav: W:
            

if you want to use the native WebDAV client in windows instead (slow and buggy), first run webdav-cfg.bat to remove the 47 MiB filesize limit (also fixes latency and password login), then connect:

                net use w: https://files.ashie.lol/ k /user:pw
            

rclone (v1.63 or later) is recommended:

                rclone config create ASHubuntu-dav webdav url=https://files.ashie.lol vendor=owncloud pacer_min_sleep=0.01ms user=k pass=pw
                rclone mount --vfs-cache-mode writes --dir-cache-time 5s ASHubuntu-dav: mp
            

alternatively use davfs2 (requires root, is slower, forgets lastmodified-timestamp on upload):

                yum install davfs2
                printf '%s\n' pw k | mount -t davfs -ouid=1000 https://files.ashie.lol/ mp
            

make davfs2 automount on boot:

                printf '%s\n' "https://files.ashie.lol/ pw k" >> /etc/davfs2/secrets
                printf '%s\n' "https://files.ashie.lol/ mp davfs rw,user,uid=1000,noauto 0 0" >> /etc/fstab
            

or the emergency alternative (gnome/gui-only):

                echo pw | gio mount davs://[email protected]/
            
                osascript -e ' mount volume "https://k:pw@files.ashie.lol/" '
            

or you can open up a Finder, press command-K and paste this instead:

                https://k:pw@files.ashie.lol/
            

replace https with http if it doesn't work

partyfuse

partyfuse.py -- fast, read-only, needs fuse.py in the same folder, needs winfsp doesn't need root

            partyfuse.py -a pw https://files.ashie.lol/ W:mp
        

you can use u2c.py to upload (sometimes faster than web-browsers)

Ï€