~ubuntu-branches/ubuntu/trusty/kubuntu-docs/trusty

« back to all changes in this revision

Viewing changes to usr/share/doc/kde/HTML/en/kubuntu/KubuntuDocs/Basic/ManagingSoftware.html

  • Committer: Package Import Robot
  • Author(s): Olivier van der Toorn, Olivier van der Toorn, Jonathan Riddell
  • Date: 2013-10-01 17:11:04 UTC
  • Revision ID: package-import@ubuntu.com-20131001171104-frmpwi43z7k1m9vq
Tags: 13.10ubuntu2
[ Olivier van der Toorn ]
* Added the phone/comercial support page, based on
  https://wiki.kubuntu.org/Kubuntu/KubuntuDocs/PhoneSupport
* Put tokhelp.py script into package

[ Jonathan Riddell ]
* Add update rule to debian/rules to call tokhelp.py
* Tidy directory structure and add icon

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html>
2
 
<head>
3
 
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
4
 
<meta name="robots" content="index,nofollow">
5
 
 
6
 
<title>Kubuntu Documentation</title>
7
 
 
8
 
<link rel="stylesheet" type="text/css" href="/kubuntu/css/common.css">
9
 
<link rel="stylesheet" type="text/css" href="/kubuntu/css/screen.css">
10
 
</head>
11
 
 
12
 
<body  lang="en" dir="ltr">
13
 
 
14
 
<!-- BEGIN HEADER -->
15
 
<div id="wrapper" class="hfeed">
16
 
<div id="header">
17
 
    <!--<ul id="mothership">
18
 
        <li> <a href="http://www.kubuntu.org/news">News</a> </li>
19
 
        <li> <a href="http://www.kubuntu.org/getkubuntu">Get Kubuntu</a> </li>
20
 
        <li> <a href="http://www.kubuntu.org/feature-tour">Feature Tour</a> </li>
21
 
        <li> <a href="http://www.kubuntu.org/support">Support</a> </li>
22
 
        <li> <a href="http://www.kubuntu.org">Kubuntu.org</a> </li>
23
 
    </ul>-->
24
 
 
25
 
    <div id="orangeHeader">
26
 
        <h1> <a href="/kubuntu/KubuntuDocs.html" title="Kubuntu Documentation"><span>Kubuntu Documentation</span></a> </h1>
27
 
    </div>
28
 
    
29
 
        <div id="main"> 
30
 
                <div id="container">
31
 
                        <div id="content">
32
 
        <div class="hentry post">
33
 
               
34
 
 
35
 
<div id="page" lang="en" dir="ltr">
36
 
<h2 class='entry-title'>
37
 
<span><a href='/kubuntu/KubuntuDocs/Basic/ManagingSoftware.html'>ManagingSoftware</a></span>
38
 
</h2>
39
 
<table style="float:right; font-size: 0.9em; width:40%; background:#F1F1ED; margin: 0 0 1em 1em;"><tr><td><p class="table-of-contents-heading">Contents<ol>
40
 
<li><a href="#Graphical_Clients">Graphical Clients</li>
41
 
<ol>
42
 
<li><a href="#Command_Line">Command Line</li>
43
 
<li><a href="#Repositories">Repositories</li>
44
 
</ol>
45
 
<li><a href="#Manual_Installation">Manual Installation</li>
46
 
<ol>
47
 
<li><a href="#Install/Uninstall_.deb_files">Install/Uninstall .deb files</li>
48
 
</ol>
49
 
<li><a href="#Install_from_Source">Install from Source</li>
50
 
<li><a href="#Updating">Updating</li>
51
 
<li><a href="#Back_Home">Back Home</li>
52
 
</ol>
53
 
</td></tr></table>
54
 
</table>
55
 
<p>There are several ways to manage applications in Kubuntu. A convenient way to add or remove applications is with a package manager. </p>
56
 
<h1 id=Graphical_Clients>Graphical Clients</h1>
57
 
<p>If you prefer the Ubuntu-style "Software Center", Kubuntu also has a user-friendly package manager called Muon Software Center with a clear user interface.</p>
58
 
<p>Both package managers might provide information about required dependencies. Once this information is acknowledged, the required packages will begin downloading. When the installation process is complete, the software will be ready to use. It is rarely necessary to restart the system after software installation or updates. If it is, the system will warn you and give you a restart icon to do the restart at your convenience.</p>
59
 
<p>Muon also provides an easy method to remove software that is no longer needed. </p>
60
 
<p><b>How-to</b>:Start Muon Software Center with Kickoff Application Launcher (K menu), click on 'Installed Software' and find the application you want to remove. Click 'Remove' and Muon Software Center will remove the application.</p>
61
 
<p><img src='muon-software-center.png' width='600' align='' /><br />
62
 
Muon is an advanced program with a graphical user interface (GUI) for installing and removing applications. Muon Package Manager can be started with Krunner or using Kickoff. </p>
63
 
<p><img src='muon-package-manager.png' width='600' align='' /><br />
64
 
<b>How-to</b>: You can search for applications with the search box on the top and the filters on the left side of the window. The application information will be displayed in the large white space below the search area. Click on the application title to be installed. Click the 'Install' button to start the installation process.</p>
65
 
<h2 id=Command_Line>Command Line</h2>
66
 
<p><img src='konsole.png' width='600' align='' /><br />
67
 
For managing software with the CLI (the command line) Kubuntu uses APT (Advanced Packaging Tool). It is a powerful package management system which is the basis for the graphical software management applications like Muon Software Center. APT automatically handles dependencies and performs other package operations that are required for package installation. To use APT most people use Terminals to issue the commands.</p>
68
 
<p>Running APT requires administrative privileges, Entering commands with "sudo" generates a password prompt. Several of the commands below will not run without sudo.</p>
69
 
<p>Common commands used with APT are: </p>
70
 
<ul><li>Install packages: sudo apt-get install 'packagename'
71
 
</li><li>Remove packages: sudo apt-get remove 'packagename'
72
 
</li><li>Remove package dependencies that are no longer needed: sudo apt-get autoremove 
73
 
</li><li>Search for packages: apt-cache search 'keyword'
74
 
</li><li>Retrieve the current list of available packages: sudo apt-get update
75
 
</li><li>Install the latest available updates for the applications currently installed: sudo apt-get upgrade
76
 
</li><li>Clean downloads, useful when disk space is getting short: sudo apt-get clean
77
 
</li></ul>
78
 
<p>To list further commands and options: apt-get help</p>
79
 
<p>For more information about the use of APT read the comprehensive <a href="http://wiki.debian.org/Apt">APT - Debian Wiki</a> User Manual </p>
80
 
<p>For more information on the Command Line see <a href="https://help.ubuntu.com/community/CommandlineHowto">here</a></p>
81
 
<p>CategoryDocumentation</p>
82
 
<h2 id=Repositories>Repositories</h2>
83
 
<p>Thousands of programs are freely available to install in Kubuntu. These programs are stored in software archives ("repositories") and are made available for installation over the Internet. Installing new programs in Kubuntu is quick, reliable, and secure because each program is built specifically for Kubuntu and is checked thoroughly before it is made available. Kubuntu repositories are categorized into four groups:</p>
84
 
<ul><li>Main
85
 
</li><li>Restricted
86
 
</li><li>Universe
87
 
</li><li>Multiverse
88
 
</li></ul>
89
 
<p>Two factors are used to determine categories:</p>
90
 
<ul><li>The level of support provided for a program by its software development teams.
91
 
</li><li>The level of compliance the program has to the <a href="http://www.ubuntu.com/about/about-ubuntu/our-philosophy">Ubuntu Free Software Philosophy</a>.
92
 
</li></ul>
93
 
<p>More information about the Repositories is available on the <a href="https://help.ubuntu.com/community/Repositories">Ubuntu Community Help Wiki on Repositories</a> website.</p>
94
 
<p>The standard Kubuntu LiveDVD contains some software from the "Main" and "Restricted" categories. Once a system has information about the Internet-based locations for these repositories, more programs are available for installation. Using the software package management tools installed by default, it is possible to discover, install, and update any piece of software directly over the internet without the need for the LiveDVD.</p>
95
 
<p>For more information about repositories, click  <a href="/kubuntu/KubuntuDocs/Basic/ManagingRepositories.html">here</a>.</p>
96
 
<h1 id=Manual_Installation>Manual Installation</h1>
97
 
<p>Although the preferred method of installing programs is with the package manager, individual software package files can be downloaded and installed. Several kinds of package files are available for Linux systems. Generally, these file types are associated with the package managers of specific Linux distributions.</p>
98
 
<p>To install a particular application, it is preferable to select a Kubuntu package of the application, and install it with a package manager. This ensures that the program is compatible with other software on the system. If there is no version of the package available through a package manager, it may be possible to install it manually. The installation procedure depends on the type of package file.</p>
99
 
<h2 id=Install/Uninstall_.deb_files>Install/Uninstall .deb files</h2>
100
 
<p>The package files associated with Kubuntu have the ".deb" suffix because of Kubuntu's close relationship with the Debian GNU/Linux distribution. Individual ".deb" files can be downloaded and installed. Humble Bundles, for instance, distribute debs. Administrative privileges are required.</p>
101
 
<p><b>How-to</b>: simply left-click on the ".deb" file to initiate the installation process. A prompt will appear for a password associated with the necessary administrative privilege.</p>
102
 
<h1 id=Install_from_Source>Install from Source</h1>
103
 
<p>Files with the ".tar.gz" or ".tar.bz2" suffix are package files known as "tarballs" or "source" packages. These are widely used in Linux. If there is no native Kubuntu package available in any of the repositories, it may be possible to compile and install the package from source. For tips on compiling software, look at the <a href="https://help.ubuntu.com/community/CompilingSoftware">Compiling Software</a> page on the Ubuntu Wiki.</p>
104
 
<h1 id=Updating>Updating</h1>
105
 
<p>Kubuntu developers release feature and security updates for applications and packages within the Kubuntu system. When updates become available, Kubuntu will display a message in the System Tray. To update the system, open Muon Update Manager and click the "Install updates" button. After installing some updates, it may be necessary to restart the computer. If so, Kubuntu will display a pop-up and an icon in the System Tray.</p>
106
 
<h1 id=Back_Home>Back Home</h1>
107
 
<p>Back to <a href="/kubuntu/KubuntuDocs.html">Kubuntu Docs</a>.</p>
108
 
 
109
 
 
110
 
 
111
 
<div id="pagebottom"></div>
112
 
</div>
113
 
 
114
 
 
115
 
    </div><!-- .post --> 
116
 
 
117
 
            </div><!-- #content --> 
118
 
        </div><!-- #container --> 
119
 
        <div class="clearBoth"></div> 
120
 
    </div><!-- #main --> 
121
 
</div><!-- #wrapper .hfeed --> 
122
 
    
123
 
<div id="footer"> 
124
 
    <div id="siteinfo">        
125
 
        <p> The material on this wiki is available under a free license, see 
126
 
        <a href="https://help.ubuntu.com/community/License">Copyright / License</a> for details.
127
 
        </p> 
128
 
    </div><!-- #siteinfo --> 
129
 
</div><!-- #footer --> </body>
130
 
</html>