This repository was archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Wiki page for Unity Dependencies #14
Open
ItaySharon
wants to merge
1
commit into
RedHat-Israel:master
Choose a base branch
from
ItaySharon:Unity-Dependencies
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Unity Dependencies # | ||
Unity on linux requires some packages to work properly | ||
## Ubuntu & Debian ## | ||
To install the dependencies on Ubuntu / Debian you'll need to use `apt-get`. | ||
```` | ||
sudo apt-get install gconf-service lib32gcc1 lib32stdc++6 libasound2 libc6 libc6-i386 libcairo2 libcap2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libfreetype6 libgcc1 libgconf-2-4 libgdk-pixbuf2.0-0 libgl1-mesa-glx libgl1 libglib2.0-0 libglu1-mesa libglu1 libgtk2.0-0 libnspr4 libnss3 libpango1.0-0 libstdc++6 libx11-6 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxtst6 zlib1g debconf debconf-2.0 npm | ||
```` | ||
## Fedora ## | ||
since the packages are named differentially in Fedora, you'll need to run a differant command: | ||
```` | ||
sudo dnf install compat-libstdc++-33.i686 alsa-lib.i686 alsa-plugins-pulseaudio.i686 glibc-devel glibc-devel.i686 cairo cairo-devel cairomm-devel libjpeg-turbo-devel pango pango-devel pangomm pangomm-devel libcap-devel.i686 libcap-devel.x86_64 cups-libs.i686 dbus-libs.i686 fontconfig.i686 freetype.i686 libgcc.i686 GConf2 mesa-dri-drivers.i686 mesa-libGLU.i686 gtk2 nss-mdns.i686 pango.i686 libX11.i686 libXcomposite.i686 libXcursor.i686 libXext.i686 libXi.i686 libXrandr.i686 libXrender.i686 zlib.i686 debconf npm libstdc++.i686 | ||
```` | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why i686 packages and not x86_64 ?