View Full Version : TMP Free Space During Install?
Hello,
I'm trying to reinstall the game on my Linux partition, however I keep running out of space on my tmp folder. I currently have 4GB left there but the drive I want to install the game to has 19GB remaining. I also tried installing it on another drive with several hundred GBs remaining but it keeps filling up my cache/tmp before the installer runs.
Is there a way to run the installer while using a different folder for temporary files?
Thanks!
Slartibartfast
09-18-2014, 01:29 PM
Hello,
I'm trying to reinstall the game on my Linux partition, however I keep running out of space on my tmp folder. I currently have 4GB left there but the drive I want to install the game to has 19GB remaining. I also tried installing it on another drive with several hundred GBs remaining but it keeps filling up my cache/tmp before the installer runs.
Is there a way to run the installer while using a different folder for temporary files?
Thanks!
I don't know if install has hardcoded /tmp or it uses enviroment settings. Anyway, try temporarily changing your tmp directory location: http://stackoverflow.com/questions/14725493/default-tmp-location
Loque
09-18-2014, 02:33 PM
Welcome back Galynn, technically that shouldn't happen, 4GB is more than enough to get it going, my suspect is a corrupted installation medium, have you tried redownloading the newest version available or are you trying the install with some old copy? Either way, try the above suggestion. I have my doubts though. Good luck.
Edit: It might also help if you mention what distro, version and such.
-Zed-
09-18-2014, 02:43 PM
Like stated above, a fresh installer might just do it. If it still doesnt try to reinstall the game and delete all the previous files in folder C:/Program Files etc etc whatsoever (i.e. where old files were stored) and run the installer again. :D hope it gets solved for you and
Welcome Back
:swordfight:
Welcome back Galynn, technically that shouldn't happen, 4GB is more than enough to get it going, my suspect is a corrupted installation medium, have you tried redownloading the newest version available or are you trying the install with some old copy? Either way, try the above suggestion. I have my doubts though. Good luck.
Edit: It might also help if you mention what distro, version and such.
Thanks! This file was downloaded off the torrent from NGD's site about a month and a half ago. I'll try to re-download the installer from the website and see if that works.
I found it strange how the installer ate up 4GB while extracting the installation files. You may be right about it being corrupt.
I'm looking forward to trying the new balance update. :)
godismyjudge
09-18-2014, 02:53 PM
My advise: don't install it from installer. Just download the launcher (http://download01.championsofregnum.com/autopatch/launcher_linux64/rolauncher), put into any directory and run it. Launcher itself will download everything needed. This will also help you save some bandwidth, because you won't download 'old' resources with installer which will be then replaced by an update.
My advise: don't install it from installer. Just download the launcher (http://download01.championsofregnum.com/autopatch/launcher_linux64/rolauncher), put into any directory and run it. Launcher itself will download everything needed. This will also help you save some bandwidth, because you won't download 'old' resources with installer which will be then replaced by an update.
Thanks! That worked. :)
Adrian
09-18-2014, 03:22 PM
Welcome back, Galynn!
The game's sdbs are around 4.2 GB so that might be your problem. Yes, downloading the launcher as you've been told and setting up "download all resources at once" can be a solution.
Nowadays, having only 4 GB for /tmp is not a good choice for a gaming PC. :tonguey:
andres81
09-18-2014, 04:06 PM
Welcome back, Galynn!
The game's sdbs are around 4.2 GB so that might be your problem. Yes, downloading the launcher as you've been told and setting up "download all resources at once" can be a solution.
Nowadays, having only 4 GB for /tmp is not a good choice for a gaming PC. :tonguey:
I disagree on that, 4GB for /tmp is more than the recommended and usual sizes.
/tmp is meant as an temporarly storage for application data such as lockfiles, current configuration and such stuff and normal apllications are using just a few kB up to some MB for that.
/tmp is not the place to extract 4,2GB of data at once!
I have like 20 linux games here and several large applications using more than 5GB of disk space. Regnum is the only one that extracts its installation sources to /tmp. This is an absolut incorrect behaviour and causes problems in many systems. Default sizes for /tmp are usually around 2GB.
many modern Linux distributions don't even have a physical /tmp directory, they are using tmpfs instead of it. This means that everything what is stored in /tmp is just written in the memory (RAM) and not to the harddisc. Good luck with storing 4,2GB in the RAM to install Regnum. ;)
@NGD: you should really reconsider this installation procedure.
Adrian
09-18-2014, 04:07 PM
I disagree on that, 4GB for /tmp is more than the recommended and usual sizes.
/tmp is meant as an temporarly storage for application data such as lockfiles, current configuration and such stuff and normal apllications are using just a few kB up to some MB for that.
/tmp is not the place to extract 4,2GB of data at once!
I have like 20 linux games here and several large applications using more than 5GB of disk space. Regnum is the only one that extracts its installation sources to /tmp. This is an absolut incorrect behaviour and causes problems in many systems. Default sizes for /tmp are usually around 2GB.
We are poor and can only use non-licensed cross-platform installers :(
Welcome back, Galynn!
The game's sdbs are around 4.2 GB so that might be your problem. Yes, downloading the launcher as you've been told and setting up "download all resources at once" can be a solution.
Nowadays, having only 4 GB for /tmp is not a good choice for a gaming PC. :tonguey:
Haha yes! I underestimated the amount of space my root directory would take. I might reinstall Ubuntu anyway. Too many mistakes in this installation. I'll give "/" more space when I repartition.
Thank you all for your help! :dance:
andres81
09-18-2014, 04:33 PM
We are poor and can only use non-licensed cross-platform installers :(
If I remember right your installer allows you to define the directory where to extract the data using the --temp option - at least that was what allowed me to install the game last time.
I think the best solution would be to set this option by default to the directory where the user actually wants to install the game and if for some reason you really need a different place for it
/var/tmp is a much better place than /tmp because /var/tmp has to be on the harddisc by posix definition and is supposed to be more consistent and useable for larger files than /tmp.
However extracting there 4,2GB is still a bit much and might be problematic but at least it is better than using /tmp which might be a tempfs (=storage in RAM) and in the future probably will be tempfs on most distros ;)
Adrian
09-18-2014, 04:38 PM
If I remember right your installer allows you to define the directory where to extract the data using the --temp option - at least that was what allowed me to install the game last time.
I think the best solution would be to set this option by default to the directory where the user actually wants to install the game and if for some reason you really need a different place for it
/var/tmp is a much better place than /tmp because /var/tmp ahs to be on the harddisc by posix definition and is supposed to be more consistent and useable for larger files than /tmp.
However extracting there 4,2GB is still a bit much and might be problematic but at least it is better than using /tmp which might be a tempfs (=storage in RAM) and in the future probably will be tempfs on most distros ;)
Yes, I will test that next time I update the installers. Anyway, installers are almost deprecated in games as download managers have taken over. There should be a change there but finding a cross-platform download manager is not easy without paying a sum we can't afford, for now.
Awrath
09-19-2014, 08:31 PM
There are a number of solutions, the easiest of which is to use the installer via the command line, as e30 suggested.
mkdir ~/tmp
chmod +x ROInstall_64
./ROInstall_64 --mode console --temp /home/user/tmp/ --prefix /home/user/regnum/
Then let it do its thing and remove the tmp dir you created once it's done.
Another option is to remount tmpfs with more space but as this is based on your ram you run the risk of running out of ram. Other options include setting the temp dir to a physical location on your hard drive either in fstab or by remounting. Happy regnuming!
vBulletin® v3.8.7, Copyright ©2000-2024, vBulletin Solutions, Inc.