sentinel-official / sentinel

Sentinel is an interoperable secure network layer offering the Sentinel Service Chain exclusively for distributed & decentralized native services like - dVPN, Sentrix (dChat and dVoIP) and more.
https://Sentinel.co
MIT License
301 stars 59 forks source link

Ubuntu - Dependency is not satisfiable: gksu #196

Open kamilkobak opened 3 years ago

kamilkobak commented 3 years ago

Hi

There is a dependency issue on Ubuntu 18.04, gksu was Removed From Ubuntu. Is there any solution ?

immartian commented 3 years ago

I have the same issue here, tried to fix it with apt upgrade --fix-broken but still shown:

The following packages have unmet dependencies:
 sentinel : Depends: libgconf2-4 but it is not installable
            Depends: gksu but it is not installable
bwoff11 commented 3 years ago

gksu has been deprecated. It's not longer part of mainline Debian, Ubuntu 18.04 and most all other Linux distros. Devs should use an alternative like pkexec.

kamilkobak commented 3 years ago

Thx

On Sun, 16 May 2021 at 03:39, Brandon @.***> wrote:

gksu has been deprecated. It's not longer part of mainline Debian, Ubuntu 18.04 and most all other Linux distros. Devs should use an alternative like pkexec.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/sentinel-official/sentinel/issues/196#issuecomment-841751568, or unsubscribe https://github.com/notifications/unsubscribe-auth/AM6YBN5KBQKH3FFCO6J4QP3TN4O4NANCNFSM4Z676O3Q .

--

Kamil Kobak

PayamPouryousefi commented 3 years ago

You might want to address this, but for the time being users facing this might find the following useful: Here's the error I saw:

sudo dpkg -i '/home/usr/Downloads/Sentinel_0.1.4_amd64.deb' 
Selecting previously unselected package sentinel.
(Reading database ... 212333 files and directories currently installed.)
Preparing to unpack .../Sentinel_0.1.4_amd64.deb ...
Unpacking sentinel (0.1.4-1) ...
dpkg: dependency problems prevent configuration of sentinel:
 sentinel depends on shadowsocks-libev; however:
  Package shadowsocks-libev is not installed.
 sentinel depends on wireguard; however:
  Package wireguard is not installed.

dpkg: error processing package sentinel (--install):
 dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.36.0-1ubuntu1) ...
Processing triggers for desktop-file-utils (0.24-1ubuntu3) ...
Processing triggers for mime-support (3.64ubuntu1) ...
Errors were encountered while processing:
 sentinel

Which was solved by installing shadow socks manually sudo apt install shadowsocks-libev, and then sudo apt --fix-broken install. So, you might want to install the unmet dependencies manually if fix broken isn't working.