• Posts

    5
  • Joined

  • Last visited

Everything posted by [email protected]

  1. I'm not sure how long my gaming group is going to be on the Valheim kick, and at 16mb/day, I'm not overly concerned with storage. BUT you're right; it's good practice. I've edited the script to include a clean up action. Thanks!
  2. And thanks for the instructions. I've been running this docker with Valheim since Feb 4th, and it's been very stable. Here is my user script to backup World files; I have mine set to run at 03:30 daily. Note that your destination paths will be different, so make sure you update it to match your setup. #!/bin/bash # Create a compressed file archive as a backup for the Valheim server today=$(date '+%m_%d_%Y__%H_%M_%S') backup_path=/mnt/user/CA-backups/valheim_backup source_path=/mnt/user/appdata/valheim/.config/. backup_file=$backup_path/valheim_$today.7z 7z a -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=off $backup_file $source_path # Keep only the 10 newest backups ls -t $backup_path/*.7z | awk 'NR>10' | xargs --no-run-if-empty rm -f
  3. 1. This is working perfectly for me 2. Thank you so much for the work you've put into this container and the support you provide.
  4. Hi. Some linux users have indicated the issue may lie with how Steam handles IPv6 on the linux platform. Disabling IPv6 has resulted in faster download speeds. You can read about it here: https://old.reddit.com/r/linux_gaming/comments/b0jh6g/steam_download_speed_slow/ All the best!
  5. The incredible ease of use, while still being an very complex and in depth tool. Manual XML edits retained when re-editing via the GUI. Thank you, and best of luck everyone.