Linux program files x86

What is the Linux equivalent to Windows’ Program Files?

Under Windows, most applications and application data are stored in a special directory known as C:\Program Files (and occasionally C:\Program Files (x86) ). What is the Ubuntu/Linux equivalent to this path? Is there even one?

If you want to know where are the files of specific package, you can use Synaptic package manager. Just search for package, and see its installed files.

I think this question would be improved by a reason for wanting an equivalent. There is a difference between, for instance, «lets see what I have installed and what I can run», and «I’m trying to find the save-game of this/that piece of software, so I can fiddle with it» and maybe even «I suspect some setting-file / ini-file for this program that I can tweak». Those could all be «Program Files» question, but have different answers here.

Related (but probably shouldn’t be considered a duplicate): How to understand the Ubuntu file system layout?

10 Answers 10

Late Answer — I’ve created a roadmap for beginners to follow. If they are looking for a file but don’t know where to look, they can use the map to roughly navigate around. You can download a hi-res PNG here. You can find the related post here.

When I see it laid out like this, I realise it’s no wonder modern distros try to hide this stuff. What a mess (beautiful mess). And I don’t agree with this layout completely — it’s brilliant, but for example /etc holds application configs as much as O/S configs, so it feels like it should be to the left of the second-from-right-most yellow «User Specific» question as a «no» branch. For example, apache is an application, it’s not O/S essential. Neither is Docker, Folding@Home, VMware, or a host of others that use /etc for configs. Great diagram though.

[EDIT: You should probably check out d4nyll’s answer instead, which is a nifty map, acting as an extensive beginner’s guide to the Linux file system]

/bin and /usr/bin is where the scripts are that start the programs. The direct equivalent of «Program Files» though is probably /opt or maybe /usr/share (see Filesystem Hierarchy Standard). That directory contains the various support files for most programs.

Nautilus showing /usr/share

There probably isn’t a direct equivalent however, since, for example, library files are shared across the system (in /lib ) and options are either user specified (in the user’s home directory) or universally located in /etc .

Читайте также:  Проброс порта linux windows

So installing a program via a deb file, repository or build will likely place files in all of these locations.

[EDIT] And as others note, there is also /sbin and /usr/sbin . Plus /usr/local/bin , /opt/bin and even /usr/games/ . So definitely not a direct comparison to c:\program files !

How about /opt ? I’ve seen that hold many (usually closed-source or app-based) programs before in a similar way to Program Files .

Seems to be going that way, with the advent of the Ubuntu Software Centre delivering its games there, certainly. But even then, hardly a direct comparison, really, is it? Might the closest thing these days though.

/usr/local/bin is a semi-common location for software that might be not commonly used by a user/company.

If you’re looking for productivity in the workplace, (1) Everything is terminal. Terminal is much faster than navigating through a hierarchy of options in a program. You usually have to google how to change a setting anyway which involves following a sequence of screenshots, now google gives you a copy-pastable command (2) cron’s let you setup anything to run in the background and do whatever you want it to do (3) It’s easy to use bash to automate anything you want to be automated

EDIT: See also d4nyll’s answer below above for an excellent and beginner-friendly map!

Read my answer below for more info on what the PATH environment variable is, what .desktop files are, and how to find a specific program using various linux commands.

Original answer:

There is no easy answer.

/bin , /usr/bin , and /usr/share

As mentioned in the other answers, you can find most executables under /bin or /usr/bin , and the support files are installed in /usr/share .

/usr/local and /opt

There are however more directories in which Ubuntu installs applications. The PATH variable, which determines where to search for an entered command, might give you a clue, mine looks like ( echo $PATH in a terminal):

/usr/local/cuda/bin:/usr/local/texlive/2012/bin/x86_64-linux:/usr/games:/home/gerhard/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games 

As you can see some software is installed in /usr/local and have their own directory and bin . Another place where many programs are installed is /opt . The properties of these locations are explained by the Filesystem Hierarchy Standard, which is a very good read. Unfortunately, the difference between /opt and /usr/local is not very well explained, someone on the unix stackexchange had a more elaborate explanation:

  • /usr/local is a place to install files built by the administrator, usually by using the make command. The idea is to avoid clashes with files that are part of the operating systems that would either be overwritten or overwrite the local ones otherwise. eg. /usr/bin/foo is part of the OS while /usr/local/bin/foo is a local alternative,
  • /opt is a directory to install unbundled packages each in their own subdirectory. They are already built whole packages provided by an independent third party software distributor. For example someapp would be installed in /opt/someapp , one of its command would be in /opt/someapp/bin/foo [and then usually a symbolic link is made in one of the bin directories in the PATH , or the program is called from a desktop file (see below)].
Читайте также:  Linux repair uefi boot

Finding a specific program or command

.desktop files

To find out where a specific program is installed, you can do a number of steps. First you need to locate its .desktop file. Desktop files are simular to shortcuts in Windows, and for system applications they are located in /usr/share/applications . The desktop files for applications that are only available for the current user are in ~/.local/share/applications . Take for example Google Chrome, which has the desktop file /usr/share/applications/google-chrome.desktop and look for the line that starts with Exec= , this determines how to start Google Chrome. It says:

Exec=/opt/google/chrome/google-chrome 

So you know Google Chrome is in /opt .

Now for Mozilla Firefox which is located in /usr/share/applications/firefox.desktop . It simply says

At first this doesn’t seem to help that much, but then you realize that firefox must be in a directory that is in the PATH variable (most likely a bin ), and we can look it up (see below).

Looking up commands

To look up commands you can use one or more of the following: type , which and whereis (I’ve included a link to their manual pages online).

  • type: it describes a command, and indicates how it would be interpreted if used as a command name. Possible types for a command are:
    1. alias (shell alias)
    2. function (shell function)
    3. builtin (shell builtin)
    4. file (disk file)
    5. keyword (shell reserved word)

(type itself is a shell builtin, try it with type type :P)

Executing type firefox gives us

which is what we wanted to know

If a command is a file (which you checked with type ) you can then also use:

    which: shows the full path of the command, Executing which firefox gives us

firefox: /usr/bin/firefox /etc/firefox /usr/lib/firefox /usr/lib64/firefox /usr/bin/X11/firefox /usr/share/man/man1/firefox.1.gz 

You can inspect /usr/bin/firefox closer with ls -l /usr/bin/firefox and this gives:

/usr/bin/firefox -> ../lib/firefox/firefox.sh* 

It appears that /usr/bin/firefox is ‘only’ a symbolic link to the script /usr/lib/firefox/firefox.sh . If you inspect the script you discover that the script calls /usr/lib/firefox/firefox .
You may rest in peace now 🙂

Источник

Change directory with space followed by ‘(‘

Pressing TAB will usually complete the command line for you, and will give hints how to quote the file/directory names.

Yes, Tab completes, but I have two directories with the same name till (x86) so it only completes to «Program Files».

An alternative that may be useful in this case is to use shell globbing. For example, cd P TAB ??x86? TAB will likely (depending on what else you have in the relevant directory) complete out to Program Files (x86) .

At some point backslashes become more of a problem than they’re worth. If you have more than one or two special characters it’s simpler to quote the entire file name; either «Program Files (x86)» or ‘Program Files (x86)’ will work.

Another way to accomplish the same is to quote the path containing whitespace:

This also works with tab-completion so you can type:

Notice the opening double-quote. Then you will get:

You must log in to answer this question.

Hot Network Questions

Subscribe to RSS

To subscribe to this RSS feed, copy and paste this URL into your RSS reader.

Site design / logo © 2023 Stack Exchange Inc; user contributions licensed under CC BY-SA . rev 2023.7.13.43531

Linux is a registered trademark of Linus Torvalds. UNIX is a registered trademark of The Open Group.
This site is not affiliated with Linus Torvalds or The Open Group in any way.

By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy.

Источник

Как в bash.exe открыть папку Program Files (x86)?

мне командная строка выдает такое вот сообщение
1@DESKTOP-NUGQ9U3 /c
λ cd Program Files (x86)
bash: syntax error near unexpected token `(‘
как правильно мне написать команду?

Как удалить папку Coingeek из Program Files (x86)
появилась новая папка Coingeek в Program Files (x86) удалить не могу. В связи с этим на диски C.

Как получить пути к папкам Program files и Program files x86?
По msdn код должен быть таким. (У меня разрядность системы x64, если что) string.

PFHttpContentFilter.exe и filter2 в C:\Program Files (x86), в итоге реклама в браузерах
Здравствуйте, сегодня в браузерах было обнаружено большое количество баннеров с рекламой, порылся в.

Эксперт NIX

Лучший ответ

Сообщение было отмечено brahmanchikk как решение

Решение

И нажмите один раз клавишу «Tab», если автодополнение сработало то нажмите «Enter»,
если не сработало то еще раз нажмите клавишу «Tab»
и возможно у вас появится список директорий начинающихся с Prog
Посмотрите как выводится название вашей директории например это может быть так:
Program\ Files\ \(x86\)
Тогда:

Копирование файла в зависимости от разрядности системы в «Program Files» или в «Program Files (x86)»
Добрый День, уважаемые форумчане! Появилась необходимость написать скрипт по копированию.

Как ввести в командную строку C:\Program Files (x86)?
Добрый день! Дайте, плиз, совет, как ввести в командную строку C:\Program Files (x86). Не находит.

Program Files и Program Files (x86)
Program Files и Program Files (x86) в чем отличие? Куда лучше устанавливать программы?

Создание папки в Program Files (x86)
Создаю папку по пути "C:\\Program Files (x86)\\Folder" (на системном диске) Но она не создается.

Источник

Оцените статью
Adblock
detector