You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
-
+1: If you decide to compile from sources or simply unpack a tarball, think twice before doing a make install to the /: you may overwrite files or add files which the package manager is not tracking, and this may break your system. Think this should be etched deeply in your mind!Deer Hunter– Deer Hunter2013-01-08 19:04:18 +00:00Commented Jan 8, 2013 at 19:04
-
@njsg great answer, thanks.. How do you deal with software that is not packaged for your distro, then? Can you think of any real-life practical examples in which installing a software from the developer breaks the existing system?posdef– posdef2013-01-08 20:36:43 +00:00Commented Jan 8, 2013 at 20:36
-
@posdef I use Gentoo. As it is a source-based distro, software is already installed by compiling from source, using "ebuild scripts". So I first look up to see if anyone else did one of those before. If they did, I use that, if they didn't, I try to write my own. This ensures me that even with a system-wide install, it will protect against collisions (overwriting existing files) and it will be able to completely remove the files. If it does not work, I just have to uninstall the package. [...]njsg– njsg2013-01-08 22:36:17 +00:00Commented Jan 8, 2013 at 22:36
-
[...] If it's something I don't need system-wide, I may as well as compile it under $HOME and run it from the source directory.njsg– njsg2013-01-08 22:37:00 +00:00Commented Jan 8, 2013 at 22:37
-
@posdef As for software that breaks the system, maybe nVidia drivers? It has been a while since I have used nVidia cards under Linux, but once in a while I still see people commenting how it screwed their system. I don't know how likely it is, but you're modules, drivers, maybe even some configs (udev rules, maybe?), if any of that breaks your system, you have to remove it by hand, I doubt it's that easy to keep track of all the things you have to remove. [...]njsg– njsg2013-01-08 22:50:59 +00:00Commented Jan 8, 2013 at 22:50
|
Show 1 more comment
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. shell-script), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you