More actions
Added missing 'sudo' prefixes to commands. |
|||
| Line 25: | Line 25: | ||
[[Image:Evelauncher.png|thumb|right|Launcher icon]] | [[Image:Evelauncher.png|thumb|right|Launcher icon]] | ||
#Create a symbolic link (symlink) to the script in the user binaries folder | #Create a symbolic link (symlink) to the script in the user binaries folder | ||
#:{{code|ln -s {{Color|green|/Path/To/}}evelauncher.sh /usr/bin/evelauncher}} | #:{{code|sudo ln -s {{Color|green|/Path/To/}}evelauncher.sh /usr/bin/evelauncher}} | ||
#And make it executable | #And make it executable | ||
#:{{code|chmod u+x /usr/bin/evelauncher}} | #:{{code|sudo chmod u+x /usr/bin/evelauncher}} | ||
#Download the icon file | #Download the icon file | ||
#:{{code|wget <nowiki>https://wiki.eveuniversity.org/images/a/af/Evelauncher.png</nowiki>}} | #:{{code|wget <nowiki>https://wiki.eveuniversity.org/images/a/af/Evelauncher.png</nowiki>}} | ||
#Move the icon file to the correct directory | #Move the icon file to the correct directory | ||
#:{{code|sudo mv Evelauncher.png /usr/share/pixmaps/}} | #:{{code|sudo sudo mv Evelauncher.png /usr/share/pixmaps/}} | ||
#Create the launcher file with your preferred editor | #Create the launcher file with your preferred editor | ||
#:{{code| | #:{{code|sudoedit /usr/share/applications/eve.desktop}} | ||
#Insert the following text and then save it: | #Insert the following text and then save it: | ||
#:{{code|<nowiki>[Desktop Entry]</nowiki><br><nowiki>Name=EVE Online</nowiki><br><nowiki>Comment=EVE Online by CCP Games</nowiki><br><nowiki>Exec=evelauncher</nowiki><br><nowiki>Icon=Evelauncher</nowiki><br><nowiki>Terminal=false</nowiki><br><nowiki>Type=Application</nowiki><br><nowiki>Categories=Game;</nowiki>}} | #:{{code|<nowiki>[Desktop Entry]</nowiki><br><nowiki>Name=EVE Online</nowiki><br><nowiki>Comment=EVE Online by CCP Games</nowiki><br><nowiki>Exec=evelauncher</nowiki><br><nowiki>Icon=Evelauncher</nowiki><br><nowiki>Terminal=false</nowiki><br><nowiki>Type=Application</nowiki><br><nowiki>Categories=Game;</nowiki>}} | ||
| Line 61: | Line 61: | ||
#:{{code|sudo apt-get install libssl1.0.0}} | #:{{code|sudo apt-get install libssl1.0.0}} | ||
#Add symbolic links to the libraries in the launcher's folder | #Add symbolic links to the libraries in the launcher's folder | ||
#:{{code|ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 {{Color|green|/Path/To/evelauncher/}}libssl.so}} | #:{{code|sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 {{Color|green|/Path/To/evelauncher/}}libssl.so}} | ||
#:{{code|ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 {{Color|green|/Path/To/evelauncher/}}libcrypto.so}} | #:{{code|sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 {{Color|green|/Path/To/evelauncher/}}libcrypto.so}} | ||
<br> | <br> | ||