Unit00-03-pkg-hint.md 516 B

Unit 0 - pkg

pkg is FreeBSD's package management suite.

Exercise

  • Search for the package figlet
  • Install the package figlet
  • Run figlet and have it print out "hello"
  • Remove the package figlet

Hints

~ pkg search figlet
...

~ sudo pkg install figlet
...

~ figlet "hello!"
 _          _ _       _ 
| |__   ___| | | ___ | |
| '_ \ / _ \ | |/ _ \| |
| | | |  __/ | | (_) |_|
|_| |_|\___|_|_|\___/(_)


~ sudo pkg remove figlet
...