Search results

  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord
  1. Shybella

    Problem .exe file doesn't upload

    Wait, the script checks for curl. So, if it's directing to wget.exe then curl isn't installed on the hosts Linux box. Who are you hosting with? If you mind me asking?
  2. Shybella

    Problem .exe file doesn't upload

    What wget.exe does is what wget does on Linux. It's a way to download file from a specified url. So, yeah looks like it If that script doesn't work from FTBInstall then try uploading that same script to the server host and see what happens. I wouldn't see a reason to block it. Most likely the...
  3. Shybella

    Problem .exe file doesn't upload

    cd "$(dirname "$0")" MCVER="1.7.10" JARFILE="minecraft_server.${MCVER}.jar" LAUNCHWRAPPER="net/minecraft/launchwrapper/1.11/launchwrapper-1.11.jar" which wget if [ $? -eq 0 ]; then wget -O ${JARFILE} https://s3.amazonaws.com/Minecraft.Download/versions/${MCVER}/${JARFILE} wget -O...
  4. Shybella

    Problem .exe file doesn't upload

    If this is a host for Minecraft servers will not work. Most likely they are using Linux. That won't execute .exe files. Sure, if they have Mono or something running but then again that's highly unlikely. Also, If they were running Windows that'd stop Windows binaries(.exe) from being executed...
  5. Shybella

    Johnleys fast and easy Server Setup Guide.

    I only brought this up because of the topic of this forum and also author purged Samba. I thought I'd introduce the idea. What I'll do is take the time and whip up a guide. Extend some of this. Either way, anyone opening server public should have the knowledge of these services and what they...
  6. Shybella

    Johnleys fast and easy Server Setup Guide.

    Here's the DoD's list of approved and in house standards. http://risacher.github.io/DoD-OSS-FAQ/ Cryptography and was introduced in 3.0. You are correct. 3.0 was also released over 10 years ago. 3.0 was also the first public and recommended release besides development. So, as of encryption...
  7. Shybella

    Johnleys fast and easy Server Setup Guide.

    Here's a quick guide. It takes less than 5 minutes to set this up. https://wiki.ubuntu.com/MountWindowsSharesPermanently Every major operating system supports CIFS.
  8. Shybella

    Problem Server Can't Keep Up

    Anytime, I'm glad I could help. :)
  9. Shybella

    Johnleys fast and easy Server Setup Guide.

    Samba is a CIFS service. This for a iSCSI(Like) for mounting a partitioned file system. As for security, CERN and DOD uses Samba because of its bulletproof features. You can easily encrypt the traffic, even down to custom cryptography. No different than a SVN. So, have the partition mounted on...
  10. Shybella

    Johnleys fast and easy Server Setup Guide.

    Samba is a wonderful utility. In this case making a tutorial on use of Samba for file management from Linux to Windows to OSX would greatly benefit and stop the use of other utilities.
  11. Shybella

    Problem Server Can't Keep Up

    This is a very good guide. https://blog.codecentric.de/en/2012/07/useful-jvm-flags-part-4-heap-tuning/
  12. Shybella

    Problem FTB Infinity, Direworlf, and Resurrection all crashing with same errors

    @seriousvern Is the best Yes. You need Java 8.
  13. Shybella

    DraconicEvolution with RC5 Fixes for 1.4.1 Infinity.

    Hello, This is the DraconicEvolution update with fixes for Infinity 1.4.1 ( will not prompt your players for mod differences) Changes - Added RC5 TileGrinder fix - Added RC5 Draconic Mining tool floating entities removal after 5 seconds if your inventory is full. Replace Draconic Evolution...
  14. Shybella

    Problem Server Can't Keep Up

    -XX:+CMSIncrementalPacing does nothing but statistic logging. Isn't needed and extra processing. -XX:+UseParNewGC is another type of Garbage Collector. UseParNewGC is typically used for applications that use < 1GB. G1GC handles large memory sizes with way greater optimized collecting times...
  15. Shybella

    Problem Server Can't Keep Up

    Yes, updating Forge wouldn't resolve the issue but It still would be a good idea given the recent Forge changes for fluid registry. Changelog: http://files.minecraftforge.net/maven/net/minecraftforge/forge/1.7.10-10.13.3.1395-1710ls/forge-1.7.10-10.13.3.1395-1710ls-changelog.txt The generation...
  16. Shybella

    Problem Server Can't Keep Up

    Ok, after further investigation. It has to deal with Fastcraft making modification to a field for loaded chunk hashmaps that store chunk data for said loaded chunks. So, this isn't a Forge problem. It's Mystcraft trying to improve performance when another mod has already made modifications. So...
  17. Shybella

    Problem Server Can't Keep Up

    Cauldron works as a simple bridge between Forge and Spigot, Spigot implements the Bukkit API which allows for plugins. How Cauldron does this is by creating bindings. These bindings do nothing but allow interpretations to be passed without conflict between Spigot and Forge which both directly...
  18. Shybella

    Problem Server Can't Keep Up

    Yes, Warmroast is a beautiful JVM profiling tool. If you drop --thread "Server thread" from the start script it'll show all threads besides your main Server Thread. This is very handy too. @UntoldForce I'm overall more than certain this has to do with Mystcraft. As you're not using Cauldron and...
  19. Shybella

    Problem Fluiduct crashing server? (Direwolf20)

    First, I'd start by trying to replicate the issue again. If you do, prevent yourself or players from causing said issue from happening. Figuring out how it happens and exactly what causes it will extend yourself on applying the correct tactic to start preventing the crash.