Skip to content

Commit 012e186

Browse files
committed
preface:Ubuntu: Recommend using apt instead of apt-get
The 'apt' binary has appeared in apt 1.0 back in 2014 and has been ever since the recommended tool to install packages on Debian based systems. It makes little sense to recommend using 'apt-get' instead of 'apt' when even the current Debian oldstable - jessie - has apt >=1.0.9.8 and the Ubuntu 14.04 LTS - trusty - has apt >=1.0.1ubuntu1. Signed-off-by: Eddy Petrișor <eddy.petrisor@gmail.com>
1 parent 846d697 commit 012e186

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/preface.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,20 +94,20 @@ $ brew install qemu
9494

9595
``` console
9696
$ # arm-none-eabi-gdb
97-
$ sudo apt-get install gdb-arm-none-eabi
97+
$ sudo apt install gdb-arm-none-eabi
9898

9999
$ # QEMU
100-
$ sudo apt-get install qemu-system-arm
100+
$ sudo apt install qemu-system-arm
101101
```
102102

103103
#### Ubuntu 18.04
104104

105105
``` console
106106
$ # gdb-multiarch -- use `gdb-multiarch` when you wish to invoke gdb
107-
$ sudo apt-get install gdb-multiarch
107+
$ sudo apt install gdb-multiarch
108108

109109
$ # QEMU
110-
$ sudo apt-get install qemu-system-arm
110+
$ sudo apt install qemu-system-arm
111111
```
112112

113113
#### Windows

0 commit comments

Comments
 (0)