Jargon File/en: Difference between revisions
(Updating to match new version of source page) |
(Updating to match new version of source page) |
||
(11 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<languages /> | <languages /> | ||
{{Info|1=This page is permanently under construction! Did you look in vain for some phrase? Or did you come across an explanation that you didn't quite understand? Please leave a comment on the talk page associated with this page — just | {{Info|1=This page is permanently under construction! Did you look in vain for some phrase? Or did you come across an explanation that you didn't quite understand? Please leave a comment on the [[Talk:Jargon File|talk page]] associated with this page — just start a new topic.<br />If you have a better explanation for something on this page, please don't hesitate to edit the item in question}} | ||
== The Jargon File == | == The Jargon File == | ||
Line 8: | Line 8: | ||
!Explanation | !Explanation | ||
!read more | !read more | ||
|- | |||
!API | |||
|API stands for ''application programming interface'' and it is an interface that allows other programs to interact with an application in a pre-defined way. | |||
|[https://en.wikipedia.org/wiki/Application_programming_interface Wikipedia: API] | |||
|- | |||
!bash | |||
|Bash is the "Bourne Again Shell" developed from its predecessor bsh = Bourne Shell. Bash is the default "command line interface" (CLI) of KDE. | |||
|[https://en.wikipedia.org/wiki/Bash_(Unix_shell) Wikipedia:bash] | |||
|- | |- | ||
!distro, distribution | !distro, distribution | ||
|A collection of software making up a | |A collection of software making up a complete operating system with desktop and applications. In car terms, this would be everything except the engine. {{smiley}} | ||
| [[Special:myLanguage/Live_CDs_-_a_way_to_choose_your_distro|Some Linux distros]] | | [[Special:myLanguage/Live_CDs_-_a_way_to_choose_your_distro|Some Linux distros]] | ||
|- | |- | ||
!live CD/DVD | !live CD/DVD | ||
|A complete distribution on a CD/DVD. Allows you to try out a distro without installing. Can be run on Windows without installing anything at all on your hard drive. Safe but slow. | |A complete distribution on a CD/DVD. Allows you to try out a distro without installing. Can be run on Windows without installing anything at all on your hard drive. Safe but slow. | ||
|[[Special:myLanguage/Live_CDs_-_a_way_to_choose_your_distro|Some Live CD's]] | |[[Special:myLanguage/Live_CDs_-_a_way_to_choose_your_distro|Some Live CD's]] | ||
|- | |- | ||
!repo, repository | !repo, repository | ||
|Collection of additional software, that can be downloaded and installed on your machine. See your distributions webpage for more info | |Collection of additional software, that can be downloaded and installed on your machine. You usually access your repository via applications like ''Discover'' or ''Muon''. See your distributions webpage for more info | ||
| | | | ||
|- | |- | ||
!terminal | !terminal | ||
|the Linux command line {{Icon|utilities-terminal}}. If you are told to enter text, this is where you enter it. | |the Linux command line interface ('''CLI''') {{Icon|utilities-terminal}}, usually bash run in Konsole. If you are told to enter text, this is where you enter it. | ||
|[[Special:myLanguage/Tutorials/Open a console|Open a console]] | |[[Special:myLanguage/Tutorials/Open a console|Open a console]] | ||
|- | |- | ||
!Package manager | !Package manager | ||
|Application to browse repos, add, or remove software. Distros often have their own package managers. This is the preferred way to install, or remove software safely. Software installed this way will automatically be kept up to date with the latest safety upgrades and bug fixes. | |Application to browse repos, add, or remove software. Distros often have their own package managers. This is the preferred way to install, or remove software safely. Software installed this way will automatically be kept up to date with the latest safety upgrades and bug fixes. | ||
|[[Tutorials/Install_KDE_software#Using Package Managers|Some Package Managers]] | |[[Special:myLanguage/Tutorials/Install_KDE_software#Using Package Managers|Some Package Managers]] | ||
|- | |- | ||
!root | !root | ||
|The administrator of your machine. Even if you administer your own machine, it is still preferable to only log in as root when you absolutely must. Usually, if you want to do something that needs you to be root, a popup will simply ask for root's password, so you won't need to switch user.<br /><br />Root also designates the basis of the file hierarchy, signified by <tt>/</tt> | |The administrator of your machine. Even if you administer your own machine, it is still preferable to only log in as root when you absolutely must. Usually, if you want to do something that needs you to be root, a popup will simply ask for root's password, so you won't need to switch user.<br /><br />Root also designates the basis of the file hierarchy, signified by <tt>/</tt> | ||
| | | | ||
|- | |- | ||
!console | !console | ||
|the Linux command line | |the Linux command line interface (CLI), usually bash run in Konsole. | ||
|[[Special:myLanguage/Tutorials/Open a console|Open a console]] | |[[Special:myLanguage/Tutorials/Open a console|Open a console]] | ||
|- | |- | ||
!shell | !shell | ||
|the Linux command line | |the Linux command line interface (CLI), usually bash run in Konsole. A set of commands is comprised in this shell. | ||
|[[Special:myLanguage/Konsole|Konsole]] | |[[Special:myLanguage/Konsole|Konsole]] | ||
|- | |- | ||
!su - | !su - | ||
|Shell command to switch user, usually to root. Used, when you need special rights to do something. You will be prompted for the root password before su takes effect. NB: remember to type <code>exit</code> when you are done. This gets you back to your regular user. | |Shell command to switch user, usually to root. Used, when you need special rights to do something. You will be prompted for the root password before su takes effect. NB: remember to type <code>exit</code> when you are done. This gets you back to your regular user. | ||
| | | | ||
|- | |- | ||
!sudo | !sudo | ||
|Like su, but it only grants root privileges for one command, so the command you want to run should immediately follow sudo. | |Like su, but it only grants root privileges for one command, so the command you want to run should immediately follow sudo. Unlike su, you will be requested to provide your own password (not the one of root user) and you will not need to exit. | ||
| | | | ||
|- | |- | ||
!path | !path | ||
|Full specification of a file giving its placing in the file system. For example <tt>/home/myUser/Documents/Greetings.txt</tt> (an absolute path), or <tt>Document/Greeting.txt</tt> (path relative to my home directory). | |Full specification of a file giving its placing in the file system. For example <tt>/home/myUser/Documents/Greetings.txt</tt> (an absolute path), or <tt>Document/Greeting.txt</tt> (path relative to my home directory). | ||
| | | | ||
|- | |- | ||
Line 67: | Line 64: | ||
|anything that may be wrong with an application or the underlying framework. | |anything that may be wrong with an application or the underlying framework. | ||
|[[Special:myLanguage/Asking_Questions#Reporting KDE Bugs|Reporting bugs]] | |[[Special:myLanguage/Asking_Questions#Reporting KDE Bugs|Reporting bugs]] | ||
|- | |- | ||
!bko | !bko | ||
|Short name for the KDE bug reporting site | |Short name for the KDE bug reporting site | ||
|[http://bugs.kde.org bugs.kde.org] | |[http://bugs.kde.org bugs.kde.org] | ||
|- | |- | ||
!user | !user | ||
|A user account. Most Linux system are set up with at least one ordinary user (you) and an administrator | |A user account. Most Linux system are set up with at least one ordinary user (you) and an administrator = root. | ||
| | | | ||
|- | |- | ||
!session | !session | ||
|When you log in to your system, an application or some server you start a session, which lasts until you log out of it again. | |When you log in to your system, an application or some server you start a session, which lasts until you log out of it again. | ||
| | | | ||
|- | |- | ||
!logon | !logon | ||
|The act of starting a new session on a system. This usually requires a username and a password. Several users might be logged on to a system simultaneously, although only one would be active at a time. | |The act of starting a new session on a system. This usually requires a username and a password. Several users might be logged on to a system simultaneously, although only one would be active at a time. | ||
| | | | ||
|- | |- | ||
!logout | !logout | ||
|The act of ending a session on a system. The system will then wait for another logon rather that just shutting down. | |The act of ending a session on a system. The system will then wait for another logon rather that just shutting down. | ||
| | | | ||
|- | |- | ||
!desktop | !desktop | ||
|The workspace you see, when you log in. It typically has a panel with a start menu and other widgets. The workspace itself can also hold various widgets. | |The workspace you see, when you log in. It typically has a panel with a start menu and other widgets. The workspace itself can also hold various widgets. | ||
| | | | ||
|- | |- | ||
Line 102: | Line 92: | ||
| | | | ||
|[[Special:myLanguage/Glossary#Activities|Activities]] | |[[Special:myLanguage/Glossary#Activities|Activities]] | ||
|- | |- | ||
!pager | !pager | ||
|A widget to switch between virtual desktops | |A widget to switch between virtual desktops | ||
|[[Special:myLanguage/Glossary#Pager|Pager]] | |[[Special:myLanguage/Glossary#Pager|Pager]] | ||
|- | |- | ||
!task manager | !task manager | ||
|A widget that you will often see in your desktops panel. It will contain a small button for each application you are currently running. You can use it to switch between those applications. | |A widget that you will often see in your desktops panel. It will contain a small button for each application you are currently running. You can use it to switch between those applications. | ||
| | | | ||
|- | |- | ||
Line 117: | Line 104: | ||
|A widget that you will often see in your desktops panel. It contains icons for some system services such as the [[Special:myLanguage/Klipper|clipboard]] and the [[Special:myLanguage/Plasma/DeviceNotifier|Device Notifier]]. | |A widget that you will often see in your desktops panel. It contains icons for some system services such as the [[Special:myLanguage/Klipper|clipboard]] and the [[Special:myLanguage/Plasma/DeviceNotifier|Device Notifier]]. | ||
|[[Special:myLanguage/Plasma/SystemTray|System Tray]] | |[[Special:myLanguage/Plasma/SystemTray|System Tray]] | ||
|- | |- | ||
!thumbnail | !thumbnail | ||
|A small (often icon sized) preview of the content a file | |A small (often icon sized) preview of the content a file | ||
| | | | ||
|- | |- | ||
!screenshot | !screenshot | ||
|An image of what is on your screen at a particular time — sometimes required when you ask for help | |An image of what is on your screen at a particular time — sometimes required when you ask for help | ||
|[[Special:myLanguage/ | |[[Special:myLanguage/Spectacle|Spectacle]] | ||
|- | |- | ||
!window | !window | ||
| | | | ||
| | | | ||
|- | |- | ||
!tab | !tab | ||
| | | | ||
| | | | ||
Line 141: | Line 123: | ||
!window decorations | !window decorations | ||
|The edges around windows including the title line and its buttons, for example the close button. | |The edges around windows including the title line and its buttons, for example the close button. | ||
| | | | ||
|- | |- | ||
!theme | !theme | ||
|A set of settings for the visual appearance of an application giving it a distinctive look and feel | |A set of settings for the visual appearance of an application giving it a distinctive look and feel | ||
| | | | ||
|- | |- | ||
Line 152: | Line 132: | ||
|A widget that holds other widgets. You can have one or more panels on your desktop. A panel is always placed along one of the edges of the screen. | |A widget that holds other widgets. You can have one or more panels on your desktop. A panel is always placed along one of the edges of the screen. | ||
|[[Special:myLanguage/Plasma/Panels|Panels]] | |[[Special:myLanguage/Plasma/Panels|Panels]] | ||
|- | |- | ||
!widget | !widget | ||
|A self contained mini application that resides on (maybe integrate into) the desktop | |A self contained mini application that resides on (maybe integrate into) the desktop | ||
|[[Special:myLanguage/Glossary#Widget|Widget]] | |[[Special:myLanguage/Glossary#Widget|Widget]] | ||
|- | |- | ||
!kio slave | !kio slave | ||
| | | | ||
|[[Special:myLanguage/Glossary#KIO|KIO]] | |[[Special:myLanguage/Glossary#KIO|KIO]] | ||
|- | |- | ||
!kpart | !kpart | ||
| | | | ||
|[[Special:myLanguage/Glossary#KPart|KPart]] | |[[Special:myLanguage/Glossary#KPart|KPart]] | ||
|- | |- | ||
!bookmark | !bookmark | ||
| | | | ||
| | | | ||
|- | |- | ||
!virtual terminal | !virtual terminal | ||
|Command line console interface, usually <keycap>Alt + Ctrl + F[1-6]</keycap> | |Command line console text-only interface, usually <keycap>Alt + Ctrl + F[1-6]</keycap> Looks like CLI with bash run in Konsole, but cannot display graphics, just text and characters. | ||
| | | | ||
|- | |- | ||
!virtual console | !virtual console | ||
| | |Pretty much a virtual terminal. | ||
| | | | ||
|- | |- | ||
Line 187: | Line 160: | ||
| | | | ||
|[[Special:myLanguage/Glossary#Virtual Desktops|Virtual Desktops]] | |[[Special:myLanguage/Glossary#Virtual Desktops|Virtual Desktops]] | ||
|- | |- | ||
!''x''ko | !''x''ko | ||
|where ''x'' is some letter. Abbreviation for some KDE web site. Examples: fko = forums.kde.org, bko = bugs.kde.org and so on. | |where ''x'' is some letter. Abbreviation for some KDE web site. Examples: fko = forums.kde.org, bko = bugs.kde.org and so on. | ||
| | | | ||
|- | |- | ||
Line 197: | Line 168: | ||
|short for Konversation, the IRC client | |short for Konversation, the IRC client | ||
|[[Special:myLanguage/Konversation|Konversation]] | |[[Special:myLanguage/Konversation|Konversation]] | ||
|- | |- | ||
!Nepomuk | !Nepomuk | ||
| | | | ||
|[[Special:myLanguage/Glossary#Nepomuk|Nepomuk]] | |[[Special:myLanguage/Glossary#Nepomuk|Nepomuk]] | ||
|- | |- | ||
!Akonadi | !Akonadi | ||
| | | | ||
|[[Special:myLanguage/Glossary#Akonadi|Akonadi]] | |[[Special:myLanguage/Glossary#Akonadi|Akonadi]] | ||
|- | |- | ||
!Strigi | !Strigi | ||
| | | | ||
|[[Special:myLanguage/Glossary#Strigi|Strigi]] | |[[Special:myLanguage/Glossary#Strigi|Strigi]] | ||
|- | |- | ||
!KDE | !KDE | ||
|The community of contributors and users of KDE technologies | |The community of contributors and users of KDE technologies | ||
|[[Special:myLanguage/What is KDE|What is KDE]] | |[[Special:myLanguage/What is KDE|What is KDE]] | ||
|- | |- | ||
!KDE SC | !KDE SC | ||
|The periodic releases of the KDE frameworks and core utilities — the Software Collection | |The periodic releases of the KDE frameworks and core utilities — the '''Software Collection''' | ||
| | | | ||
|- | |- | ||
!KDE Software | !KDE Software | ||
|Besides the KDE SC a number of other software projects are developed under the KDE umbrella and actively supported by the community | |Besides the KDE SC a number of other software projects are developed under the KDE umbrella and actively supported by the community | ||
| | | | ||
|- | |- | ||
!Plasma | !Plasma | ||
|The KDE workspace and supporting technology. Plasma workspaces comes in several varieties, Plasma Desktop, Plasma Netbook and Plasma Active | |The KDE workspace and supporting technology. Plasma workspaces comes in several varieties, Plasma Desktop, Plasma Netbook and Plasma Active | ||
| | | | ||
|- | |- | ||
!Plasma Desktop | !Plasma Desktop | ||
|The KDE workspace variety designed for traditional computers, ie. systems with traditional input devices such as keyboard and mouse and with large displays | |The KDE workspace variety designed for traditional computers, ie. systems with traditional input devices such as keyboard and mouse and with large displays | ||
| | | | ||
|- | |- | ||
!Plasma | !Plasma Mobile | ||
|The KDE workspace variety designed for smartphones and similar compact devices | |The KDE workspace variety designed for smartphones and similar compact devices | ||
| | | | ||
|- | |- | ||
Line 252: | Line 208: | ||
|Short for the planet.kde.org. The Planet aggregates blogs about all things KDE | |Short for the planet.kde.org. The Planet aggregates blogs about all things KDE | ||
|[http://planet.kde.org planet.kde.org] | |[http://planet.kde.org planet.kde.org] | ||
|- | |- | ||
!Dot | !Dot | ||
|Short for dot.kde.org. The Dot is the official news site for KDE | |Short for dot.kde.org. The Dot is the official news site for KDE | ||
|[http://dot.kde.org dot.kde.org] | |[http://dot.kde.org dot.kde.org] | ||
|- | |- | ||
!Get Hot New Stuff | !Get Hot New Stuff | ||
|Technology that allows applications to offer users the option to easily download and install plugins, artwork, scripts or similar additions using a unified interface | |Technology that allows applications to offer users the option to easily download and install plugins, artwork, scripts or similar additions using a unified interface. Upload for data sharing, however, is done less easily. | ||
|[[Special:myLanguage/Glossary#Get Hot New Stuff|Get Hot New Stuff]] | |[[Special:myLanguage/Glossary#Get Hot New Stuff|Get Hot New Stuff]] | ||
|- | |- | ||
!tar ball | !tar ball | ||
|An archive format for distributing files. To use the files contained in a tar ball you need to unpack it (see [[Special:myLanguage/Dolphin/File Management#Archive Management in Dolphin|Archive Management in Dolphin]]). | |An archive format for distributing files. To use the files contained in a tar ball you need to unpack it (see [[Special:myLanguage/Dolphin/File Management#Archive Management in Dolphin|Archive Management in Dolphin]]). | ||
| | | | ||
|- | |- | ||
!snapshot | !snapshot | ||
|Latest development version of an application. Not as polished and well tested as the stable version. | |Latest development version of an application. Not as polished and well tested as the stable version. | ||
| | | | ||
|- | |- | ||
!sources | !sources | ||
|Text files containing source code of some software. It has to be compiled and installed before it can be used. | |Text files containing source code of some software. It has to be compiled and installed before it can be used. | ||
| | | | ||
|- | |- | ||
!build | !build | ||
| | | | ||
| | | | ||
Line 286: | Line 235: | ||
!Context menu | !Context menu | ||
|A menu with items relevant for a particular object. Typically, it pops up when you right click the object. | |A menu with items relevant for a particular object. Typically, it pops up when you right click the object. | ||
| | | | ||
|- | |- | ||
!meta key | !meta key | ||
|A special key used in combination with other keys. Often the <keycap>Start</keycap> is used for this. | |A special key used in combination with other keys. Often the <keycap>Start</keycap> key is used for this. | ||
| | | | ||
|- | |- | ||
!cli | !cli | ||
|command line interface | |The '''command line interface''' (CLI) is usually bash (= Bourne Again Shell) run in Konsole app, a textual device for input (type via keyboard) and output (visual read from screen). | ||
| | | | ||
|- | |- | ||
!plasmoid | !plasmoid | ||
|a native plasma widget | |a native plasma widget program. | ||
| | | | ||
|- | |- | ||
!applet | !applet | ||
|A widget | |A widget | ||
| | | | ||
|- | |- | ||
!ghns | !ghns | ||
|See Get Hot New Stuff | |See Get Hot New Stuff | ||
|[[Glossary#Get Hot New Stuff|Get Hot New Stuff]] | |[[Special:myLanguage/Glossary#Get Hot New Stuff|Get Hot New Stuff]] | ||
|- | |- | ||
!kdesu | !kdesu | ||
|console command use to start a gui application as a different user (usually root) that runs in the existing desktop | |console command use to start a gui application as a different user (usually root) that runs in the existing desktop | ||
| | | | ||
|- | |- | ||
!kdesudo | !kdesudo | ||
|See kdesu | |See kdesu | ||
| | | | ||
|- | |- | ||
!virtual console | !virtual console | ||
|See virtual terminal | |See virtual terminal , an interface (CLI) usually bash run in Konsole. | ||
| | | | ||
|- | |- | ||
Line 332: | Line 272: | ||
|Short name for the KDE forums | |Short name for the KDE forums | ||
|[http://forums.kde.org forums.kde.org] | |[http://forums.kde.org forums.kde.org] | ||
|- | |- | ||
!hover | !hover | ||
|To place the | |To place the mouse over some item and keep it still for a little while, so some info bubble pops up or the mouse cursor changes shape. | ||
| | | | ||
|- | |- | ||
!Tooltip | !Tooltip | ||
|Small info box that is displayed when you hover over an item | |Small info box that is displayed when you hover over an item with the cursor. | ||
| | | | ||
|- | |- | ||
!prefix | !prefix | ||
|A piece of text at the beginning of a text string – the first few letters | |A piece of text at the beginning of a text string – the first few letters | ||
| | | | ||
|- | |- | ||
Line 352: | Line 288: | ||
|A piece of text at the end of a text string – the last few letters | |A piece of text at the end of a text string – the last few letters | ||
| | | | ||
|- | |||
!<tt>$HOME</tt> | |||
|The path to your home directory such as '''/home/wiliam/''' | |||
| | | | ||
|- | |- | ||
!< | !Super key | ||
|A special key used in combination with other keys. Often the <keycap>Start</keycap> key is used for this. | |||
| | | | ||
|- | |||
!Compose key | |||
|A special key used in combination with other keys – mostly to type accented characters and other non standard letters and symbols, e.g. '''Alt Gr''' | |||
|[[Special:myLanguage/Tutorials/ComposeKey|Compose Key]] | |||
|- | |||
!Hamburger menu | |||
|An icon in the shape of 3 horizontal lines (or 3 bullets) stacked vertically. It opens up a menu of commands or settings options. | |||
| | | | ||
|} | |} | ||
[[Category:Getting Started]] | |||
[[Category:New Users]] | [[Category:New Users]] |
Latest revision as of 10:52, 18 November 2022
Information
This page is permanently under construction! Did you look in vain for some phrase? Or did you come across an explanation that you didn't quite understand? Please leave a comment on the talk page associated with this page — just start a new topic.
If you have a better explanation for something on this page, please don't hesitate to edit the item in question
If you have a better explanation for something on this page, please don't hesitate to edit the item in question
The Jargon File
Term | Explanation | read more |
---|---|---|
API | API stands for application programming interface and it is an interface that allows other programs to interact with an application in a pre-defined way. | Wikipedia: API |
bash | Bash is the "Bourne Again Shell" developed from its predecessor bsh = Bourne Shell. Bash is the default "command line interface" (CLI) of KDE. | Wikipedia:bash |
distro, distribution | A collection of software making up a complete operating system with desktop and applications. In car terms, this would be everything except the engine. | Some Linux distros |
live CD/DVD | A complete distribution on a CD/DVD. Allows you to try out a distro without installing. Can be run on Windows without installing anything at all on your hard drive. Safe but slow. | Some Live CD's |
repo, repository | Collection of additional software, that can be downloaded and installed on your machine. You usually access your repository via applications like Discover or Muon. See your distributions webpage for more info | |
terminal | the Linux command line interface (CLI) , usually bash run in Konsole. If you are told to enter text, this is where you enter it. | Open a console |
Package manager | Application to browse repos, add, or remove software. Distros often have their own package managers. This is the preferred way to install, or remove software safely. Software installed this way will automatically be kept up to date with the latest safety upgrades and bug fixes. | Some Package Managers |
root | The administrator of your machine. Even if you administer your own machine, it is still preferable to only log in as root when you absolutely must. Usually, if you want to do something that needs you to be root, a popup will simply ask for root's password, so you won't need to switch user. Root also designates the basis of the file hierarchy, signified by / |
|
console | the Linux command line interface (CLI), usually bash run in Konsole. | Open a console |
shell | the Linux command line interface (CLI), usually bash run in Konsole. A set of commands is comprised in this shell. | Konsole |
su - | Shell command to switch user, usually to root. Used, when you need special rights to do something. You will be prompted for the root password before su takes effect. NB: remember to type exit when you are done. This gets you back to your regular user.
|
|
sudo | Like su, but it only grants root privileges for one command, so the command you want to run should immediately follow sudo. Unlike su, you will be requested to provide your own password (not the one of root user) and you will not need to exit. | |
path | Full specification of a file giving its placing in the file system. For example /home/myUser/Documents/Greetings.txt (an absolute path), or Document/Greeting.txt (path relative to my home directory). | |
bug | anything that may be wrong with an application or the underlying framework. | Reporting bugs |
bko | Short name for the KDE bug reporting site | bugs.kde.org |
user | A user account. Most Linux system are set up with at least one ordinary user (you) and an administrator = root. | |
session | When you log in to your system, an application or some server you start a session, which lasts until you log out of it again. | |
logon | The act of starting a new session on a system. This usually requires a username and a password. Several users might be logged on to a system simultaneously, although only one would be active at a time. | |
logout | The act of ending a session on a system. The system will then wait for another logon rather that just shutting down. | |
desktop | The workspace you see, when you log in. It typically has a panel with a start menu and other widgets. The workspace itself can also hold various widgets. | |
activity | Activities | |
pager | A widget to switch between virtual desktops | Pager |
task manager | A widget that you will often see in your desktops panel. It will contain a small button for each application you are currently running. You can use it to switch between those applications. | |
systray | A widget that you will often see in your desktops panel. It contains icons for some system services such as the clipboard and the Device Notifier. | System Tray |
thumbnail | A small (often icon sized) preview of the content a file | |
screenshot | An image of what is on your screen at a particular time — sometimes required when you ask for help | Spectacle |
window | ||
tab | ||
window decorations | The edges around windows including the title line and its buttons, for example the close button. | |
theme | A set of settings for the visual appearance of an application giving it a distinctive look and feel | |
panel | A widget that holds other widgets. You can have one or more panels on your desktop. A panel is always placed along one of the edges of the screen. | Panels |
widget | A self contained mini application that resides on (maybe integrate into) the desktop | Widget |
kio slave | KIO | |
kpart | KPart | |
bookmark | ||
virtual terminal | Command line console text-only interface, usually Alt + Ctrl + F[1-6] Looks like CLI with bash run in Konsole, but cannot display graphics, just text and characters. | |
virtual console | Pretty much a virtual terminal. | |
Virtual desktop | Virtual Desktops | |
xko | where x is some letter. Abbreviation for some KDE web site. Examples: fko = forums.kde.org, bko = bugs.kde.org and so on. | |
Konvi | short for Konversation, the IRC client | Konversation |
Nepomuk | Nepomuk | |
Akonadi | Akonadi | |
Strigi | Strigi | |
KDE | The community of contributors and users of KDE technologies | What is KDE |
KDE SC | The periodic releases of the KDE frameworks and core utilities — the Software Collection | |
KDE Software | Besides the KDE SC a number of other software projects are developed under the KDE umbrella and actively supported by the community | |
Plasma | The KDE workspace and supporting technology. Plasma workspaces comes in several varieties, Plasma Desktop, Plasma Netbook and Plasma Active | |
Plasma Desktop | The KDE workspace variety designed for traditional computers, ie. systems with traditional input devices such as keyboard and mouse and with large displays | |
Plasma Mobile | The KDE workspace variety designed for smartphones and similar compact devices | |
Planet | Short for the planet.kde.org. The Planet aggregates blogs about all things KDE | planet.kde.org |
Dot | Short for dot.kde.org. The Dot is the official news site for KDE | dot.kde.org |
Get Hot New Stuff | Technology that allows applications to offer users the option to easily download and install plugins, artwork, scripts or similar additions using a unified interface. Upload for data sharing, however, is done less easily. | Get Hot New Stuff |
tar ball | An archive format for distributing files. To use the files contained in a tar ball you need to unpack it (see Archive Management in Dolphin). | |
snapshot | Latest development version of an application. Not as polished and well tested as the stable version. | |
sources | Text files containing source code of some software. It has to be compiled and installed before it can be used. | |
build | ||
Context menu | A menu with items relevant for a particular object. Typically, it pops up when you right click the object. | |
meta key | A special key used in combination with other keys. Often the Start key is used for this. | |
cli | The command line interface (CLI) is usually bash (= Bourne Again Shell) run in Konsole app, a textual device for input (type via keyboard) and output (visual read from screen). | |
plasmoid | a native plasma widget program. | |
applet | A widget | |
ghns | See Get Hot New Stuff | Get Hot New Stuff |
kdesu | console command use to start a gui application as a different user (usually root) that runs in the existing desktop | |
kdesudo | See kdesu | |
virtual console | See virtual terminal , an interface (CLI) usually bash run in Konsole. | |
fko | Short name for the KDE forums | forums.kde.org |
hover | To place the mouse over some item and keep it still for a little while, so some info bubble pops up or the mouse cursor changes shape. | |
Tooltip | Small info box that is displayed when you hover over an item with the cursor. | |
prefix | A piece of text at the beginning of a text string – the first few letters | |
postfix | A piece of text at the end of a text string – the last few letters | |
$HOME | The path to your home directory such as /home/wiliam/ | |
Super key | A special key used in combination with other keys. Often the Start key is used for this. | |
Compose key | A special key used in combination with other keys – mostly to type accented characters and other non standard letters and symbols, e.g. Alt Gr | Compose Key |
Hamburger menu | An icon in the shape of 3 horizontal lines (or 3 bullets) stacked vertically. It opens up a menu of commands or settings options. |