Advertisement
Guest User

Untitled

a guest
Sep 24th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. /**
  2. *
  3. * Overview
  4. *
  5. */
  6.  
  7. Haiku is a POSIX-compliant desktop OS for personal computers.
  8. It has it's own micro kernel built taking multi-threading in mind. Meaning it's not a distribution of linux.
  9. This also means Haiku has a modular design. It has servers in user-land that provide much of it's functionality.
  10.  
  11. Haiku is written in C++ and provides an object-oriented API for apps to communicate with it.
  12. https://www.haiku-os.org/docs/api/
  13.  
  14. // Download
  15.  
  16. Almost-Beta 1 image
  17. https://discuss.haiku-os.org/t/efi-enabled-r1-beta1-testing-images-almost-rc/7394
  18.  
  19. // Warning
  20.  
  21. This is beta software. It has bugs.
  22.  
  23. /**
  24. *
  25. * Important links
  26. *
  27. */
  28.  
  29. Main Site - https://www.haiku-os.org
  30. Software - https://depot.haiku-os.org
  31. User Guide (Important) - https://www.haiku-os.org/docs/userguide/es/contents.html
  32. API - https://www.haiku-os.org/docs/api/
  33.  
  34. /**
  35. *
  36. * Shortcuts
  37. *
  38. */
  39.  
  40. ALT + W - Close window/tab
  41. ALT + Q - Close application
  42. CTRL + ALT + LEFT CLICK - Move window
  43. CTRL + ALT + RIGHT CLICK - Resize window
  44. WINDOWS + DRAG WINDOW INTO TAB - Stack window
  45. ALT + DRAG ON TAB - Reposition tab
  46. CTRL + TAB - Switch focused window
  47. CTRL + ALT + ARROWS - Switch workspace
  48. DOUBLE CLICK TAB - Hide window
  49.  
  50. See the shortcuts app for custom shortcuts.
  51. preferences->shortcuts
  52.  
  53. NOTE: In haiku CTRL and ALT are switched. To change this go to preferences->KeymapSwitcher
  54.  
  55. /**
  56. *
  57. * How-To
  58. *
  59. */
  60.  
  61. // Arrange icons on the desktop
  62. Right click->clean (ALT + K)
  63.  
  64. // Install software
  65. You can manage your software through the HaikuDepot app.
  66. Another way to install new software is through an .hpkg installer file.
  67.  
  68.  
  69. // Port software
  70. To ease the port process Haiku has the HaikuPorter tool. You basically write a dependencies file ("recipe") and compile your software with it.
  71. https://www.haiku-os.org/blog/humdinger/2017-02-22_building_packages_with_haikuporter/
  72.  
  73.  
  74. // Debug software
  75. Launch the debugger app and attach a "team" to the binary you want to debug.
  76.  
  77.  
  78. // Quit KDL crash (AKA Spooky white screen crash)
  79. There are three useful commands:
  80. 1. Abort - Kill the thread that's causing problems
  81. 2. Continue - Exit the debug screen
  82. 3. Help
  83.  
  84.  
  85. /**
  86. *
  87. * Must-have Apps
  88. *
  89. */
  90.  
  91. QMPlay - If you watch anime. The integrated player doesn't support mkv's subtitles yet.
  92. QuickLaunch - Launch any app.
  93. Paladin - Native C++ IDE.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement