0%

linux安装wiznote

linux安装wine

wiznote_2.3.2.4_amd64.deb安装包下载好

尝试安装

1
2
3
4
5
6
7
dassein@pad:~/Downloads$ su root
Password:
root@pad:/home/dassein/Downloads# dpkg -i wiznote_2.3.2.4_amd64.deb
Selecting previously unselected package wiznote.
(Reading database ... 396452 files and directories currently installed.)
Preparing to unpack wiznote_2.3.2.4_amd64.deb ...
Unpacking wiznote (2.3.2.4) ...

错误信息

libqtwebkit4没安装

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
dpkg: dependency problems prevent configuration of wiznote:
wiznote depends on libqtwebkit4 (>= 2.2~2011week36); however:
Package libqtwebkit4 is not installed.

dpkg: error processing package wiznote (--install):
dependency problems - leaving unconfigured
Processing triggers for hicolor-icon-theme (0.15-1) ...
Processing triggers for bamfdaemon (0.5.3+16.10.20160929-0ubuntu1) ...
Rebuilding /usr/share/applications/bamf-2.index...
Processing triggers for gnome-menus (3.13.3-6ubuntu4) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu1) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Errors were encountered while processing:
wiznote
root@pad:/home/dassein/Downloads# apt-get install libqtwebkit4
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libqtwebkit4 : Depends: libqt4-opengl (>= 4:4.5.3) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
root@pad:/home/dassein/Downloads# apt-get -f install libqt4-opengl
Reading package lists... Done
Building dependency tree
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
wiznote : Depends: libqtwebkit4 (>= 2.2~2011week36) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
root@pad:/home/dassein/Downloads#

解决方案

apt-get install libqtwebkit4 不行

1
2
The following packages have unmet dependencies:
libqtwebkit4 : Depends: libqt4-opengl (>= 4:4.5.3) but it is not going to be installed

apt-get install libqt4-opengl还不行

1
2
3
The following packages have unmet dependencies:
wiznote : Depends: libqtwebkit4 (>= 2.2~2011week36) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

最后solution:

1
2
root@pad:/home/dassein/Downloads# apt-get -f install libqt4-opengl libqtwebkit4
root@pad:/home/dassein/Downloads# dpkg -i wiznote_2.3.2.4_amd64.deb