Sample Header Ad - 728x90

Unix & Linux Stack Exchange

Q&A for users of Linux, FreeBSD and other Unix-like operating systems

Latest Questions

0 votes
1 answers
2827 views
Giving access to user-installed python distribution to another linux user
(I'm not sure exactly what SE site my question belongs, I hesitated between stackoverflow, serverfault and superuser. Feel free to give suggestions about this in the comments.) Here is my problem: I have two users on my linux computer, `bli` and `pquarato`. `bli` installed python3.6 locally (compili...
(I'm not sure exactly what SE site my question belongs, I hesitated between stackoverflow, serverfault and superuser. Feel free to give suggestions about this in the comments.) Here is my problem: I have two users on my linux computer, bli and pquarato. bli installed python3.6 locally (compiling from source with ./configure --prefix=${HOME}). The binary is installed in /home/bli/bin, pip3.6 installs things in /home/bli/.local/lib/python3.6/site-packages. For instance, numpy is installed there: (bli) $ pip3.6 install numpy Requirement already satisfied: numpy in /home/bli/.local/lib/python3.6/site-packages I want pquarato to be able to use bli's python installation. bli did chmod -R a+rx on /home/bli/bin and /home/bli/.local. pquarato can use bli's python3.6 binary, but it is not able to import modules installed with pip3.6: (pquarato) $ /home/bli/bin/python3.6 -c 'import numpy' Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'numpy' The above works without errors for bli. What else should I do? ----- Note: I actually first ran into a problem when trying to get pquarato to use programs such as ipython3: (pquarato) $ /home/bli/.local/bin/ipython3 Traceback (most recent call last): File "/home/bli/.local/bin/ipython3", line 6, in from pkg_resources import load_entry_point File "/home/bli/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3017, in @_call_aside File "/home/bli/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3003, in _call_aside f(*args, **kwargs) File "/home/bli/lib/python3.6/site-packages/pkg_resources/__init__.py", line 3030, in _initialize_master_working_set working_set = WorkingSet._build_master() File "/home/bli/lib/python3.6/site-packages/pkg_resources/__init__.py", line 659, in _build_master ws.require(__requires__) File "/home/bli/lib/python3.6/site-packages/pkg_resources/__init__.py", line 967, in require needed = self.resolve(parse_requirements(requirements)) File "/home/bli/lib/python3.6/site-packages/pkg_resources/__init__.py", line 853, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'ipython==6.2.1' distribution was not found and is required by the application I hope that the same solution will solve both the ModuleNotFoundError and the above DistributionNotFound issue.
bli (239 rep)
Apr 4, 2018, 11:57 AM • Last activity: Aug 6, 2025, 02:08 PM
2 votes
1 answers
3187 views
Problem with ldconfig during Tesseract installation: "/usr/local/lib is not a known library type"
I was following this instruction on this site to installing tesseract: https://github.com/tesseract-ocr/tesseract/wiki/Compiling git clone https://github.com/tesseract-ocr/tesseract.git cd tesseract ./autogen.sh ./configure make sudo make install sudo ldconfig But there is a problem in the last line...
I was following this instruction on this site to installing tesseract: https://github.com/tesseract-ocr/tesseract/wiki/Compiling git clone https://github.com/tesseract-ocr/tesseract.git cd tesseract ./autogen.sh ./configure make sudo make install sudo ldconfig But there is a problem in the last line and I got this error messages when I tried ldconfig: /sbin/ldconfig.real: /usr/local/lib is not a known library type /sbin/ldconfig.real: /usr/local/lib/pkgconfig is not a known library type What's that error meaning and how can I fix it? This is the content of /etc/ld.so.conf.d/libc.conf : # libc default configuration /usr/local/lib
user3486308 (609 rep)
Dec 13, 2016, 04:56 PM • Last activity: Aug 4, 2025, 11:04 PM
3 votes
2 answers
3008 views
TigerVNC installation on CentOS 7 (as in Red Hat System Administrator's Guide )
I want to install TigerVNC on my freshly installed CentOS 7 server, version centos-release-7-4.1708.el7.centos.x86_64. So besides other tutorials I've tried already, I followed the [Red Hat guide.][1] However with variable error messages depending on the tutorial I never got the service to start. Th...
I want to install TigerVNC on my freshly installed CentOS 7 server, version centos-release-7-4.1708.el7.centos.x86_64. So besides other tutorials I've tried already, I followed the Red Hat guide. However with variable error messages depending on the tutorial I never got the service to start. The following is exactly what I did on a new installation of CentOS 7: yum install tigervnc-server cp /usr/lib/systemd/system/vncserver@.service /etc/systemd/system/vncserver@.service vi /etc/systemd/system/vncserver@.service initial file content: [Unit] Description=Remote desktop service (VNC) After=syslog.target network.target [Service] Type=forking User= # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=-/usr/bin/vncserver -kill %i ExecStart=/usr/bin/vncserver %i PIDFile=/home//.vnc/%H%i.pid ExecStop=-/usr/bin/vncserver -kill %i [Install] WantedBy=multi-user.target file content after edit: [Unit] Description=Remote desktop service (VNC) After=syslog.target network.target [Service] Type=forking User=root # Clean any existing files in /tmp/.X11-unix environment ExecStartPre=-/usr/bin/vncserver -kill %i ExecStart=/usr/bin/vncserver %i PIDFile=/home/root/.vnc/%H%i.pid ExecStop=-/usr/bin/vncserver -kill %i [Install] WantedBy=multi-user.target Instructions after file edit: systemctl daemon-reload su - root vncpasswd systemctl start vncserver@:1.service Job for vncserver@:1.service failed because a timeout was exceeded. See "systemctl status vncserver@:1.service" and "journalctl -xe" for details. [root@localhost ~]# systemctl status vncserver@:1.service ● vncserver@:1.service - Remote desktop service (VNC) Loaded: loaded (/etc/systemd/system/vncserver@.service; disabled; vendor preset: disabled) Active: failed (Result: timeout) since Wed 2018-01-03 09:00:17 UTC; 22s ago Process: 2045 ExecStart=/usr/bin/vncserver %i (code=exited, status=0/SUCCESS) Process: 2040 ExecStartPre=/usr/bin/vncserver -kill %i (code=exited, status=2) Jan 03 08:58:50 localhost vncserver: New 'localhost:1 (root)' desktop is localhost:1 Jan 03 08:58:50 localhost vncserver: Creating default startup script /root/.vnc/xstartup Jan 03 08:58:50 localhost vncserver: Creating default config /root/.vnc/config Jan 03 08:58:50 localhost vncserver: Starting applications specified in /root/.vnc/xstartup Jan 03 08:58:50 localhost vncserver: Log file is /root/.vnc/localhost:1.log Jan 03 08:58:50 localhost systemd[1] : PID file /home/root/.vnc/localhost:1.pid not readable (y...art. Jan 03 09:00:17 localhost systemd[1] : vncserver@:1.service start operation timed out. Terminating. Jan 03 09:00:17 localhost systemd[1] : Failed to start Remote desktop service (VNC). Jan 03 09:00:17 localhost systemd[1] : Unit vncserver@:1.service entered failed state. Jan 03 09:00:17 localhost systemd[1] : vncserver@:1.service failed. Hint: Some lines were ellipsized, use -l to show in full. Does anyone have a clue how I can solve this?
J.Ober (31 rep)
Jan 3, 2018, 09:17 AM • Last activity: Aug 4, 2025, 03:06 PM
0 votes
2 answers
4174 views
Install problem for xdotool
Since I have problems with my Internet connection I'm not able to always run command `apt-get install xdotool` in Terminal, so I would like to download the **xdotool** package manually from website in .zip or .deb format and then install it manually every time I need it. (I'm using Usb Live Kali Lin...
Since I have problems with my Internet connection I'm not able to always run command apt-get install xdotool in Terminal, so I would like to download the **xdotool** package manually from website in .zip or .deb format and then install it manually every time I need it. (I'm using Usb Live Kali Linux 2016.2-amd64 and every time I reboot it deletes all files). I've tried to download xdotool from https://github.com/jordansissel/xdotool at the right side in green box "Clone or download" there is option download ZIP. After that I extract all files in Home folder and then open it in Terminal. in README file there are instructions like this: > See the website for more up-to-date documentation > http://www.semicomplete.com/projects/xdotool/ or the manpage listed > below. > > Compile: make > Install: make install > Remove: make uninstall > > You may have to set 'PREFIX' to the location you want to install to. > The default PREFIX is /usr/local > > For packagers, there's also support for DESTDIR for staged install. I type in make then make install and it always outputs me this error: root@kali:~/xdotool-master# make cc -pipe -O2 -pedantic -Wall -W -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wdisabled-optimization -Wno-missing-field-initializers -g -std=c99 -I/usr/X11R6/include -I/usr/local/include -fPIC -c xdo.c xdo.c:29:34: fatal error: X11/extensions/XTest.h: No such file or directory #include ^ compilation terminated. Makefile:124: recipe for target 'xdo.o' failed make: *** [xdo.o] Error 1 root@kali:~/xdotool-master# make install install -d /usr/local cc -pipe -O2 -pedantic -Wall -W -Wundef -Wendif-labels -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Wdisabled-optimization -Wno-missing-field-initializers -g -std=c99 -I/usr/X11R6/include -I/usr/local/include -fPIC -c xdo.c xdo.c:29:34: fatal error: X11/extensions/XTest.h: No such file or directory #include ^ compilation terminated. Makefile:124: recipe for target 'xdo.o' failed make: *** [xdo.o] Error 1 root@kali:~/xdotool-master# What I'm doing wrong? Can you suggest me other methods of installation of xdotool (but without Internet connection)?
user219258
Mar 29, 2017, 06:03 PM • Last activity: Aug 3, 2025, 05:58 PM
4 votes
1 answers
170 views
How may I install a specific version of a package only if the installed version is not higher
Given an Ubuntu machine using `apt` or `apt-get`, is there a built-in or recommended way to check if a package is installed at a minimum version? A package may be available in multiple versions: ``` apt-cache madison percona-server-server percona-server-server | 8.4.5-5-1.noble | http://repo.percona...
Given an Ubuntu machine using apt or apt-get, is there a built-in or recommended way to check if a package is installed at a minimum version? A package may be available in multiple versions:
apt-cache madison percona-server-server
percona-server-server | 8.4.5-5-1.noble | http://repo.percona.com/ps-84-lts/apt  noble/main amd64 Packages
percona-server-server | 8.4.4-4-1.noble | http://repo.percona.com/ps-84-lts/apt  noble/main amd64 Packages
percona-server-server | 8.4.3-3-1.noble | http://repo.percona.com/ps-84-lts/apt  noble/main amd64 Packages
percona-server-server | 8.4.2-2-1.noble | http://repo.percona.com/ps-84-lts/apt  noble/main amd64 Packages
percona-server-server | 8.4.0-1-1.noble | http://repo.percona.com/ps-84-lts/apt  noble/main amd64 Packages
percona-server |  8.4.5-5-1 | http://repo.percona.com/ps-84-lts/apt  noble/main Sources
percona-server |  8.4.4-4-1 | http://repo.percona.com/ps-84-lts/apt  noble/main Sources
percona-server |  8.4.3-3-1 | http://repo.percona.com/ps-84-lts/apt  noble/main Sources
percona-server |  8.4.2-2-1 | http://repo.percona.com/ps-84-lts/apt  noble/main Sources
percona-server |  8.4.0-1-1 | http://repo.percona.com/ps-84-lts/apt  noble/main Sources
I know that I can get the currently installed version of a package by:
dpkg -s percona-server-server | grep Version
8.4.5-5-1.noble
I know I can install a specific version via:
apt-get -qq install percona-server-server=8.4.5-5-1.noble
Yet, how can one only install a target version if the current one is lower than that?
k0pernikus (16501 rep)
Jul 31, 2025, 02:46 PM • Last activity: Aug 1, 2025, 11:17 AM
2 votes
2 answers
6212 views
Problem when using alien to install Oracle SQL Developer
I am trying to use `alien --scripts` to make a `.noarch.rpm` file into a `.deb` file, however, it is not working. I am trying to install Oracle SQL Developer: I have downloaded the `sqldeveloper-4.0.3.16.84-1.noarch.rpm` package from [here][1]. alien --scripts sqldeveloper-4.0.3.16.84-1.noarch.rpm a...
I am trying to use alien --scripts to make a .noarch.rpm file into a .deb file, however, it is not working. I am trying to install Oracle SQL Developer: I have downloaded the sqldeveloper-4.0.3.16.84-1.noarch.rpm package from here . alien --scripts sqldeveloper-4.0.3.16.84-1.noarch.rpm at this point I would expect the file the file sqldeveloper_4.0.3.16.84-2_all.deb to be created so I could call the following command to install it: dpkg -i sqldeveloper_4.0.3.16.84-2_all.deb However this is not the case. When I call alien --scripts sqldeveloper-4.0.3.16.84-1.noarch.rpm I get a folder with the name sqldeveloper-4.0.3.16.84. After looking in the folder, I have found that there is a large proportion of the program missing, the folder which contains all of the executable scripts to set up and run SQL Developer. I am using a `Debian Linux sever, release 6.0.10. Is there a way for me to make it create the .deb file when I call the alien --scripts command?
James (143 rep)
Apr 4, 2015, 03:26 PM • Last activity: Aug 1, 2025, 06:04 AM
0 votes
1 answers
20 views
While apt-get install package=version won't downgrade due to dependencies, would the install of lower version than the current candidate always work?
On an Ubuntu machine, I have installed `percona-server-server` with version at `8.4.3-3-1.noble`. I noticed I could install a package at a specific version via: ``` $ apt-get install percona-server-server=8.4.5-5-1.noble ``` Yet I also noticed that I cannot downgrade to a specific version due the de...
On an Ubuntu machine, I have installed percona-server-server with version at 8.4.3-3-1.noble. I noticed I could install a package at a specific version via:
$ apt-get install percona-server-server=8.4.5-5-1.noble
Yet I also noticed that I cannot downgrade to a specific version due the dependency dependencies afterwards:
$ apt-get install percona-server-server=8.4.0-1-1.noble
apt-get install percona-server-server=8.4.0-1-1.noble
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 percona-server-server : Depends: percona-server-common (= 8.4.0-1-1.noble) but 8.4.5-5-1.noble is to be installed
                         Depends: percona-server-client (= 8.4.0-1-1.noble) but 8.4.5-5-1.noble is to be installed
E: Unable to correct problems, you have held broken packages.
That makes me wonder: Was I just lucky with 8.4.5-5-1.noble as it is the current candidate? Would it have failed if I had tried an older version like 8.4.4-4-1.noble?
k0pernikus (16501 rep)
Jul 31, 2025, 06:12 PM
5 votes
4 answers
3991 views
Difficult to find application installed in linux
I am new to linux, used to use windows. I am trying to convert to linux and I really love it. I am trying Ubuntu 14.10. I have a question about how to find the installed applications easily in Linux. You know in windows, after I installed an application, I can always find it in the "all application"...
I am new to linux, used to use windows. I am trying to convert to linux and I really love it. I am trying Ubuntu 14.10. I have a question about how to find the installed applications easily in Linux. You know in windows, after I installed an application, I can always find it in the "all application" list. Even no, I can always try to search for its folder from the bottom. However, I am trying two DE, Unity and Gnome 3.12, and it seems that it's more difficult to do this. For example, I've just installed Anaconda3. After installation, it does not show up in the launcher nor the "all application list". I tried to search "Anaconda" or "Spyder" but hits nothing. It looks like it's also impossible to open the file manager to show all folders in the partition on which ubuntu is installed. I can open a terminal and "cd /" and then search it? But that's text interface. So my questions are: Are there any way to find an installed application easily. Is there something like the file manager in windows that can show all the folders in the linux partition or in the whole harddisk?
velut luna (171 rep)
Feb 16, 2015, 11:41 AM • Last activity: Jul 30, 2025, 07:00 AM
0 votes
2 answers
2683 views
Is there any way to install Wine on a ARM cpu chromebook (Debian 10 Buster)
I've tried to install Wine on my chromebook but I continued to get an error message. Did some digging and realized ARM CPUs can't run that. I did more research and seem to be going in a loop. I was told that using Box64 could be a solution. I'm lost can anyone shed some light on this?
I've tried to install Wine on my chromebook but I continued to get an error message. Did some digging and realized ARM CPUs can't run that. I did more research and seem to be going in a loop. I was told that using Box64 could be a solution. I'm lost can anyone shed some light on this?
user561475 (1 rep)
Feb 20, 2023, 11:21 AM • Last activity: Jul 29, 2025, 08:07 PM
2 votes
3 answers
5758 views
Install Zoom: cannot find package libxcb-xtest0
My OS Linux Mint 18.3, xfce, 64 bit. Have tried e.g. this: [![enter image description here][1]][1] [1]: https://i.sstatic.net/bqQcp.png Have also tried to install Zoom from application center and also from zoom website. I have also tried the suggested solutions here. Can anybody give me an idea how...
My OS Linux Mint 18.3, xfce, 64 bit. Have tried e.g. this: enter image description here Have also tried to install Zoom from application center and also from zoom website. I have also tried the suggested solutions here. Can anybody give me an idea how to solve the problem? And: I am not a professional linux user, almost a newby... Thanks a lot!
Tamy (31 rep)
Apr 4, 2020, 07:29 PM • Last activity: Jul 29, 2025, 02:32 PM
1 votes
2 answers
3342 views
silent and non-interactive installation of a package in Solaris using pkgadd and admin file
The command am giving is: pkgadd -a admin file -d absolutepathofpackage Then, its showing the below error > The following packages are available: > 1 Packagename BigFix Agent > (sparc) 9.2.8.74 > > Select package(s) you wish to process (or 'all' to process > all packages). (default: all) [?,??,q]: a...
The command am giving is: pkgadd -a admin file -d absolutepathofpackage Then, its showing the below error > The following packages are available: > 1 Packagename BigFix Agent > (sparc) 9.2.8.74 > > Select package(s) you wish to process (or 'all' to process > all packages). (default: all) [?,??,q]: all How to get this step included during silent installation?
Su_scriptingbee (319 rep)
Oct 7, 2016, 12:15 PM • Last activity: Jul 29, 2025, 09:05 AM
2 votes
1 answers
9295 views
Can't install VirtualBox Guest Additions on CentOS7 (with kernel 4.4)
I installed kernel 4.4 from ELRepo, along with `kernel-lt-tools`, `kernel-lt-devel` & `kernel-lt-headers`. I also installed `dkms`. `vboxadd-install.log` contains this: grep: Unmatched ) or \) The vboxadd-setup.log file contains this: Error building the module: modprobe vboxguest failed Is there any...
I installed kernel 4.4 from ELRepo, along with kernel-lt-tools, kernel-lt-devel & kernel-lt-headers. I also installed dkms. vboxadd-install.log contains this: grep: Unmatched ) or \) The vboxadd-setup.log file contains this: Error building the module: modprobe vboxguest failed Is there anything I'm missing?
YamiYukiSenpai (141 rep)
Jan 9, 2019, 12:16 AM • Last activity: Jul 29, 2025, 04:07 AM
-3 votes
5 answers
27058 views
Kali nethunter installation error on android using Termux (404 not found)
I was trying to install kali nethunter on my android mobile (android 13) and when i ran the ```./install-nethunter-termux``` command, I got the following response : ```[*] Downloading rootfs... --2023-09-25 13:33:06-- https://kali.download/nethunter-images/current/rootfs/kalifs-arm64-full.tar.xz Res...
I was trying to install kali nethunter on my android mobile (android 13) and when i ran the
./install-nethunter-termux
command, I got the following response :
[*] Downloading rootfs...

--2023-09-25 13:33:06--  https://kali.download/nethunter-images/current/rootfs/kalifs-arm64-full.tar.xz 
Resolving kali.download (kali.download)... 104.18.103.100, 104.18.102.100, 2606:4700:9640:38fb:330c:6:6812:6664
Connecting to kali.download (kali.download)|104.18.103.100|:443... connected.
HTTP request sent, awaiting response... 404 Not Found
2023-09-25 13:33:09 ERROR 404: Not Found.
I don't understand what this error means and so I seek help with this. Thank you in advance!
CapHim YT (5 rep)
Sep 25, 2023, 08:11 AM • Last activity: Jul 28, 2025, 09:13 AM
1 votes
1 answers
7771 views
Install rpm packages within a .tar.gz file from url in linux
I need to install few RPM files within a `TeradataToolsAndUtilitiesBase__linux_x8664.17.00.31.00.tar.gz` from URL below and the file name is "TTU 17.10.11.00 Linux - Base" https://downloads.teradata.com/download/tools/teradata-tools-and-utilities-linux-installation-package-0 how can we do install by...
I need to install few RPM files within a TeradataToolsAndUtilitiesBase__linux_x8664.17.00.31.00.tar.gz from URL below and the file name is "TTU 17.10.11.00 Linux - Base" https://downloads.teradata.com/download/tools/teradata-tools-and-utilities-linux-installation-package-0 how can we do install by using command line by using either yum or rpm.
Sathya (11 rep)
Dec 2, 2021, 03:39 PM • Last activity: Jul 26, 2025, 05:05 AM
4 votes
1 answers
2501 views
Having chosen the correct package (I believe), I cannot still install it. How to fix it?
Thanks to the command "cpuinfo", I've noticed that the "System type" is MediaTek MT7620, "cpu model" is MIPS 24KEc V5.0, so that I downloaded this package > bash_4.3.39-1_ramips_24kec.ipk from [Index of /chaos_calmer/15.05/ramips/mt7620/packages/packages/][1] So I believe that I have got the correct...
Thanks to the command "cpuinfo", I've noticed that the "System type" is MediaTek MT7620, "cpu model" is MIPS 24KEc V5.0, so that I downloaded this package > bash_4.3.39-1_ramips_24kec.ipk from Index of /chaos_calmer/15.05/ramips/mt7620/packages/packages/ So I believe that I have got the correct package for my machine, but I can't install it, I use opkg install /path/to/bash_4.3.39-1_ramips_24kec.ipk, sure the path is right, and I got > Unknown package 'bash'. > > Collected errors: > > * pkg_hash_fetch_best_installation_candidate: Packages for bash found, but incompatible with the architectures configured > > * opkg_install_cmd: Cannot install package bash. From the report, I don't think I need to install something else first (Am I wrong?), and I have no idea how to solve this problem. UPDATE: The machine runs Pandorabox R2 14.09, with Luci Trunk (0.12+svn-r1024), I have also tried using bash_4.2-5_ramips_24kec.ipk from Index of /barrier_breaker/14.07/ramips/mt7620a/packages/packages/ and Index of /barrier_breaker/14.07/ramips/mt7620n/packages/packages/ I got the same report. If I am not wrong, the version of firmware of OpenWrt should be 14.07, that's the base of Pandorabox R2 14.09.
N.D (83 rep)
Dec 13, 2015, 09:58 AM • Last activity: Jul 24, 2025, 05:39 AM
3 votes
2 answers
6094 views
How do I install some required libraries for a program without sudo?
I am trying to run a program on a computer running Red Hat 6.5. This results in the three following errors: "/lib64/libc.so.6: version `GLIBC_2.14' not found" "/usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found" "/lib64/libm.so.6: version `GLIBC_2.15' not found" Clearly I have to install...
I am trying to run a program on a computer running Red Hat 6.5. This results in the three following errors: "/lib64/libc.so.6: version `GLIBC_2.14' not found" "/usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found" "/lib64/libm.so.6: version `GLIBC_2.15' not found" Clearly I have to install those libraries, but when searching I only found solutions that suggest running "sudo apt-get", which I sadly can't (no sudo access). Thus I need a solution to install them without sudo. (EDIT: This system does not have apt-get, but I am under the impression that yum, which it does have, is not far from the same thing. Still requires root though). Additionally, I would prefer if the solution only affected my account, or even were limited to the program I am trying to run, so I don't affect other users on this system. I would appreciate if I could receive some help on how to achieve something like this, or if it is impossible, I would like to know that (and out of curiosity, maybe also why).
felix (31 rep)
Feb 19, 2015, 12:39 PM • Last activity: Jul 23, 2025, 10:58 PM
1218 votes
9 answers
3806270 views
How to install a deb file, by dpkg -i or by apt?
I have a deb package for installation. Shall I install by `dpkg -i my.deb`, or by `apt`? Will both handle the software dependency problem well? If by `apt`, how can I install from the deb by `apt`?
I have a deb package for installation. Shall I install by dpkg -i my.deb, or by apt? Will both handle the software dependency problem well? If by apt, how can I install from the deb by apt?
Tim (106422 rep)
Oct 3, 2014, 03:52 PM • Last activity: Jul 22, 2025, 02:10 PM
5 votes
1 answers
2940 views
Why did 'apt-get autoremove' not work properly?
I installed Pipelight from the PPA archive, according to [these instructions][1]. The installation command, `sudo apt-get install --install-recommends pipelight-multi` was for only one package, but it entailed downloading and installing about 180 dependency packages, about 40 of which were upgrades...
I installed Pipelight from the PPA archive, according to these instructions . The installation command, sudo apt-get install --install-recommends pipelight-multi was for only one package, but it entailed downloading and installing about 180 dependency packages, about 40 of which were upgrades to currently-installed packages. Therefore, about 140 new packages were installed. Pipelight subsequently didn't work, so I removed it: sudo apt-get purge pipelight-multi No other packages were removed. I then used sudo apt-get autoremove. This command removed all auto-removeable packages. There were exactly 100 of these (there were also exactly 100 packages in Synaptic Package Manager's 'Autoremovable' list). So this left about 40 packages that weren't considered auto-removeable, and so weren't removed. I had to remove them manually. There were no unmet dependencies on my system before I installed Pipelight; and I hadn't marked any packages as manually-installed, installed or removed anything else, or anything like that. Only about ten minutes passed between installing Pipelight and removing it. So after I removed Pipelight, why weren't all of its unneeded dependencies marked as auto-removable?
EmmaV (4359 rep)
Feb 22, 2016, 04:19 AM • Last activity: Jul 18, 2025, 04:23 AM
2 votes
1 answers
2640 views
How to install latest version of Tiled Editor on Linux Mint?
Having trouble installing latest version of Tiled Editor from console. I need the latest updates for my project. Adding the PPA is not giving me the latest version of the software. Running the program says I am on version 0.9.1 which is several years old. Latest Release 0.15.1. Added the PPA as desc...
Having trouble installing latest version of Tiled Editor from console. I need the latest updates for my project. Adding the PPA is not giving me the latest version of the software. Running the program says I am on version 0.9.1 which is several years old. Latest Release 0.15.1. Added the PPA as described here: https://help.launchpad.net/Packaging/PPA/InstallingSoftware Tiled Package page: *Can not post 2nd link*. Google Tiled Map Editor > Click on Downloads link > Click on Unbuntu button > Takes you to the page with the PPA and package information. **PPA** > ppa:mapeditor.org/tiled **Commands ran:** 1. sudo add-apt-repository ppa:mapeditor.org/tiled 2. sudo apt-get update 3. sudo apt-get install tiled **Command 1 output:** > Executing: gpg --ignore-time-conflict --no-options > --no-default-keyring --homedir /tmp/tmp.dZ9qFucBve --no-auto-check-trustdb --trust-model always --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyring > /etc/apt/trusted.gpg.d/steam.gpg --keyserver > hkp://keyserver.ubuntu.com:80 --recv-keys 9F7F5BAF gpg: requesting key > 9F7F5BAF from hkp server keyserver.ubuntu.com gpg: key 9F7F5BAF: > public key "Launchpad PPA for mapeditor.org" imported gpg: Total > number processed: 1 gpg: imported: 1 (RSA: 1) **Command 2 output:** > ...SNIP... > Fetched 2,162 kB in 9s (237 kB/s) > Reading package lists... Done **Commad 3 output:** > ...SNIP... > Setting up tiled (0.9.1-1) ... **Errors:** none **OS:** Linux Mint 17.3 'Rosa' - Cinnamon 64-bit
unenergizer (21 rep)
Jan 31, 2016, 10:26 AM • Last activity: Jul 17, 2025, 08:04 PM
5 votes
2 answers
6079 views
.desktop file does not work from /usr/share/applications
I created the following `.desktop` file under Fedora 24 using GNOME 3. [Desktop Entry] Encoding=UTF-8 Name=Jabref Exec=java -jar /home/zoltan/Bureau/Programs/JabRef-3.7-dev--snapshot--2016-11-08--master--fffad83.jar Icon=/home/zoltan/Bureau/Programs/Icons/Jabref Type=Application Categories=Developme...
I created the following .desktop file under Fedora 24 using GNOME 3. [Desktop Entry] Encoding=UTF-8 Name=Jabref Exec=java -jar /home/zoltan/Bureau/Programs/JabRef-3.7-dev--snapshot--2016-11-08--master--fffad83.jar Icon=/home/zoltan/Bureau/Programs/Icons/Jabref Type=Application Categories=Development When I opened it from the desktop, it launched the application, however when I copied it to /usr/share/applications, the system couldn't recognise it and so I cannot launch it quickly. What can be the problem?
Zoltan Csati (153 rep)
Nov 23, 2016, 02:46 PM • Last activity: Jul 17, 2025, 04:29 PM
Showing page 1 of 20 total questions