想在桌面上建个启动器,结果失败了。
nwn 是个脚本, 内容如下
代码: 全选
#!/bin/sh
# This script runs Neverwinter Nights from the current directory
export SDL_MOUSE_RELATIVE=0
export SDL_VIDEO_X11_DGAMOUSE=0
# If you do not wish to use the SDL library included in the package, remove
# ./lib from LD_LIBRARY_PATH
export LD_LIBRARY_PATH=./lib:./miles:$LD_LIBRARY_PATH
./nwmain $@
代码: 全选
antony@Ubuntu:~/games/nwn$ ./nwmain
./nwmain: error while loading shared libraries: libmss.so.6: cannot open shared object file: No such file or directory
antony@Ubuntu:~/games/nwn$
因为不会shell脚本,最好能简单讲解一下脚本的意思
谢谢大家