README 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. This repo is for the IAR archive of the SLOODLE rezzer.
  2. The contents of the IAR archive is stored in decompressed form.
  3. To import it into an OpenSim grid, you need to archive it with tar / gzip.
  4. Example:
  5. # Go into the directory containing the IAR.
  6. cd iar/
  7. # Archive the contents as a file called /tmp/sloodle.iar.
  8. # NB OpenSim may choke on the archive unless the files are archived in the specified order.
  9. # Also it prefers the directory/* formulation to avoid spurious errors.
  10. tar zcvf /tmp/sloodle.iar archive.xml inventory/* assets/*
  11. # In the OpenSim console, you should now be able to load the archive:
  12. load iar Your Avatar / yourpassw0rd /tmp/sloodle.iar
  13. To recreate this iar and update the Git repo, do the following:
  14. # Make a directory in inventory - recommend iar/export/sloodle
  15. # Make a directory on the disk that the opensim user can write to - recommend /tmp/iar/export
  16. mkdir /tmp/iar/export
  17. # In the OpenSim console, export the iar:
  18. save iar Your Avatar /iar/export/sloodle/ yourpassw0rd /tmp/iar/export/sloodle.iar
  19. # Remove the contents of the current iar directory, and unpack the new iar instead.
  20. rm -rf iar/*
  21. cd iar
  22. tar zxvf /tmp/iar/export/sloodle.iar
  23. # Tell Git to accept all the changes, commit and push
  24. git add .
  25. git commit -a
  26. git push