Questions tagged [path]
218 questions
1
vote
1 answer
Wine in Docker - "reg add" only keeps effects temporarily
Ive been bashing my head against a wall about this.
I'm looking to add an executable to the PATH under wine on Ubuntu 20.04.
Trying to configure this from the dockerfile, but having a weird issue.
Specifically, i'm trying to install python under…

Awbmilne
- 11
- 1
1
vote
1 answer
Where shared object is located in Linux
I want to know, where .so file information got stored in linux? I am looking for libruby.so.2.6.
When I searched in internet, ld.so first starts the search with LD_LIBRARY_PATH and then it will look for ld.so.conf file and cache files and then the…

Kishore Kumar
- 19
- 2
1
vote
0 answers
Setting Apache SSL path dynamically based on domain
Trying to replace SSL path with the current domain.
ServerAlias *
UseCanonicalName Off
DocumentRoot /var/www/html
…

Ramjith Ap
- 111
- 1
1
vote
3 answers
How to get an executable path on Linux
I am calling an 'executable' on Linux. One way by console and another from a PHP script. They both call other executables (I see it by the version of the file). So I need a way to display a path to the executable that will be called when I try to…

Tom Smykowski
- 1,125
- 5
- 19
- 27
0
votes
1 answer
I broke my terminal trying to set up PATH environment to bin the JAVA directory and now nothing works, no bash commands, etc. Can I reset?
Basically I was just trying to set up a PATH environment variable that pointed to the /bin directory inside the main Java directory.
I did this by doing: sudo nano /etc/paths.
But then couldn't get the path to save so got frustrated and just did…

raveyp
- 1
0
votes
1 answer
Loading new paths from each line on a text file with eval dont update $PATH variable on bash
Having to set a lot of paths on $PATH then wrote this code to load it from a text file:
#!/bin/bash
cd ~
echo '#++++++' >> ./pathlstbkp
cat ./pathlst >> ./pathlstbkp
while read pth; do
cmd='export PATH="'$pth':$PATH"'
eval…

Mark
- 91
- 1
- 9
0
votes
0 answers
haproxy redirect URL path to another path
haproxy version 1.5.18
I want to redirect:
/document/(.*)/(.*)/somefile => /anotherPath/somefile
For example: redirect
/document/20181/20182/a_good_pic.jpg => /anotherPath/a_good_pic.jpg
How to do that with haproxy?
I retried follow the example…

r ne
- 101
- 1
- 2
0
votes
2 answers
How to upgrade the version of Python used by Apache?
On a Red Hat box, I upgraded Python from 2.3 to 2.6.4 and changed the symlink to python so when I type in python the 2.6.4 interpreter comes up.
However my .py file works from the command-line, but not in the browser. It seemed like a sys.path issue…
Pranab
0
votes
3 answers
psExec doesn't have path
I have a brand new windows 2008 server (64 bit), and the remote deployment scripts using nant and psExec are not behaving like they do on the old servers.
This works: psExec \\newserver.myco.com cmd
This successfully runs Nant: psexec…

Anthony
- 113
- 1
- 6
0
votes
1 answer
Find unique paths in one text file from two files using powershell
I have two text files with a list of paths. They share some paths but they also have their own unique paths as well. Each path is on different line and there are thousands of lines on each txt file. What powershell command can I use to extract the…
0
votes
2 answers
PowerShell Get-ChildItem - Path Too Long
I have been stuck with trying to format my output table for a Get-ChildItem command.
I have created a script to scan a directory defined in $Source to search for files defined by $Months and $Size. This works fine but some of the directories are…

ZazzyTech
- 1
- 1
- 1
- 3
0
votes
1 answer
Apache 2.4 Proxy Css and Js path
I got Apache Web Server 2.4, and a JBoss 7 exposing a web project.
Since I'm working locally I made an /etc/hosts/ domain entry like:
127.0.0.1 testmask
And put this virtual host config inside my Apache:
ServerName…

Black.Jack
- 103
- 1
- 5
0
votes
1 answer
Paths of files on Google Nearline changed
While I was recovering files by CloudBerry, I realized that the paths of nearly all files on the Google Cloud are altered.
It should be
G:\2014\Photo Video Source Files\UTS construction video\GOPR2856 UTS Construction.MP4
but it is saved on Google…
0
votes
1 answer
usb drive persistent mapping(ubuntu 16.04)
I'd like to map an usb drive to a path under ubuntu 16.04. The idea is to use rsync to backup some folders to this usb drive whenever I plug it. Is there any way for the system to recognize the usb drive from its manufacturer id for instance and…

Rani7c2
- 3
- 3
0
votes
1 answer
Google compute engine Debian, $PATH getting reset after exiting from Putty
I have a debian instance on Google cloud. I needed to host a Play! Framework project. For this I installed a software Activator and added it to path as follows
export PATH=/home/user/activator-dist-1.3.12/bin:$PATH
All is well, activator gets…

Shabin Muhammed
- 121
- 1
- 8