Skip to content

Commit 7f3ef4b

Browse files
authored
Copy edit
1 parent a95fed5 commit 7f3ef4b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

linux/software/apt.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# APT
22

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.
44

55
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).
66

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.
88

99
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.
1010

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.
1212

1313
## Software sources
1414

@@ -24,7 +24,7 @@ sudo apt-get update
2424
sudo apt-get install tree
2525
```
2626

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:
2828

2929
```bash
3030
sudo apt-get install tree -y
@@ -34,7 +34,7 @@ Installing this package makes `tree` available for the user.
3434

3535
## Using an installed package
3636

37-
`tree` is a command line 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.
3838

3939
- Typing `tree` runs the tree command. For example:
4040

@@ -50,7 +50,7 @@ tree
5050

5151
```
5252

53-
- Typing `man tree` gives the manual entry for the package `tree`
53+
- Typing `man tree` gives the manual entry for the package `tree`.
5454
- Typing `whereis tree` shows where `tree` lives:
5555

5656
```bash

0 commit comments

Comments
 (0)