Duh google chrome terbaru jadi error ketika install di Backbox 5.3 dan atau Ubuntu Xenial. Dia selalu nanyain libu2f-dev yang entah apa itu. Bisa sih walaupun ada pesan error abis install chrome, tapi chromenya masih bisa berjalan. Cuma efeknya ketika melakukan perintah apt-get install/ update atau sebangsanya, jadi warning terus nanyain libu2f-dev yang tidak ada di system.
Ternyata begitu caranya menurut website stackoverflow
Creating a dummy package which provides libu2f-udev fixes the issue. I followed below steps for Ubuntu 16.04. Install equivs package
sudo apt install equivs
equivs-control libu2f-udev
This creates a file libu2f-udev. Edit this file and give libu2f-udev as value of "Package" and "Provides" keys. Then execute
equivs-build libu2f-udev
This creates dummy package libu2f-udev_1.0_all.deb. Install it by
sudo dpkg -i libu2f-udev_1.0_all.deb
All set.
### Commented entries have reasonable defaults.
### Uncomment to edit them.
# Source: <source package name; defaults to package name>
Section: misc
Priority: optional
# Homepage: <enter URL here; no default>
Standards-Version: 3.9.2
Package: libu2f-udev
# Version: <enter version here; defaults to 1.0>
# Maintainer: Your Name <yourname@example.com>
# Pre-Depends: <comma-separated list of packages>
# Depends: <comma-separated list of packages>
# Recommends: <comma-separated list of packages>
# Suggests: <comma-separated list of packages>
Provides: libu2f-udev
# Replaces: <comma-separated list of packages>
# Architecture: all
# Multi-Arch: <one of: foreign|same|allowed>
# Copyright: <copyright file; defaults to GPL2>
# Changelog: <changelog file; defaults to a generic changelog>
# Readme: <README.Debian file; defaults to a generic one>
# Extra-Files: <comma-separated list of additional files>
# Files: <pair of space-separated paths;>
# <more pairs, if there's more than one file to include.>
Description: <short description; defaults to some wise words>
long description and info
.
second paragraph
Leave a Reply