Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. from ubuntu as patched
  2. run apt-get update; \
  3. apt-get install software-properties-common apt-utils debconf-utils -y; \
  4. apt-get install --reinstall ca-certificates; \
  5. add-apt-repository multiverse; \
  6. dpkg --add-architecture i386; \
  7. apt-get update;
  8.  
  9. from patched as steamcmd
  10. copy rust.sh .
  11. run echo steamcmd steam/question select "I AGREE" | debconf-set-selections; \
  12. echo steamcmd steam/license note '' | debconf-set-selections; \
  13. echo steamcmd steam/purge note '' | debconf-set-selections; \
  14. apt-get install lib32gcc1 steamcmd -y; \
  15. ln -s /usr/games/steamcmd steamcmd; \
  16. ./steamcmd +quit; #First run.
  17.  
  18. from steamcmd
  19. run mkdir ./rust; \
  20. ./steamcmd +login anonymous +force_install_dir ./rust +app_update 258550 +quit;
  21.  
  22. cmd /bin/sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement