Install .deb Package Error (dpkg error) Debian/Ubuntu machine - linux

I've been confronting an issue while installin .deb package on debian and ubuntu machine. i have tried various way but not able to install it.
it throws me an error below. I' trying to install snowagent on linux based machine. s
Not only this I've also tried following command sudo apt-get install agent.deb but each time when i run this command on shell it prompts me following error.
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package agent.deb
E: Couldn't find any package by glob 'agent.deb'
E: Couldn't find any package by regex 'agent.deb'
When i use "dpkg -s agent" its successful installation it prompts me status "Install ok half-configured"
Kindly assit.
Thanks

Related

Unable to locate package while installing vulkan and nvidia-graphics-drivers

I have been trying to set up UnrealEngine4 for my ubuntu 18.04.5 LTS system. I've followed this tutorial, https://docs.unrealengine.com/en-US/SharingAndReleasing/Linux/BeginnerLinuxDeveloper/SettingUpAnUnrealWorkflow/index.html
I have done everything up until launching UE4 with "./UE4Editor". In this step, UE4 opens up but says that there is no Vulkan installed and closes down again. I have tried to install the drivers and vulkan with this tutorial, https://linuxconfig.org/install-and-test-vulkan-on-linux. The problem here is that when I type "$ sudo apt install nvidia-graphics-drivers-396 nvidia-settings vulkan vulkan-utils" in the terminal, it gives the following error.
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package nvidia-graphics-drivers-418
E: Unable to locate package vulkan
No idea how to fix this. Please help.
That driver is proprietary. Consult the manual how to install it.
vulkan package is not something that exists. Probably meant to be libvulkan1, but should be installed as dependency.

Raspberry pi 64 bit Os showing Unable to locate package libjasper-dev. how to fix this?

I am using a raspberry pi 4.
And I installed a 64-bit (not 32-bit) Raspberry Pi OS.
When I tried to install libjasper-dev using the command
'sudo apt-get install libjasper-dev' as a part of OpenCV.
It is showing "Unable to locate package libjasper-dev".
Does anyone have any idea how to fix this, or how to compile OpenCV correctly on a Rasbian 64Bit ?
For example, this (among other errors) happens when installing the image raspios_lite_arm64-2021-11-08 on an 8GB Raspi4 and trying to follow the instructions on https://www.arducam.com/docs/cameras-for-raspberry-pi/synchronized-stereo-camera-hat/opencv-and-depth-map-on-arducam-stereo-camera-hat-tutorial/:
pi#roverpi:~ $ sudo apt-get install libhdf5-dev libhdf5-serial-dev libatlas-base-dev libjasper-dev libqtgui4 libqt4-test
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Note, selecting 'libhdf5-dev' instead of 'libhdf5-serial-dev'
Package libqtgui4 is not available but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package libjasper-dev
E: Package 'libqtgui4' has no installation candidate
E: Unable to locate package libqt4-test
Anyone know how to fix this

nautilus-terminal error due to gir1.2-vte-2.90

I like the idea of having a terminal connected to my nautilus file manager.
There is a package called nautilus-terminal which does this.
if I try to install it via sudo apt-get install nautilus-terminal I get the following error message:
The following packages have unmet dependencies:
nautilus-terminal : Depends: gir1.2-vte-2.90 but it is not installable
E: Unable to correct problems, you have held broken packages.
If I try to install it via sudo apt-get install gir1.2-vte-2.90
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package gir1.2-vte-2.90 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'gir1.2-vte-2.90' has no installation candidate
Does anybody know how to solve this?
This problem is because you already have gir1.2-vte-2.91 installed on your ubuntu but since the package name contains version number, it's not recognized as a higher version of gir1.2-vte-2.90 so you just need to provide a package with the name gir1.2-vte-2.90 and connect it to gir1.2-vte-2.91. This can be easily done by following the instructions of this answer.

E: Package 'gdb-arm-linux-gnueabi' has no installation candidate

I try to install gdb-ARM for cross compile on my ubuntu 14.04 x86 architecture . I want to debug a program on my target with an ARM architecture.I tried this command :
sudo apt-get install gdb-arm-linux-gnueabi
I got this error :
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package gdb-arm-linux-gnueabi is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'gdb-arm-linux-gnueabi' has no installation candidate
any help please ?
You may want to try sudo apt install binutils-mips64el-linux-gnuab or sudo apt install gdb-arm-none-eabi

Cannot install trac-batchmodify with apt-get

I'm using Ubuntu 14.04 and trying to install Trac Batch Modify with the following command:
$ sudo apt-get install -y trac-batchmodify
But get the following error:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package trac-batchmodify
Is there any reason for this package not to be available via apt-get?
Ubuntu 14.04 provides Trac 1.0.1. Trac 1.0.1 include BatchModify functionality. The BatchModifyPlugin was integrated into Trac. See TracBatchModify for more info.

Resources