tutorial.rst 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. Pwman3 - tutorial
  2. *****************
  3. Pwman3 is a text centric password manager, and as such suitable for people wishing
  4. to use it over SSH or brail terminals.
  5. Pwman3 is launched by typing ``pwman3`` in your shell. Multiple start options are
  6. available. You can see them by typing::
  7. $ pwman3 -h
  8. For more information see also ``man pwman3``.
  9. When started for the first time, ``pwman3`` will create a configuration file
  10. and your database (By default an SQLite database called ``pwman.db``) in your
  11. home directory under ``.pwman``.
  12. Before creating the database you will be asked to enter the master password which
  13. will be used to create an encryption key which will be used to encrypt the entries
  14. in your database::
  15. $ pwman3
  16. Please type in the master password:
  17. Take note of this password! If you forget it, you won't be able to read your password
  18. database.
  19. Now ``pwman3`` will wait for your input. The user interface is
  20. a simple loop waiting for user commands. You can see all the commands by typing::
  21. pwman> help
  22. Documented commands (type help <topic>):
  23. ========================================
  24. cls delete exit forget list open print
  25. copy edit export help new passwd tags
  26. Aliases:
  27. ========
  28. EOF cp h ls n o p rm
  29. Most commands have a single or two letter alias which is easy to remember.
  30. As for a start you would probably like to store some passwords in your database, all
  31. you need to do is type the command ``new`` (or the alias ``n``), and then insert the information
  32. as promted::
  33. pwman> new
  34. Username: oz123
  35. Password:
  36. Url: example.org
  37. Notes: Your notes
  38. Tags: bank private
  39. Note the password is typed in without echoing it. Also note that two tags were
  40. separated by a space. Now, you can list your database entries with::
  41. pwman> ls
  42. ID USER URL TAGS
  43. 1 oz123 example.org bank, private
  44. After a while you have had many new nodes inserted in your database::
  45. ID USER URL TAGS
  46. 1 oz123 example.org bank, private
  47. 2 oz123 intranet.workplace.biz work
  48. 3 oz123 shopping.com shopping
  49. Now searching for a searching entry can become quite tiresome. Hence, you can
  50. minimize the number of entries display by applying a filter to the ``list``
  51. command::
  52. pwman> ls work
  53. ID USER URL TAGS
  54. 2 oz123 intranet.workplace.biz workplace
  55. If you don't remember all the tags you created you can list the tags using the
  56. command ``tags``::
  57. pwman> tags
  58. Tags:
  59. bank,
  60. private,
  61. shopping