You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: linux/software/apt.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
# APT
2
2
3
-
The easiest way to manage installing, upgrading, and removing software is using APT (Advanced Packaging Tool) which comes from Debian. If a piece of software is packaged in Debian and it works on the Raspberry Pi's ARM architecture, it should also be available in Raspbian.
3
+
The easiest way to manage installing, upgrading, and removing software is using APT (Advanced Packaging Tool) from Debian. If a piece of software is packaged in Debian and it works on the Raspberry Pi's ARM architecture, it should also be available in Raspbian.
4
4
5
5
To install or remove packages you need root user permissions, so your user needs to be in `sudoers` or you must be logged in as `root`. Read more about [users](../usage/users.md) and [root](../usage/root.md).
6
6
7
-
To install new packages, or update existing ones, you will need an internet connection.
7
+
To install new packages, or update existing ones, you'll need an internet connection.
8
8
9
9
Note that installing software uses up disk space on your SD card, so you should keep an eye on disk usage and use an appropriately sized SD card.
10
10
11
-
Also note that a lock is performed while software is installing, so you cannot install multiple packages at the same time.
11
+
Also note that a lock is performed while software is installing, so you can't install multiple packages at the same time.
12
12
13
13
## Software sources
14
14
@@ -24,7 +24,7 @@ sudo apt-get update
24
24
sudo apt-get install tree
25
25
```
26
26
27
-
Typing this command should inform the user how much disk space the package will take up and asks for confirmation of the package installation. Entering `Y` (or just hitting`Enter`, as yes is the default action) will allow the installation to occur. This can be bypassed by adding the `-y` flag to the command:
27
+
Typing this command should inform the user how much disk space the package will take up and asks for confirmation of the package installation. Entering `Y` (or just pressing`Enter`, as yes is the default action) will allow the installation to occur. This can be bypassed by adding the `-y` flag to the command:
28
28
29
29
```bash
30
30
sudo apt-get install tree -y
@@ -34,7 +34,7 @@ Installing this package makes `tree` available for the user.
34
34
35
35
## Using an installed package
36
36
37
-
`tree` is a commandline tool which provides a visualisation of the directory structure of the current directory, and all it contains.
37
+
`tree` is a command-line tool which provides a visualisation of the structure of the current directory, and all its contents.
38
38
39
39
- Typing `tree` runs the tree command. For example:
40
40
@@ -50,7 +50,7 @@ tree
50
50
51
51
```
52
52
53
-
- Typing `man tree` gives the manual entry for the package `tree`
53
+
- Typing `man tree` gives the manual entry for the package `tree`.
0 commit comments