Hello
I try XNviewMP on ubuntu Karmic and it works, ilts a really great software but I don't know how to install it and create a shortcut in menu
I know it's not ./configure make make install
I know it's a QT app but there is no readme or install in directory
Bonjour
J'ai essayé XNviewMP dans ubuntu karmic et c'est vraiment un super logiciel mais je ne sais pas comment l'installer ni créer un raccourci dans le menu
Je sais que ce n'est pas ./configure make make install
Je sais que c'est une application QT mais il n'y a pas de readme ni install dans le dossier
Thanks / Merci
XnviewMP on Ubuntu Karmic
Moderators: helmut, XnTriq, xnview
Re: XnviewMP on Ubuntu Karmic
Hello breakolami,
I'm not a Linux user, but I guess this is the info you're looking for:
I'm not a Linux user, but I guess this is the info you're looking for:
xnview ([url=http://newsgroup.xnview.com/viewtopic.php?p=77915#p77915]XnView MP 0.21 Linux- crash on link start[/url]) wrote:Ok, use this xnview.shCode: Select all
#!/bin/sh dirname=`dirname $0` LD_LIBRARY_PATH=$dirname export LD_LIBRARY_PATH QT_PLUGIN_PATH=$dirname export QT_PLUGIN_PATH $dirname/xnview $@
Re: XnviewMP Linux
Hello,
Right, I think for the XnViewMP Linux version, the xnview.sh by default should be this one.
Right, I think for the XnViewMP Linux version, the xnview.sh by default should be this one.
Code: Select all
#!/bin/sh
dirname=`dirname $0`
LD_LIBRARY_PATH=$dirname
export LD_LIBRARY_PATH
QT_PLUGIN_PATH=$dirname
export QT_PLUGIN_PATH
$dirname/xnview "$@"
Last edited by oops66 on Tue Nov 24, 2009 6:54 pm, edited 1 time in total.
XnViewMP Linux X64 - Debian - X64
Re: XnviewMP on Ubuntu Karmic
You don't need to "install" the app. All you need to do is unzip it and run it from wherever you unzipped it.
To add XnView to the applications menu, you need to use System > Main Menu, then navigate to the menu you want to add to, then create a launcher.
You do need to make one change to xnview.sh (which can be found in the XnViewMP directory) so that it will open from a toolbar icon or shortcut: insert a new second line with this
If you unzipped it in your home directory, that can be abbreviated to
Where the "~/" takes the place of "/home/username".
To add XnView to the applications menu, you need to use System > Main Menu, then navigate to the menu you want to add to, then create a launcher.
You do need to make one change to xnview.sh (which can be found in the XnViewMP directory) so that it will open from a toolbar icon or shortcut: insert a new second line with this
Code: Select all
cd /path/to/xnview
Code: Select all
cd ~/path/to/xnview
--
michael
michael
-
- Posts: 1
- Joined: Mon Jul 04, 2016 6:28 am
Re: XnviewMP on Ubuntu Karmic
You do need to make one change to xnview.sh (which can be found in the XnViewMP directory) so that it will open from a toolbar icon or shortcut: insert a new second line with this???