Skip to content

Commit

Permalink
[#18] Add xz-utils package where tar is extracted
Browse files Browse the repository at this point in the history
In case when there is fresh linux installation, `tar -xf` might not work
correctly - without `xz-utils` package. That's why following command:
`sudo apt-get install xz-utils` has been added to script files that
execute `tar -xf` command.
  • Loading branch information
kniklas committed Aug 4, 2015
1 parent 0a24c66 commit e8003d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions setup-dillo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Install DILLO

# Get dependencies
sudo apt-get install zx-utils
mkdir -p ~/src
cd ~/src

Expand Down
3 changes: 2 additions & 1 deletion setup-ratpoison.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
# Ratpoison setup

# Install dependencies
sudo apt-get install xcompmgr gcc make xorg xorg
sudo apt-get install xcompmgr gcc make xorg xorg zx-utils
# xcompmgr - required for transparency config
# gcc make - required for compilation
# xorg xorg-dev - required for X dependencies
# zx-utils - required by tar gz

# Download source
mkdir -p ~/src
Expand Down
3 changes: 2 additions & 1 deletion setup-vmtools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
# Good if X is installed earlier!!

# Install dependencies
sudo apt-get install gcc make linux-headers-$(uname -r)
sudo apt-get install gcc make linux-headers-$(uname -r) zx-utils
# zx-utils - required by tar gz

# sudo mkdir /mnt/cdrom
# sudo mount /dev/cdrom /mnt/cdrom
Expand Down

0 comments on commit e8003d8

Please sign in to comment.