Difference between /usr/local and ~/.local [duplicate]

Clash Royale CLAN TAG#URR8PPP up vote
1
down vote
favorite
This question already has an answer here:
What is the difference between local and .local in ubuntu?
3 answers
I install .zip / .tar.gz programs in ~/.local/bin, but Ubuntu have /usr/local directory with content same as in ~/.local.
So, what is difference between this directories except for sudo access?
home-directory installed-programs directory-structure
marked as duplicate by George Udosen, Fabby, Eric Carvalho, anonymous2, Elder Geek Apr 24 at 15:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
 |Â
show 1 more comment
up vote
1
down vote
favorite
This question already has an answer here:
What is the difference between local and .local in ubuntu?
3 answers
I install .zip / .tar.gz programs in ~/.local/bin, but Ubuntu have /usr/local directory with content same as in ~/.local.
So, what is difference between this directories except for sudo access?
home-directory installed-programs directory-structure
marked as duplicate by George Udosen, Fabby, Eric Carvalho, anonymous2, Elder Geek Apr 24 at 15:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Is locale and local the same @Jeremy?
â George Udosen
Apr 22 at 13:31
This answer in the flagged duplicate explains it pretty well: askubuntu.com/a/955971/3739
â Jeremy
Apr 22 at 13:32
locale and local mean two different things. Locale refers to the place on earth you're from, whereas local is part of the directory structure. Edit: Sorry, I understand your question, good point
â Jeremy
Apr 22 at 13:33
Is OP asking for locale or local? I think your misunderstanding the question!
â George Udosen
Apr 22 at 13:35
@george Yep, good point, the answer linked in the comment is constructive none-the-less. I've dropped the flag.
â Jeremy
Apr 22 at 13:36
 |Â
show 1 more comment
up vote
1
down vote
favorite
up vote
1
down vote
favorite
This question already has an answer here:
What is the difference between local and .local in ubuntu?
3 answers
I install .zip / .tar.gz programs in ~/.local/bin, but Ubuntu have /usr/local directory with content same as in ~/.local.
So, what is difference between this directories except for sudo access?
home-directory installed-programs directory-structure
This question already has an answer here:
What is the difference between local and .local in ubuntu?
3 answers
I install .zip / .tar.gz programs in ~/.local/bin, but Ubuntu have /usr/local directory with content same as in ~/.local.
So, what is difference between this directories except for sudo access?
This question already has an answer here:
What is the difference between local and .local in ubuntu?
3 answers
home-directory installed-programs directory-structure
asked Apr 22 at 13:27
Lev Lunev
62
62
marked as duplicate by George Udosen, Fabby, Eric Carvalho, anonymous2, Elder Geek Apr 24 at 15:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by George Udosen, Fabby, Eric Carvalho, anonymous2, Elder Geek Apr 24 at 15:36
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Is locale and local the same @Jeremy?
â George Udosen
Apr 22 at 13:31
This answer in the flagged duplicate explains it pretty well: askubuntu.com/a/955971/3739
â Jeremy
Apr 22 at 13:32
locale and local mean two different things. Locale refers to the place on earth you're from, whereas local is part of the directory structure. Edit: Sorry, I understand your question, good point
â Jeremy
Apr 22 at 13:33
Is OP asking for locale or local? I think your misunderstanding the question!
â George Udosen
Apr 22 at 13:35
@george Yep, good point, the answer linked in the comment is constructive none-the-less. I've dropped the flag.
â Jeremy
Apr 22 at 13:36
 |Â
show 1 more comment
Is locale and local the same @Jeremy?
â George Udosen
Apr 22 at 13:31
This answer in the flagged duplicate explains it pretty well: askubuntu.com/a/955971/3739
â Jeremy
Apr 22 at 13:32
locale and local mean two different things. Locale refers to the place on earth you're from, whereas local is part of the directory structure. Edit: Sorry, I understand your question, good point
â Jeremy
Apr 22 at 13:33
Is OP asking for locale or local? I think your misunderstanding the question!
â George Udosen
Apr 22 at 13:35
@george Yep, good point, the answer linked in the comment is constructive none-the-less. I've dropped the flag.
â Jeremy
Apr 22 at 13:36
Is locale and local the same @Jeremy?
â George Udosen
Apr 22 at 13:31
Is locale and local the same @Jeremy?
â George Udosen
Apr 22 at 13:31
This answer in the flagged duplicate explains it pretty well: askubuntu.com/a/955971/3739
â Jeremy
Apr 22 at 13:32
This answer in the flagged duplicate explains it pretty well: askubuntu.com/a/955971/3739
â Jeremy
Apr 22 at 13:32
locale and local mean two different things. Locale refers to the place on earth you're from, whereas local is part of the directory structure. Edit: Sorry, I understand your question, good point
â Jeremy
Apr 22 at 13:33
locale and local mean two different things. Locale refers to the place on earth you're from, whereas local is part of the directory structure. Edit: Sorry, I understand your question, good point
â Jeremy
Apr 22 at 13:33
Is OP asking for locale or local? I think your misunderstanding the question!
â George Udosen
Apr 22 at 13:35
Is OP asking for locale or local? I think your misunderstanding the question!
â George Udosen
Apr 22 at 13:35
@george Yep, good point, the answer linked in the comment is constructive none-the-less. I've dropped the flag.
â Jeremy
Apr 22 at 13:36
@george Yep, good point, the answer linked in the comment is constructive none-the-less. I've dropped the flag.
â Jeremy
Apr 22 at 13:36
 |Â
show 1 more comment
2 Answers
2
active
oldest
votes
up vote
2
down vote
/usr/local is a place where software usable by all users can be installed by an administrator.
~/.local/bin is a place where a user can install software for their own use.
There is some messiness in the history of the directory structure used in different distros and communities, but this covers the basic differences.
add a comment |Â
up vote
1
down vote
The ~/.local is intented for user-only use for example by installing a 3rd-party software that does not come from the repositories in ~/.local/bin you will have it access you and only you.
Whilst the /usr/local is intented for stuff that is used for more that one user. For example /usr/local/bin has executabled that are 3rd-party but from repositories and are available to all users.
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
/usr/local is a place where software usable by all users can be installed by an administrator.
~/.local/bin is a place where a user can install software for their own use.
There is some messiness in the history of the directory structure used in different distros and communities, but this covers the basic differences.
add a comment |Â
up vote
2
down vote
/usr/local is a place where software usable by all users can be installed by an administrator.
~/.local/bin is a place where a user can install software for their own use.
There is some messiness in the history of the directory structure used in different distros and communities, but this covers the basic differences.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
/usr/local is a place where software usable by all users can be installed by an administrator.
~/.local/bin is a place where a user can install software for their own use.
There is some messiness in the history of the directory structure used in different distros and communities, but this covers the basic differences.
/usr/local is a place where software usable by all users can be installed by an administrator.
~/.local/bin is a place where a user can install software for their own use.
There is some messiness in the history of the directory structure used in different distros and communities, but this covers the basic differences.
answered Apr 22 at 13:38
Jeremy
1,43231832
1,43231832
add a comment |Â
add a comment |Â
up vote
1
down vote
The ~/.local is intented for user-only use for example by installing a 3rd-party software that does not come from the repositories in ~/.local/bin you will have it access you and only you.
Whilst the /usr/local is intented for stuff that is used for more that one user. For example /usr/local/bin has executabled that are 3rd-party but from repositories and are available to all users.
add a comment |Â
up vote
1
down vote
The ~/.local is intented for user-only use for example by installing a 3rd-party software that does not come from the repositories in ~/.local/bin you will have it access you and only you.
Whilst the /usr/local is intented for stuff that is used for more that one user. For example /usr/local/bin has executabled that are 3rd-party but from repositories and are available to all users.
add a comment |Â
up vote
1
down vote
up vote
1
down vote
The ~/.local is intented for user-only use for example by installing a 3rd-party software that does not come from the repositories in ~/.local/bin you will have it access you and only you.
Whilst the /usr/local is intented for stuff that is used for more that one user. For example /usr/local/bin has executabled that are 3rd-party but from repositories and are available to all users.
The ~/.local is intented for user-only use for example by installing a 3rd-party software that does not come from the repositories in ~/.local/bin you will have it access you and only you.
Whilst the /usr/local is intented for stuff that is used for more that one user. For example /usr/local/bin has executabled that are 3rd-party but from repositories and are available to all users.
answered Apr 22 at 13:38
Dimitrios Desyllas
311216
311216
add a comment |Â
add a comment |Â
Is locale and local the same @Jeremy?
â George Udosen
Apr 22 at 13:31
This answer in the flagged duplicate explains it pretty well: askubuntu.com/a/955971/3739
â Jeremy
Apr 22 at 13:32
locale and local mean two different things. Locale refers to the place on earth you're from, whereas local is part of the directory structure. Edit: Sorry, I understand your question, good point
â Jeremy
Apr 22 at 13:33
Is OP asking for locale or local? I think your misunderstanding the question!
â George Udosen
Apr 22 at 13:35
@george Yep, good point, the answer linked in the comment is constructive none-the-less. I've dropped the flag.
â Jeremy
Apr 22 at 13:36