make this server appear on your computer as a regular HDD!
pick your favorite below (sorted by performance, best first) and lets 🎉
placeholders:
W:=mountpoint
mp=mountpoint
show qr
if you can, install winfsp+rclone and then paste this in cmd:
rclone config create satori-dav webdav url=http://luna.nadeko.net vendor=owncloud pacer_min_sleep=0.01ms
rclone mount --vfs-cache-mode writes --dir-cache-time 5s satori-dav: W:
= with (space)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: http://luna.nadeko.net/
rclone (v1.63 or later) is recommended:
rclone config create satori-dav webdav url=http://luna.nadeko.net vendor=owncloud pacer_min_sleep=0.01ms
rclone mount --vfs-cache-mode writes --dir-cache-time 5s satori-dav: mp
rclone mount as root? add --allow-other= with (space)alternatively use davfs2 (requires root, is slower, forgets lastmodified-timestamp on upload):
yum install davfs2
mount -t davfs -ouid=1000 http://luna.nadeko.net/ mp
or the emergency alternative (gnome/gui-only):
gio mount -a dav://luna.nadeko.net/
on KDE Dolphin, use webdav://luna.nadeko.net/
osascript -e ' mount volume "http://k:hunter2@luna.nadeko.net/" '
or you can open up a Finder, press command-K and paste this instead:
http://k:hunter2@luna.nadeko.net/
partyfuse.py -- fast, read-only, needs fuse.py in the same folder, needs winfsp doesn't need root
partyfuse.py http://luna.nadeko.net/ W:mp
you can use u2c.py to upload (sometimes faster than web-browsers)
to upload screenshots using ShareX v15+, save this as copyparty.sxcu and run it:
{ "Version": "15.0.0", "Name": "copyparty",
"RequestURL": "http://luna.nadeko.net/",
"Headers": {
"accept": "url"
},
"DestinationType": "ImageUploader, TextUploader, FileUploader",
"Body": "MultipartFormData", "URL": "{response}",
"RequestMethod": "POST", "FileFormName": "f" }
for ShareX v12 specifically, save this as copyparty.sxcu and run it:
{ "Name": "copyparty",
"RequestURL": "http://luna.nadeko.net/",
"Headers": {
"accept": "url"
},
"DestinationType": "ImageUploader, TextUploader, FileUploader",
"FileFormName": "f" }
to upload screenshots using ishare, save this as copyparty.iscu and run it:
{ "Name": "copyparty",
"RequestURL": "http://luna.nadeko.net/",
"Headers": {
"accept": "json"
},
"ResponseURL": "{{fileurl}}",
"FileFormName": "f" }
to upload screenshots using flameshot, save this as flameshot.sh and run it:
#!/bin/bash
pw="hunter2"
url="http://luna.nadeko.net/"
filename="$(date +%Y-%m%d-%H%M%S).png"
flameshot gui -s -r | curl -sT- "$url$filename?want=url&pw=$pw" | xsel -ib