Antsle Forum

Welcome to our Antsle community! This forum is to connect all Antsle users to post experiences, make user-generated content available for the entire community and more. 

Please note: This forum is about discussing one specific issue at a time. No generalizations. No judgments. Please check the Forum Rules before posting. If you have specific questions about your Antsle and expect a response from our team directly, please continue to use the appropriate channels (email: [email protected]) so every inquiry is tracked. 

Please or Register to create posts and topics.

Problem upgrading antman

I keep getting the following error when running upgrade-antman on my Antsle (I have an old one)

There is definitely over 1TB free space, so I am not sure what I need to do.

 

* Uncompressing files... ...
* Checking if we're running as root ... [ ok ]
* Checking installed edgeLinux version ... [ ok ]
* Ensuring antman service is running ...
* WARNING: antman has already been started [ ok ]
* Verifying ZFS filesystems ...
cannot create 'antlets/_backups': dataset already exists [ ok ]
* Stopping antman service ...
* Stopping antman ... [ ok ]
* Installing files ...
rsync: write failed on "/usr/local/antsleOS/antman/target/antman.jar": No space left on device (28)
rsync error: error in file IO (code 11) at receiver.c(393) [receiver=3.1.2]
* Installing upgrade files failed, aborting [ !! ]
* Installing files failed, aborting. [ !! ]
Error while upgrading antman
* Starting antman ...

Hi madpink:

From looking at the error message, it looks like your root partition may be full.

Try running the following commands:

Find out how much space is being used on root:

df -h /

Find out what files are larger than 300MB.

for f in `find / -xdev -type f -size +300M` ; do ls -lh $f ; done

Remove the files that aren't needed to free up space.