The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    What is the Ubuntu Equivalent of the program files and application data folder?

    Discussion in 'Linux Compatibility and Software' started by lucirz, Jun 7, 2014.

  1. lucirz

    lucirz Notebook Consultant

    Reputations:
    7
    Messages:
    273
    Likes Received:
    8
    Trophy Points:
    31
    In windows XP, the programs files folder is usually where the main application data is stored after you installed it. and the Application DATA folder or %APPDATA% is sometimes used by application to store files that it needs to load.

    What's the Ubuntu equivalent of these folders? and what is the full path to such folders?
     
  2. ALLurGroceries

    ALLurGroceries  Vegan Vermin Super Moderator

    Reputations:
    15,730
    Messages:
    7,146
    Likes Received:
    2,343
    Trophy Points:
    331
    Programs are generally installed somewhere under /bin or /usr/bin (/sbin and /usr/sbin for admin tools). Most distros won't touch /usr/local so that's where you'd install any programs outside of the package manager.

    For application data:

    ~/.config

    or

    ~/.local/share/

    some apps use their own non-standard location such as skype:

    ~/.Skype

    or Pidgin:

    ~/.purple
     
  3. Ethrem

    Ethrem Notebook Prophet

    Reputations:
    1,404
    Messages:
    6,706
    Likes Received:
    4,735
    Trophy Points:
    431
    As has been said, you're looking for your home folder (~ acts as a shortcut to home - if you type cd ~/Downloads, for example, it would take you to the Downloads folder in the current user's home directory). In there, turn on show hidden files in order to see the hidden folders that start with a period. *most* applications will store their settings in the home folder.

    System applications will generally have system-wide policies stored in /etc and per user properties installed in the home directory.

    There are exceptions to every rules though. There are some naughty apps that put things where they shouldn't.