佳丽云

英雄无敌3-WoG中文站

 找回密码
 英雄注册|Register
查看: 1444|回复: 4

Ubuntu Linux 18.10下面安装魔法门之英雄无敌3

[复制链接]

 成长值: 26815

  • TA的每日心情
    无聊
    2020-5-27 00:09
  • 签到天数: 24 天

    连续签到: 2 天

    [LV.4]狂狼人

    5765

    回帖

    2696万

    金币

    42

    精华

    管理员

    精灵奇侠

    Rank: 12Rank: 12Rank: 12

    积分
    9244658

    社区QQ达人论坛创始人杰出贡献论坛元老

    发表于 2020-2-21 14:32:37 | 显示全部楼层 |阅读模式
    不废话,直接进入正题:
    1.Heroes.of.Might.and.Magic.3.Linux.[mulek.info].iso
    这个资源是32位
    下载链接:

    链接: https://pan.baidu.com/s/1Cut226Ipk8g20ja2aAejbw
    提取码: yrpq
    2.Xubuntu18.10 amd64

    好了你们会发现我上面的是64位系统下面打算安装32位的,别担心,我会告诉你怎么做.

    3.这个iso里面的文件全部解压拷贝到一个文件夹,注意不要用什么mount命令,那是很多年前的教程,已经不适用于最新的linux系统了.

    然后setup.sh修改如下:
    1. #!/bin/sh
    2. #
    3. # Product setup script - Loki Entertainment Software

    4. # Go to the proper setup directory (if not already there)
    5. cd `dirname $0`

    6. # Return the appropriate architecture string
    7. function DetectARCH {
    8.         status=1
    9.         case `uname -m` in
    10.                 i?86)  echo "x86"
    11.                         status=0;;
    12.                 *)     echo "`uname -m`"
    13.                         status=0;;
    14.         esac
    15.         return $status
    16. }

    17. # Return the appropriate version string
    18. function DetectLIBC {
    19.       status=1
    20.       if [ -f `echo /lib/i386-linux-gnu/libc.so.6* | tail -1` ]; then
    21.               if fgrep GLIBC_2.1 /lib/libc.so.6* 2>&1 >/dev/null; then
    22.                       echo "glibc-2.1"
    23.                       status=0
    24.               else   
    25.                       echo "glibc-2.0"
    26.                       status=0
    27.               fi        
    28.       elif [ -f /lib/libc.so.5 ]; then
    29.               echo "libc5"
    30.               status=0
    31.       else
    32.               echo "unknown"
    33.       fi
    34.       return $status
    35. }

    36. # Detect the Linux environment
    37. arch=`DetectARCH`
    38. libc=`DetectLIBC`
    39. arch="x86"
    40. libc="libc6"

    41. # Find the installation program
    42. function try_run
    43. {
    44.     setup=$1
    45.     shift
    46.     fatal=$1
    47.     if [ "$1" != "" ]; then
    48.         shift
    49.     fi

    50.     # First find the binary we want to run
    51.     failed=0
    52.     setup_bin="setup.data/bin/$arch/$libc/$setup"
    53.     echo $setup_bin
    54.     if [ ! -f "$setup_bin" ]; then
    55.         setup_bin="setup.data/bin/$arch/$setup"
    56.         if [ ! -f "$setup_bin" ]; then
    57.             failed=1
    58.         fi
    59.     fi
    60.     if [ "$failed" -eq 1 ]; then
    61.         if [ "$fatal" != "" ]; then
    62.             cat <<__EOF__
    63. This installation doesn't support $libc on $arch

    64. Please contact Loki Technical Support at support@lokigames.com
    65. __EOF__
    66.             exit 1
    67.         fi
    68.         return $failed
    69.     fi

    70.     # Try to run the binary
    71.     # The executable is here but we can't execute it from CD
    72.     setup="$HOME/.setup$"
    73.     cp "$setup_bin" "$setup"
    74.     chmod 700 "$setup"
    75.     if [ "$fatal" != "" ]; then
    76.         "$setup" $*
    77.         failed=$?
    78.     else
    79.         "$setup" $* 2>/dev/null
    80.         failed=$?
    81.     fi
    82.     rm -f "$setup"
    83.     return $failed
    84. }


    85. # Try to run the setup program
    86. status=0
    87. rm -f "$setup"
    88. if ! try_run setup.gtk && ! try_run setup -fatal; then
    89.     echo "The setup program seems to have failed on $arch/$libc"
    90.     echo
    91.     echo "Please contact Loki Technical Support at support@lokigames.com"
    92.     status=1
    93. fi
    94. exit $status

    复制代码

    有些同学担心上面的glibc版本以及libc版本不一致咋办,没事,别担心,就按照我的来改.
    稍微解释下:
    这里面


    1. arch=`DetectARCH`
    2. libc=`DetectLIBC`
    复制代码

    是在调用函数,DetectARCH和DetectLIBC是两个函数,我特意做了修改.如果不是和我一样的系统,请根据自己的情况来修改


    下面是完整的安装过程:

    1. (python3.6) appleyuchi@ubuntu:英雄无敌修改版$ bash setup.sh
    2. setup.data/bin/x86/libc6/setup.gtk
    3. setup.data/bin/x86/libc6/setup
    4. ----====== Heroes of Might and Magic III installation program ======----

    5. You are running a x86 machine with libc5
    6. Hit Control-C anytime to cancel this installation program.

    7. Please enter the installation path [/usr/local/games/Heroes3] /home/appleyuchi/Heros3
    8. Please enter the path for binary installation [/usr/local/bin] /home/appleyuchi/Heros3/Heros3_bin
    9. Install Base Install? [Y/n] Y
    10. Install Scenarios? [N/y] Y
    11. Install Sounds and Graphics? [N/y] y
    12. Install Music? [N/y] y
    13. Install Videos? [N/y] y
    14. Do you want to install desktop items? [Y/n] Y
    15. Installing to /home/appleyuchi/Heros3
    16. 272873 MB available, 341 MB will be installed.

    17. Continue install? [Y/n] Y
    18. Installing heroes3 binary ...
    19. 100% - /home/appleyuchi/Heros3/heroes3
    20. Installing Base Install ...
    21. 100% - /home/appleyuchi/Heros3/Heroes_III_Tutorial.pdf
    22. 100% - /home/appleyuchi/Heros3/README
    23. 100% - /home/appleyuchi/Heros3/icon.bmp
    24. 100% - /home/appleyuchi/Heros3/icon.xpm
    25. Installing Scenarios ...
    26. 100% - /home/appleyuchi/Heros3/maps/all for one.h3m
    27. 100% - /home/appleyuchi/Heros3/maps/ascension.h3m
    28. 100% - /home/appleyuchi/Heros3/maps/barbarian breakout.h3m
    29. 100% - /home/appleyuchi/Heros3/maps/barbarian breakouta.h3m
    30. 100% - /home/appleyuchi/Heros3/maps/buried treasure.h3m
    31. 100% - /home/appleyuchi/Heros3/maps/crimson and clover.h3m
    32. 100% - /home/appleyuchi/Heros3/maps/crimson and clovera.h3m
    33. 100% - /home/appleyuchi/Heros3/maps/dead and buried.h3m
    34. 100% - /home/appleyuchi/Heros3/maps/divided loyalties.h3m
    35. 100% - /home/appleyuchi/Heros3/maps/divided loyaltiesa.h3m
    36. 100% - /home/appleyuchi/Heros3/maps/dragon orb.h3m
    37. 100% - /home/appleyuchi/Heros3/maps/emerald isles.h3m
    38. 100% - /home/appleyuchi/Heros3/maps/emerald islesa.h3m
    39. 100% - /home/appleyuchi/Heros3/maps/free for all.h3m
    40. 100% - /home/appleyuchi/Heros3/maps/good to go.h3m
    41. 100% - /home/appleyuchi/Heros3/maps/island of fire.h3m
    42. 100% - /home/appleyuchi/Heros3/maps/islands and caves.h3m
    43. 100% - /home/appleyuchi/Heros3/maps/judgement day.h3m
    44. 100% - /home/appleyuchi/Heros3/maps/key to victory.h3m
    45. 100% - /home/appleyuchi/Heros3/maps/knee deep in the dead.h3m
    46. 100% - /home/appleyuchi/Heros3/maps/knight of darkness.h3m
    47. 100% - /home/appleyuchi/Heros3/maps/manifest destiny.h3m
    48. 100% - /home/appleyuchi/Heros3/maps/middletown.h3m
    49. 100% - /home/appleyuchi/Heros3/maps/myth and legend.h3m
    50. 100% - /home/appleyuchi/Heros3/maps/noahs ark.h3m
    51. 100% - /home/appleyuchi/Heros3/maps/overthrow thy neighbors.h3m
    52. 100% - /home/appleyuchi/Heros3/maps/peacemaker.h3m
    53. 100% - /home/appleyuchi/Heros3/maps/pirates.h3m
    54. 100% - /home/appleyuchi/Heros3/maps/race for ardintinny.h3m
    55. 100% - /home/appleyuchi/Heros3/maps/realm of chaos.h3m
    56. 100% - /home/appleyuchi/Heros3/maps/realm of chaosa.h3m
    57. 100% - /home/appleyuchi/Heros3/maps/rebellion.h3m
    58. 100% - /home/appleyuchi/Heros3/maps/rumble in the bogs.h3m
    59. 100% - /home/appleyuchi/Heros3/maps/rumble in the bogsa.h3m
    60. 100% - /home/appleyuchi/Heros3/maps/search for the grail.h3m
    61. 100% - /home/appleyuchi/Heros3/maps/serpents treasure.h3m
    62. 100% - /home/appleyuchi/Heros3/maps/southern cross.h3m
    63. 100% - /home/appleyuchi/Heros3/maps/the five rings.h3m
    64. 100% - /home/appleyuchi/Heros3/maps/the mandate of heaven.h3m
    65. 100% - /home/appleyuchi/Heros3/maps/titans winter.h3m
    66. 100% - /home/appleyuchi/Heros3/maps/tutorial.tut
    67. 100% - /home/appleyuchi/Heros3/maps/unholy quest.h3m
    68. 100% - /home/appleyuchi/Heros3/maps/vial of life.h3m
    69. 100% - /home/appleyuchi/Heros3/maps/warlords.h3m
    70. 100% - /home/appleyuchi/Heros3/maps/warlordsa.h3m
    71. 100% - /home/appleyuchi/Heros3/maps/warmongers.h3m
    72. 100% - /home/appleyuchi/Heros3/maps/when dragons clash.h3m
    73. 100% - /home/appleyuchi/Heros3/maps/wings of war.h3m
    74. 100% - /home/appleyuchi/Heros3/maps/xathras prize.h3m
    75. Installing Sounds and Graphics ...
    76. 100% - /home/appleyuchi/Heros3/data/h3bitmap.lod
    77. 100% - /home/appleyuchi/Heros3/data/h3sprite.lod
    78. 100% - /home/appleyuchi/Heros3/data/heroes3.snd
    79. 100% - /home/appleyuchi/Heros3/data/video/cevil1.mjpg
    80. 100% - /home/appleyuchi/Heros3/data/video/cevil2.mjpg
    81. 100% - /home/appleyuchi/Heros3/data/video/cgood1.mjpg
    82. 100% - /home/appleyuchi/Heros3/data/video/cgood2.mjpg
    83. 100% - /home/appleyuchi/Heros3/data/video/cgood3.mjpg
    84. 100% - /home/appleyuchi/Heros3/data/video/cneutral.mjpg
    85. 100% - /home/appleyuchi/Heros3/data/video/credits.mjpg
    86. 100% - /home/appleyuchi/Heros3/data/video/credits.pcx
    87. 100% - /home/appleyuchi/Heros3/data/video/csecret.mjpg
    88. 100% - /home/appleyuchi/Heros3/data/video/defendall.mjpg
    89. 100% - /home/appleyuchi/Heros3/data/video/defendloop.mjpg
    90. 100% - /home/appleyuchi/Heros3/data/video/lbloop.mjpg
    91. 100% - /home/appleyuchi/Heros3/data/video/lbstart.mjpg
    92. 100% - /home/appleyuchi/Heros3/data/video/losecslp.mjpg
    93. 100% - /home/appleyuchi/Heros3/data/video/losecstl.mjpg
    94. 100% - /home/appleyuchi/Heros3/data/video/pgtrnlft.mjpg
    95. 100% - /home/appleyuchi/Heros3/data/video/pgtrnrgh.mjpg
    96. 100% - /home/appleyuchi/Heros3/data/video/progressbar.mjpg
    97. 100% - /home/appleyuchi/Heros3/data/video/rtloop.mjpg
    98. 100% - /home/appleyuchi/Heros3/data/video/rtstart.mjpg
    99. 100% - /home/appleyuchi/Heros3/data/video/surrender.mjpg
    100. 100% - /home/appleyuchi/Heros3/data/video/tavern.mjpg
    101. 100% - /home/appleyuchi/Heros3/data/video/win3.mjpg
    102. Installing Music ...
    103. 100% - /home/appleyuchi/Heros3/mp3/aitheme0.mp3
    104. 100% - /home/appleyuchi/Heros3/mp3/aitheme1.mp3
    105. 100% - /home/appleyuchi/Heros3/mp3/aitheme2.mp3
    106. 100% - /home/appleyuchi/Heros3/mp3/campainmusic01.mp3
    107. 100% - /home/appleyuchi/Heros3/mp3/campainmusic02.mp3
    108. 100% - /home/appleyuchi/Heros3/mp3/campainmusic03.mp3
    109. 100% - /home/appleyuchi/Heros3/mp3/campainmusic04.mp3
    110. 100% - /home/appleyuchi/Heros3/mp3/campainmusic05.mp3
    111. 100% - /home/appleyuchi/Heros3/mp3/campainmusic06.mp3
    112. 100% - /home/appleyuchi/Heros3/mp3/campainmusic07.mp3
    113. 100% - /home/appleyuchi/Heros3/mp3/campainmusic08.mp3
    114. 100% - /home/appleyuchi/Heros3/mp3/campainmusic09.mp3
    115. 100% - /home/appleyuchi/Heros3/mp3/combat01.mp3
    116. 100% - /home/appleyuchi/Heros3/mp3/combat02.mp3
    117. 100% - /home/appleyuchi/Heros3/mp3/combat03.mp3
    118. 100% - /home/appleyuchi/Heros3/mp3/combat04.mp3
    119. 100% - /home/appleyuchi/Heros3/mp3/cstletown.mp3
    120. 100% - /home/appleyuchi/Heros3/mp3/defend castle.mp3
    121. 100% - /home/appleyuchi/Heros3/mp3/dirt.mp3
    122. 100% - /home/appleyuchi/Heros3/mp3/dungeon.mp3
    123. 100% - /home/appleyuchi/Heros3/mp3/eviltheme.mp3
    124. 100% - /home/appleyuchi/Heros3/mp3/fortresstown.mp3
    125. 100% - /home/appleyuchi/Heros3/mp3/goodtheme.mp3
    126. 100% - /home/appleyuchi/Heros3/mp3/grass.mp3
    127. 100% - /home/appleyuchi/Heros3/mp3/infernotown.mp3
    128. 100% - /home/appleyuchi/Heros3/mp3/lava.mp3
    129. 100% - /home/appleyuchi/Heros3/mp3/looplepr.mp3
    130. 100% - /home/appleyuchi/Heros3/mp3/lose campain.mp3
    131. 100% - /home/appleyuchi/Heros3/mp3/losecastle.mp3
    132. 100% - /home/appleyuchi/Heros3/mp3/losecombat.mp3
    133. 100% - /home/appleyuchi/Heros3/mp3/mainmenu.mp3
    134. 100% - /home/appleyuchi/Heros3/mp3/necrotown.mp3
    135. 100% - /home/appleyuchi/Heros3/mp3/neutraltheme.mp3
    136. 100% - /home/appleyuchi/Heros3/mp3/rampart.mp3
    137. 100% - /home/appleyuchi/Heros3/mp3/retreat battle.mp3
    138. 100% - /home/appleyuchi/Heros3/mp3/rough.mp3
    139. 100% - /home/appleyuchi/Heros3/mp3/sand.mp3
    140. 100% - /home/appleyuchi/Heros3/mp3/secrettheme.mp3
    141. 100% - /home/appleyuchi/Heros3/mp3/snow.mp3
    142. 100% - /home/appleyuchi/Heros3/mp3/stronghold.mp3
    143. 100% - /home/appleyuchi/Heros3/mp3/surrender battle.mp3
    144. 100% - /home/appleyuchi/Heros3/mp3/swamp.mp3
    145. 100% - /home/appleyuchi/Heros3/mp3/towertown.mp3
    146. 100% - /home/appleyuchi/Heros3/mp3/ultimatelose.mp3
    147. 100% - /home/appleyuchi/Heros3/mp3/underground.mp3
    148. 100% - /home/appleyuchi/Heros3/mp3/water.mp3
    149. 100% - /home/appleyuchi/Heros3/mp3/win battle.mp3
    150. 100% - /home/appleyuchi/Heros3/mp3/win scenario.mp3
    151. Installing Videos ...
    152. 100% - /home/appleyuchi/Heros3/data/heroes3cd.snd
    153. 100% - /home/appleyuchi/Heros3/data/video/3dologo.mpg
    154. 100% - /home/appleyuchi/Heros3/data/video/endgame.mpg
    155. 100% - /home/appleyuchi/Heros3/data/video/evil1a.mpg
    156. 100% - /home/appleyuchi/Heros3/data/video/evil1b.mpg
    157. 100% - /home/appleyuchi/Heros3/data/video/evil1c.mpg
    158. 100% - /home/appleyuchi/Heros3/data/video/evil2a.mpg
    159. 100% - /home/appleyuchi/Heros3/data/video/evil2ap1.mpg
    160. 100% - /home/appleyuchi/Heros3/data/video/evil2ap2.mpg
    161. 100% - /home/appleyuchi/Heros3/data/video/evil2b.mpg
    162. 100% - /home/appleyuchi/Heros3/data/video/evil2c.mpg
    163. 100% - /home/appleyuchi/Heros3/data/video/evil2d.mpg
    164. 100% - /home/appleyuchi/Heros3/data/video/good1a.mpg
    165. 100% - /home/appleyuchi/Heros3/data/video/good1b.mpg
    166. 100% - /home/appleyuchi/Heros3/data/video/good1c.mpg
    167. 100% - /home/appleyuchi/Heros3/data/video/good2a.mpg
    168. 100% - /home/appleyuchi/Heros3/data/video/good2b.mpg
    169. 100% - /home/appleyuchi/Heros3/data/video/good2c.mpg
    170. 100% - /home/appleyuchi/Heros3/data/video/good2d.mpg
    171. 100% - /home/appleyuchi/Heros3/data/video/good3a.mpg
    172. 100% - /home/appleyuchi/Heros3/data/video/good3b.mpg
    173. 100% - /home/appleyuchi/Heros3/data/video/good3c.mpg
    174. 100% - /home/appleyuchi/Heros3/data/video/h3intro.mpg
    175. 100% - /home/appleyuchi/Heros3/data/video/hsanim.mpg
    176. 100% - /home/appleyuchi/Heros3/data/video/hsloop.mpg
    177. 100% - /home/appleyuchi/Heros3/data/video/losegame.mpg
    178. 100% - /home/appleyuchi/Heros3/data/video/neutrala.mpg
    179. 100% - /home/appleyuchi/Heros3/data/video/neutralb.mpg
    180. 100% - /home/appleyuchi/Heros3/data/video/neutralc.mpg
    181. 100% - /home/appleyuchi/Heros3/data/video/nwclogo.mpg
    182. 100% - /home/appleyuchi/Heros3/data/video/secreta.mpg
    183. 100% - /home/appleyuchi/Heros3/data/video/secretb.mpg
    184. 100% - /home/appleyuchi/Heros3/data/video/secretc.mpg
    185. Would you like to view the README? [Y/n] Y

    186.                         Heroes of Might and Magic III
    187.                                Version 1.2
    188.                               November 9 1999




    189.        TABLE OF CONTENTS

    190.        1 System Requirements
    191.        2 Installation
    192.        3 Playing The Game
    193.        4 Troubleshooting
    194.        5 Contacting Loki Entertainment Software


    195. -----------------------
    196. (1) SYSTEM REQUIREMENTS
    197. -----------------------
    198.   Linux capable computer, Pentium class processor or better
    199.   Linux kernel version 2.2.x
    200.   32 MB RAM
    201.   4x CD-ROM drive
    202.   Video card capable of 800x600 resolution
    203.   XFree86 version 3.2 or newer at 16 bpp.
    204.   /dev/dsp sound device for audio
    205.     (the Enlightenment Sound Daemon is supported as well).
    206.   150 MB free hard disk space


    207. ------------------
    208. (2) INSTALLATION
    209. ------------------

    210. Mount the Heroes III CD and change the current directory to where
    211. it is mounted.  Type 'sh setup.sh' to run the install script.

    212. e.g.  Log in as root:
    213.         mount /mnt/cdrom
    214.         cd /mnt/cdrom
    215.         sh setup.sh


    216. --------------------
    217. (3) PLAYING THE GAME
    218. --------------------

    219.     Run 'heroes3' to start the game.

    220.     The first time you run Heroes III it will create a .loki/heroes3
    221.     directory in your home directory.  Saved games and preferences will
    222.     be stored here.

    223.     The following arguments may be given to Heroes III:

    224.         [-h | --help]       Display this help message
    225.         [-v | --version]    Display the game version
    226.         [-f | --fullscreen] Run the game fullscreen
    227.         [-w | --windowed]   Run the game in a window
    228.         [-s | --nosound]    Do not access the soundcard
    229.         [-c | --nocdrom]    Do not access the CD-ROM

    230.     Use Ctrl-G to toggle mouse grabbing.

    231.     Use Ctrl-Z to iconify the game when it is run in a window.

    232.     The Print Screen key will save the current screen to the ~/.loki/heroes3
    233.     directory.

    234.     If the Print Screen, Pause, or Alt-# keys are not working,
    235.     make sure your window manager is not overriding them.

    236.     String widgets have standard UNIX keybindings.

    237.         Ctrl-A - Move to beginning of line
    238.         Ctrl-E - Move to end of line
    239.         Ctrl-B - Move backwards
    240.         Ctrl-F - Move forwards
    241.         Ctrl-U - Erase line
    242.         Ctrl-D - Delete character
    243.         Ctrl-C - Copy to X clipboard
    244.         Ctrl-V - Paste from X clipboard

    245.     Dragging the middle mouse button will move the playfield.


    246. -------------------   
    247. (4) TROUBLESHOOTING   
    248. -------------------   
    249. The following are some of the more common problems you might have, and
    250. recommended solutions:

    251. A) There is no game sound.

    252.    First, check all your connections between your speakers and your
    253.    computer.  Make sure your speakers are turned on and receiving power.  
    254.    Make sure the volume is not turned down all the way.  You can change
    255.    sound and music volume in the 'Game Options' window.
    256.    If none of the above suggestions works, try producing sound in another
    257.    program.  If that does not work, make sure you have the sound driver
    258.    enabled in your kernel.  Finally, go to http://www.opensound.com/
    259.    to see whether a commercial driver is available for your sound card.

    260. B) Networking behind a firewall.

    261.    Networking behind a masqueraded network works only for two players.

    262.    If more than two players try to form a game, and one or more of them
    263.    are on different masqueraded networks, then the game will drop all
    264.    players but the host.

    265.    Heroes III uses TCP port 4269 for it's networking connections.

    266. ------------------------------------------
    267. (5) CONTACTING LOKI ENTERTAINMENT SOFTWARE
    268. ------------------------------------------

    269. Technical Support
    270. Support for Heroes of Might and Magic III is available from
    271. Loki Entertainment Software at:

    272.     Website:  http://www.lokigames.com/  Follow the links for support.

    273.     Usenet:   news://news.lokigames.com/loki.games.heroes3

    274.     Email:    support@lokigames.com

    275.     Phone:    801-356-7629. Telephone support is available between the hours
    276.               of 9 A.M. and 5 P.M. Mountain Standard Time.



    277. Installation complete.
    278. Would you like launch the game now? [Y/n]
    279. Creating Loki preferences directory: /home/appleyuchi/.loki/
    280. Creating heroes3 preferences directory: /home/appleyuchi/.loki/heroes3
    281. (python3.6) appleyuchi@ubuntu:英雄无敌修改版$
    282. (python3.6) appleyuchi@ubuntu:英雄无敌修改版$
    283. (python3.6) appleyuchi@ubuntu:英雄无敌修改版$
    284. (python3.6) appleyuchi@ubuntu:英雄无敌修改版$
    285. (python3.6) appleyuchi@ubuntu:英雄无敌修改版$ Couldn't open audio: Couldn't open audio device or ESD connection
    复制代码

    5.然后上面报错没有声音设备,我们接着研究:

    下面两条命令试了下,似乎是不行的,也没起作用

    modprobe snd-pcm-oss

    modprobe snd-mixer-oss

    下面的哪个包起作用了我不确定,我都安装了,安装后重启游戏就有声音了.

    apt install osspd pulseaudio-esound-compat

    以上这些是用来增加声音的

    因为游戏默认使用的是老系统的声音设备.

    所以老系统的驱动和新系统的驱动不一致,所以需要安装上述包.

    启动后效果如下:

    image.png.jpg

    Reference:
    [1]https://askubuntu.com/questions/318396/oss-compat-package-does-not-create-dev-dsp


  • TA的每日心情

    2020-3-14 15:43
  • 签到天数: 63 天

    连续签到: 1 天

    [LV.6]地狱战马

    113

    回帖

    1万

    金币

    0

    精华

    3级 Known Hero

    Rank: 3Rank: 3

    积分
    809
    发表于 2020-2-21 15:56:51 | 显示全部楼层
    必须大赞,linux福音
    回复 支持 反对

    使用道具 举报

  • TA的每日心情

    2024-2-11 20:35
  • 签到天数: 333 天

    连续签到: 1 天

    [LV.8]神圣凤凰

    285

    回帖

    1万

    金币

    0

    精华

    5级 Honorable Hero

    Rank: 5Rank: 5

    积分
    6378
    发表于 2020-2-21 22:22:02 | 显示全部楼层
    看标题以为是VCMI,看内容原来不是呀!支持一下
    不再沉默
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    开心
    2020-2-22 15:17
  • 签到天数: 19 天

    连续签到: 1 天

    [LV.4]狂狼人

    14

    回帖

    8129

    金币

    0

    精华

    2级 Adventuring Hero

    Rank: 2

    积分
    411
    发表于 2020-2-22 15:20:00 | 显示全部楼层
    厉害厉害!!!
    回复

    使用道具 举报

  • TA的每日心情
    开心
    2024-2-4 11:15
  • 签到天数: 96 天

    连续签到: 1 天

    [LV.6]地狱战马

    231

    回帖

    9699

    金币

    5

    精华

    论坛嘉宾

    Rank: 9Rank: 9Rank: 9

    积分
    3212
    发表于 2020-4-25 15:59:55 来自手机 | 显示全部楼层
    厉害!以前我在linux下都是装个playonlinux,用wine搞,想不到还有原生支持linux的h3
    回复 支持 反对

    使用道具 举报

    ahome_bigavatar:guest
    ahome_bigavatar:welcomelogin
    您需要登录后才可以回帖 登录 | 英雄注册|Register

    本版积分规则

    捐赠
    关注我们,英3Mod一网打尽!

    WoG中文站 ( 辽B2-20210485-10 )|辽公网安备 21128202000228 号

    GMT+8, 2024-3-28 21:28 , Processed in 0.581035 second(s), 14 queries , Gzip On, File On.

    Powered by Discuz! X3.4

    Copyright © 2004-2022, Beijing Second Sight Technology Co., LTD.

    快速回复 返回顶部 返回列表