* Roelof Wobben <rwob...@hotmail.com> [2013-09-22 12:03:10 +0000]: > Hello, > > Before I try OpenBSd I have two questions. > > 1) The manual says that I can use pkg -upgrade > But how do I know which packages can be updated or which > security patches there are avaible. > > 2) Is a new version of Cinnamon avaible for OpenBSD and if so, > how can I install it. > > Regards, > > Roelof Wobben
To check if packages exist: set $PKG_PATH environment variable; then command: pkg_info -Q pkgname (where pkgname is a keyword the program will search for). Can also be run as non-root user To update packages: pkg_add -iu (-i is for interaction to selection flavors of pkg's and -u is for update). Must be run with privileges, i.e. sudo or root user.