Skip to content

Commit 781a6d0

Browse files
committed
vagrant and wine installer scripts
1 parent 802e6ed commit 781a6d0

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

install-vagrant.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
wget -O - https://apt.releases.hashicorp.com/gpg | gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
4+
5+
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/hashicorp.list
6+
7+
apt update && apt install vagrant

install-wine.sh

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
3+
dpkg --add-architecture i386
4+
apt update && \
5+
apt install --assume-yes \
6+
cabextract \
7+
fluid-soundfont-gs \
8+
libasound2-plugins:i386 \
9+
libdbus-1-3:i386 \
10+
libsdl2-2.0-0:i386 \
11+
libsqlite3-0:i386 \
12+
mesa-utils \
13+
python3-lxml \
14+
python3-magic \
15+
python3-setproctitle \
16+
rar \
17+
unrar \
18+
vulkan-tools \
19+
wine32 \
20+
wine64 \
21+
wine64-preloader \
22+
wine64-tools \
23+
winetricks
24+
25+
# then adds Bottle, Steam, Lutris, etc.
26+
# Enjoy !

0 commit comments

Comments
 (0)