Advertisement
ice-pro

Untitled

Jun 1st, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 KB | None | 0 0
  1. $ grep -r ^deb /etc/apt/ --include="*.list"
  2.  
  3. /etc/apt/sources.list.d/lutris-team-ubuntu-lutris-focal.list:deb http://ppa.launchpad.net/lutris-team/lutris/ubuntu focal main
  4. /etc/apt/sources.list.d/team-xbmc-ubuntu-ppa-eoan.list:deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu focal main # disabled on upgrade to focal
  5. /etc/apt/sources.list.d/gnome3-team-ubuntu-gnome3-focal.list:deb http://ppa.launchpad.net/gnome3-team/gnome3/ubuntu focal main
  6. /etc/apt/sources.list.d/slack.list:deb https://packagecloud.io/slacktechnologies/slack/debian/ jessie main
  7. /etc/apt/sources.list.d/google-chrome.list:deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main
  8. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal main restricted
  9. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal-updates main restricted
  10. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal universe
  11. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal-updates universe
  12. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal multiverse
  13. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal-updates multiverse
  14. /etc/apt/sources.list:deb http://de.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
  15. /etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu focal-security main restricted
  16. /etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu focal-security universe
  17. /etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu focal-security multiverse
  18.  
  19. ---
  20.  
  21. $ dpkg --print-foreign-architectures
  22.  
  23. i386
  24.  
  25. ---
  26.  
  27. $ apt-cache policy winehq-stable wine-stable wine32 libwine:i386
  28.  
  29. wine-stable:
  30. Installed: (none)
  31. Candidate: 3.0.1ubuntu1
  32. Version table:
  33. 3.0.1ubuntu1 500
  34. 500 http://de.archive.ubuntu.com/ubuntu focal/universe amd64 Packages
  35. 500 http://de.archive.ubuntu.com/ubuntu focal/universe i386 Packages
  36. wine32:i386:
  37. Installed: (none)
  38. Candidate: 5.0-3ubuntu1
  39. Version table:
  40. 5.0-3ubuntu1 500
  41. 500 http://de.archive.ubuntu.com/ubuntu focal/universe i386 Packages
  42. libwine:i386:
  43. Installed: (none)
  44. Candidate: 5.0-3ubuntu1
  45. Version table:
  46. 5.0-3ubuntu1 500
  47. 500 http://de.archive.ubuntu.com/ubuntu focal/universe i386 Packages
  48. N: Unable to locate package winehq-stable
  49.  
  50. ### ^ this is because I have previously removed the repository
  51.  
  52. ---
  53.  
  54. $ dpkg -l | grep -i wine
  55.  
  56. ii fonts-wine 5.0-3ubuntu1 all Windows API implementation - fonts
  57. ii libkwineffects12 4:5.18.5-0ubuntu0.1 amd64 KDE window manager effects library
  58. ii libwine:amd64 5.0-3ubuntu1 amd64 Windows API implementation - library
  59. ii wine 5.0-3ubuntu1 all Windows API implementation - standard suite
  60. ii wine64 5.0-3ubuntu1 amd64 Windows API implementation - 64-bit binary loader
  61. ii winetricks 0.0+20200412-1 all simple tool to work around common problems in Wine
  62.  
  63. ### ^ for some reason I cannot see here wine32 which seams to be required as it is stated in the next section
  64.  
  65. ---
  66.  
  67. $ wine
  68.  
  69. it looks like wine32 is missing, you should install it.
  70. as root, please execute "apt-get install wine32"
  71. Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
  72. wine --help Display this help and exit
  73. wine --version Output version information and exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement