google-chrome path?
- hadisur_rahman
- Posts: 158
- Joined: Sat Mar 07, 2020 5:47 am
google-chrome path?
I,m using now MX LINUX - 19.1, MY question is where the google-chrome path rest of? I had tried but can,t find the path which I need to set Pycharm as a default web browser for opening my files in that browser.
- Eadwine Rose
- Administrator
- Posts: 14780
- Joined: Wed Jul 12, 2006 2:10 am
Re: google-chrome path?
/usr/bin/google-chrome-stable
That is where mine is at.
That is where mine is at.
MX-23.6_x64 July 31 2023 * 6.1.0-37amd64 ext4 Xfce 4.20.0 * 8-core AMD Ryzen 7 2700
Asus TUF B450-Plus Gaming UEFI * Asus GTX 1050 Ti Nvidia 535.247.01 * 2x16Gb DDR4 2666 Kingston HyperX Predator
Samsung 870EVO * Samsung S24D330 & P2250 * HP Envy 5030
Asus TUF B450-Plus Gaming UEFI * Asus GTX 1050 Ti Nvidia 535.247.01 * 2x16Gb DDR4 2666 Kingston HyperX Predator
Samsung 870EVO * Samsung S24D330 & P2250 * HP Envy 5030
- hadisur_rahman
- Posts: 158
- Joined: Sat Mar 07, 2020 5:47 am
Re: google-chrome path?
Eadwine Rose wrote: Sun May 31, 2020 6:40 pm /usr/bin/google-chrome-stable
That is where mine is at.
When I put this path on Pycharm Pro Web Browser's path "for opening chrome browser as default when I needed to be" but it doesn't,t work.
After putting the path u provide still the same error occurs.
You do not have the required permissions to view the files attached to this post.
Re: google-chrome path?
Run Accessories -> Catfish File Search, change the search location from your home directory (the default) to File System, and seatch for chrome.
Please read the Forum Rules, How To Ask For Help, How to Break Your System and Don't Break Debian. Always include your full Quick System Info (QSI) with each and every new help request.
Re: google-chrome path?
hadisur_rahman wrote: Mon Jun 01, 2020 8:12 amWhen I put this path on Pycharm Pro Web Browser's path "for opening chrome browser as default when I needed to be" but it doesn't,t work.Eadwine Rose wrote: Sun May 31, 2020 6:40 pm /usr/bin/google-chrome-stable
That is where mine is at.
:
After putting the path u provide still the same error occurs.
:
You may want to try:
Code: Select all
/opt/google/chrome/google-chrome
It's a wild ride from the google-chrome command to the chrome binary:
Code: Select all
command: google-chrome -> /usr/bin/google-chrome
link: /usr/bin/google-chrome -> /etc/alternatives/google-chrome
link: /etc/alternatives/google-chrome -> /usr/bin/google-chrome-stable
link: /usr/bin/google-chrome-stable -> /opt/google/chrome/google-chrome
bash: /opt/google/chrome/google-chrome -> /opt/google/chrome/chrome
binary: /opt/google/chrome/chrome
Code: Select all
$ which google-chrome
/usr/bin/google-chrome
Code: Select all
$ namei /usr/bin/google-chrome
f: /usr/bin/google-chrome
d /
d usr
d bin
l google-chrome -> /etc/alternatives/google-chrome
d /
d etc
d alternatives
l google-chrome -> /usr/bin/google-chrome-stable
d /
d usr
d bin
l google-chrome-stable -> /opt/google/chrome/google-chrome
d /
d opt
d google
d chrome
- google-chrome
Code: Select all
:
export CHROME_WRAPPER="`readlink -f "$0"`"
HERE="`dirname "$CHROME_WRAPPER"`"
:
exec -a "$0" "$HERE/chrome" "$@"
LT: Dell 5566, Core i3-7100U, 6GB, 1.0TB HD, MX-19.1_x64/386
LT: Lenovo T500, Core2 Duo P8700, 4GB, 320GB HD, MX-19.1_x64/386
LT: HP DV6-1053cl, Core2 Duo P7450, 4GB, 320GB HD, MX-18.3_x64
DT: HP 500-281, Core i3-4130, 4GB, 1.0TB HD, MX-18.3_x64
LT: Lenovo T500, Core2 Duo P8700, 4GB, 320GB HD, MX-19.1_x64/386
LT: HP DV6-1053cl, Core2 Duo P7450, 4GB, 320GB HD, MX-18.3_x64
DT: HP 500-281, Core i3-4130, 4GB, 1.0TB HD, MX-18.3_x64
- hadisur_rahman
- Posts: 158
- Joined: Sat Mar 07, 2020 5:47 am
Re: google-chrome path?
better if u give me more details thanksJayM wrote: Mon Jun 01, 2020 8:22 am Run Accessories -> Catfish File Search, change the search location from your home directory (the default) to File System, and seatch for chrome.
- hadisur_rahman
- Posts: 158
- Joined: Sat Mar 07, 2020 5:47 am
Re: google-chrome path?
m_frank wrote: Mon Jun 01, 2020 10:57 amhadisur_rahman wrote: Mon Jun 01, 2020 8:12 amWhen I put this path on Pycharm Pro Web Browser's path "for opening chrome browser as default when I needed to be" but it doesn't,t work.Eadwine Rose wrote: Sun May 31, 2020 6:40 pm /usr/bin/google-chrome-stable
That is where mine is at.
:
After putting the path u provide still the same error occurs.
:
You may want to try:Since /usr/bin/google-chrome-stable is a linkCode: Select all
/opt/google/chrome/google-chrome
It's a wild ride from the google-chrome command to the chrome binary:The above is condensed view of the outputs of:Code: Select all
command: google-chrome -> /usr/bin/google-chrome link: /usr/bin/google-chrome -> /etc/alternatives/google-chrome link: /etc/alternatives/google-chrome -> /usr/bin/google-chrome-stable link: /usr/bin/google-chrome-stable -> /opt/google/chrome/google-chrome bash: /opt/google/chrome/google-chrome -> /opt/google/chrome/chrome binary: /opt/google/chrome/chrome
Code: Select all
$ which google-chrome /usr/bin/google-chrome
and spelunking in the bash script /opt/google/chrome/google-chromeCode: Select all
$ namei /usr/bin/google-chrome f: /usr/bin/google-chrome d / d usr d bin l google-chrome -> /etc/alternatives/google-chrome d / d etc d alternatives l google-chrome -> /usr/bin/google-chrome-stable d / d usr d bin l google-chrome-stable -> /opt/google/chrome/google-chrome d / d opt d google d chrome - google-chrome
Code: Select all
: export CHROME_WRAPPER="`readlink -f "$0"`" HERE="`dirname "$CHROME_WRAPPER"`" : exec -a "$0" "$HERE/chrome" "$@"
after putting
Code: Select all
/opt/google/chrome/google-chrome
Re: google-chrome path?
You should use the same path as stated within the Desktop-Icon/Launcher of your google-chrome installation.hadisur_rahman wrote: Tue Jun 02, 2020 1:53 pm ... this on the path an "explicitly closed" named error occurs. What should I do now?
Right click on the (working) Google-Chrome Launcher -> Properties -> Edit and copy the path from the command field.
- hadisur_rahman
- Posts: 158
- Joined: Sat Mar 07, 2020 5:47 am
Re: google-chrome path?
Followed the procedure but not working.fehlix wrote: Tue Jun 02, 2020 2:48 pmYou should use the same path as stated within the Desktop-Icon/Launcher of your google-chrome installation.hadisur_rahman wrote: Tue Jun 02, 2020 1:53 pm ... this on the path an "explicitly closed" named error occurs. What should I do now?
Right click on the (working) Google-Chrome Launcher -> Properties -> Edit and copy the path from the command field.
- hadisur_rahman
- Posts: 158
- Joined: Sat Mar 07, 2020 5:47 am
Re: google-chrome path?
Still don,t get any solution, someone help me out for this bad uneasy situation, please.