Size: 5281
Comment: move compression and disk image management to the quick access table
|
Size: 6312
Comment: fix pt_BR label in header
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: [[ar/Software|عربي]] - [[bn/Software|বাংলা]] - [[de/Software|German]] - English - [[es/Software|Español]] - [[fr/Software|Français]] - [[he/Software|עברית (Hebrew)]] - [[id/Software|indonesia]] - [[it/Software|Italiano]] - [[ja/Software|日本語 (Nihongo)]] - [[ko/Software|한국어]] - [[ms/Software|Melayu]] - [[pl/Software|Polski]] - [[pt_BR/Software|Brasileiro]] - [[ru/Software|Русский]] - [[sv/Software|Svenska]] - [[zh_CN/Software|简体中文]]-~ | ~-[[DebianWiki/EditorGuide#translation|Translation(s)]]: [[ar/Software|عربي]] - [[bn/Software|বাংলা]] - [[de/Software|German]] - English - [[es/Software|Español]] - [[fa/Software|فارسی (Persian)]] - [[fr/Software|Français]] - [[he/Software|עברית (Hebrew)]] - [[id/Software|indonesia]] - [[it/Software|Italiano]] - [[ja/Software|日本語 (Nihongo)]] - [[ko/Software|한국어]] - [[ms/Software|Melayu]] - [[pl/Software|Polski]] - [[pt_BR/Software|Português (Brasil)]] - [[ru/Software|Русский]] - [[sv/Software|Svenska]] - [[uk/Software|Українська]] - [[zh_CN/Software|简体中文]]-~ |
Line 5: | Line 5: |
||||||<tablestyle="width: 50%; border: 1px solid #d2d3d7; background-color: #f5f6f7; line-height: 2em;">|| | ||||||<tablestyle="width: 75%; border: 1px solid #d2d3d7; background-color: #f5f6f7; line-height: 2em;">|| |
Line 11: | Line 11: |
||{{attachment:Portal/IDB/icon-printer-32x32.png}} [[Printing|Printing]]||{{attachment:Portal/IDB/icon-backup-32x32.png}} [[Compression]]|||||| | || {{attachment:Portal/IDB/icon-display-32x32.png}} [[DesktopEnvironment|Desktop Environments]]||{{attachment:Portal/IDB/icon-development-32x32.png}} [[SystemAdministration|System Administration]]||{{attachment:Portal/IDB/icon-printer-32x32.png}} [[Printing|Printing]]|| ||{{attachment:Portal/IDB/icon-backup-32x32.png}} [[Compression]]|||||| |
Line 13: | Line 14: |
Since it's all about Software, you might want to refer to these other wiki portals: * [[DesktopEnvironment]] * [[PackageManagement]] * [[SystemAdministration]] * [[Network]] * [[CommandLineInterface]] * [[ProgrammingApplication]] |
|
Line 26: | Line 18: |
The recommended way to install new software on Debian is by using packages from the official repositories. These repositories should contain most of the software you will want to install, allowing you not to rely on external sources. | The recommended way to install new software on Debian, is to use [[PackageManagement|Package Management]] tools to install packages from the official repositories. These repositories should contain most of the software you will want to install, allowing you not to rely on external sources. |
Line 28: | Line 21: |
To achieve this, Debian has several tools dedicated to [[PackageManagement|Package Management]], which allow you to manage the APT repositories (main, contrib, non-free), and to search and select software to be installed. Provided you know what you are doing, you might also get software by : * building the software from sources. * installing packages from unofficial repositories/websites. * getting binaries * deploying software with containers such as Docker * using Flatpak or other package managers such as Nix/Guix. * writing your own! ;) |
|
Line 44: | Line 27: |
* Debian Administrator's Handbook: [[https://www.debian.org/doc/manuals/debian-handbook/sect.searching-packages.en.html|Searching packages]] * Debian Administrator's Handbook: [[https://www.debian.org/doc/manuals/debian-handbook/sect.package-meta-information.en.html|Package Meta Information]] * Debian Reference Manual: [[https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_search_method_options_with_aptitude|Search method options with aptitude]] (Chapter 2. Debian package management) * Debian Reference Manual: [[https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_searching_on_the_package_meta_data|Searching on the package meta data]] (Chapter 2. Debian package management) |
'''[[https://www.debian.org/doc/manuals/debian-handbook/sect.searching-packages.en.html|Debian Administrator's Handbook: Searching packages]]'''<<BR>> '''[[https://www.debian.org/doc/manuals/debian-handbook/sect.package-meta-information.en.html|Debian Administrator's Handbook: Package Meta Information]]'''<<BR>> '''[[https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_search_method_options_with_aptitude|Debian Reference Manual - 2. Debian package management - Search method options with aptitude]]'''<<BR>> '''[[https://www.debian.org/doc/manuals/debian-reference/ch02.en.html#_searching_on_the_package_meta_data|Debian Reference Manual - 2. Debian package management - Searching on the package meta data]]'''<<BR>> |
Line 51: | Line 33: |
* Use a [[PackageManagementTools|package manager]] to browse software categories, sort them, and search through available packages. | |
Line 52: | Line 35: |
* [[https://packages.debian.org|packages.debian.org]], Debian packages themselves contain 'recommends, 'suggests' and 'extends' meta-information fields which may be starting points when looking for more features or software alternatives. Debian packages website also lists «Similar packages». * [[PackageManagement|package managers]] are sorting software according to categories. Some package managers such as [[DebPkg:gnome-software]] show featured applications and may provide different ways to sort packages. * other sources of ideas include this wiki, in particular through the Software portal, and other web pages, like blog posts from [[PlanetDebian|Planet Debian]] * some interesting packages newly added to Debian repositories are mentionned in [[https://www.debian.org/News/weekly/|Debian Weekly Newsletter]]. |
* Search and browse packages on [[https://packages.debian.org|packages.debian.org]]. Each package may have a list of "recommended", "suggested" packages which complement the main package, and a list of packages with similar functionality. The [[https://packages.debian.org/unstable/main/newpkg?format=rss|new packages RSS feed]] lists packages recently added to [[DebianUnstable|Debian Unstable]] * [[https://snapshot.debian.org/|snapshot.debian.org]] - the snapshot archive allows access to all past and current packages in the Debian archive based on dates and version numbers. |
Line 57: | Line 38: |
You can see full list of packages coming with Debian Stable [[https://packages.debian.org/stable/|here]] | == Installing software form other sources == Provided you know what you are doing, you might also get software by : * Installing packages from [[DebianRepository/UseThirdParty|unofficial/third-party repositories]] * Downloading and running ready-to-use binaries * Building the software from sources. * Deploying software in containers such as [[Docker]] * Using other package managers such as [[FlatPak]], Nix/Guix... * writing your own! ;) |
Line 61: | Line 53: |
* [[http://screenshots.debian.net/packages|Screenshots of packages]] | * [[http://screenshots.debian.net/packages]] - Screenshots of packages |
Line 63: | Line 55: |
* [[DebianSoftware|An Overview of the Software Available to Debian Stable]] * [[FlatpakHowto|How to install third party software using Flatpak]] ## * Find packages by [[http://debtags.debian.net/search/bytag|category]] |
* [[DebianSoftware]] - An Overview of the Software Available to Debian Stable * [[BTS]] - Bugs in debian software * [[FlatpakHowto]] - How to install third party software using Flatpak * [[WNPP]] - list of packages requested for packaging and/or looking for maintainers * [[WindowsEquivalent]] - Equivalents to Windows software == Other software lists == '''Generic software lists''' * [[WikiPedia:List_of_free_and_open-source_software_packages|List of free and open-source software packages - Wikipedia]] * [[WikiPedia:Portal:Free_and_open-source_software|Free and Open-Source Software portal - Wikipedia]] * [[https://wiki.archlinux.org/index.php/List_of_applications|List of applications - ArchWiki]] '''Specialized software lists''' * [[https://github.com/n1trux/awesome-sysadmin|awesome-sysadmin]] - Free Software for system administrators * [[https://github.com/Kickball/awesome-selfhosted|awesome-selfhosted]] - Free Software network services and web applications * [[https://libreprojects.net/|Libre Projects]] - Free and Open Source web services '''Software [[WikiPedia:Forge (software)|forges]]''' * [[https://github.com/explore]] * [[https://gitlab.com/explore]] * [[https://launchpad.net/]] * [[https://sourceforge.net/]] == Wiki pages == '''List of pages related to software in Debian:''' <<FullSearchCached(language:en category:CategorySoftware)>> |
Line 68: | Line 90: |
CategoryPortal | CategorySoftware | CategoryPortal | CategorySoftware | CategoryPackageManagement |
Translation(s): عربي - বাংলা - German - English - Español - فارسی (Persian) - Français - עברית (Hebrew) - indonesia - Italiano - 日本語 (Nihongo) - 한국어 - Melayu - Polski - Português (Brasil) - Русский - Svenska - Українська - 简体中文
Quick access |
||
|
||
|
Installing software
The recommended way to install new software on Debian, is to use Package Management tools to install packages from the official repositories. These repositories should contain most of the software you will want to install, allowing you not to rely on external sources.
Finding Software
There are several ways to learn what software included in Debian can cover your specific needs.
Debian Administrator's Handbook: Searching packages
Debian Administrator's Handbook: Package Meta Information
Debian Reference Manual - 2. Debian package management - Search method options with aptitude
Debian Reference Manual - 2. Debian package management - Searching on the package meta data
Use a package manager to browse software categories, sort them, and search through available packages.
Debtags web search provides means to search software according to their various facets (see Help page).
Search and browse packages on packages.debian.org. Each package may have a list of "recommended", "suggested" packages which complement the main package, and a list of packages with similar functionality. The new packages RSS feed lists packages recently added to Debian Unstable
snapshot.debian.org - the snapshot archive allows access to all past and current packages in the Debian archive based on dates and version numbers.
Installing software form other sources
Provided you know what you are doing, you might also get software by :
Installing packages from unofficial/third-party repositories
- Downloading and running ready-to-use binaries
- Building the software from sources.
Deploying software in containers such as Docker
Using other package managers such as FlatPak, Nix/Guix...
writing your own!
See also
http://screenshots.debian.net/packages - Screenshots of packages
WhyTheName, because we all wonder where does software names come from
DebianSoftware - An Overview of the Software Available to Debian Stable
BTS - Bugs in debian software
FlatpakHowto - How to install third party software using Flatpak
WNPP - list of packages requested for packaging and/or looking for maintainers
WindowsEquivalent - Equivalents to Windows software
Other software lists
Generic software lists
Specialized software lists
awesome-sysadmin - Free Software for system administrators
awesome-selfhosted - Free Software network services and web applications
Libre Projects - Free and Open Source web services
Software forges
Wiki pages
List of pages related to software in Debian:
- Amarok
- Ampache
- Apache
- AppArmor
- AptCLI
- AptCacherNg
- AptConfiguration
- AptProtocol
- Aptitude
- Ardour
- AutoConf
- AutoMake
- AutomaticPackagingTools
- BackupAndRecovery
- Bash
- BashColors
- Bind9
- BitTorrent
- BrowserApps
- BurnCd
- CDDVDTools
- CategoryDesktopApplication
- CheckInstall
- ChineseInputMethod
- Chromium
- Clementine
- CoinOr
- Compiz
- Compression
- Console
- ConvertCVStosvn
- Cordova
- Cupt
- D
- DDNS
- DHCP_Server
- DatabaseServers
- DebianAlternatives
- DebianDesktop
- DebianEdu/HowTo/BackupPC
- DebianGNUstep
- DebianInstaller
- DebianKVMGuests
- DebianNPDatabases
- DebianPackageManagement
- DebianSpamAssassin
- DebianTcl
- DefaultWebBrowser
- DiskImage
- DisplayManager
- Distcc
- Docker
- Dovecot
- Duplicity
- DvdRwTools
- EduKstars
- EduSoundtracker
- EduXtide
- Edutainment
- Emulator
- EtchApache2DefineSSL
- Evolution
- Exim4ATTUverse
- Exim4Gmail
- EximSendThroughSSH
- FAI
- FTP
- FakeRoot
- Falkon
- FastTrack
- FileManager
- Firefox
- Flatpak
- FluxBox
- FreedomBox
- GIMP
- GNOME-DB
- GNU
- GTK
- Game
- Gnome
- Groupware
- HostingControlPanels
- HowtoRecordVNC
- I18n/Fcitx5
- I18n/LanguagePacks
- Icedove
- ImapProxy
- InstantMessaging
- IrcClients
- JACK
- Java/OmegaT
- KDE
- KVM
- Kodi
- Konqueror
- LDAP
- LDAP/AutoFSSetup
- LDAP/ExampleEntries
- LDAP/Kerberos
- LDAP/LDAPUtils
- LDAP/MigrationTools
- LDAP/OpenLDAPSetup
- LDAP/PAM
- LDAP/PowerDNSSetup
- LDAP/phpldapadmin
- LTSP/Epoptes
- LXC
- LaMp
- LetsEncrypt
- Lguest
- LibreOffice
- LightDM
- Lighttpd
- Lustre
- Lynx
- MATE
- MDA
- MPlayer
- MUA
- MailApps
- Make
- Mame
- ManipulatingISOs
- Manual-Howto
- Mariadb
- Matrix
- Mozilla
- Multimedia
- MultimediaCodecs
- MultimediaFetchingTools
- Mupen64Plus
- MySql
- NFS
- NFSServerSetup
- NFSTroubleshooting
- NTP
- Nautilus
- NetworkApplication
- NetworkManager
- NetworkMonitoring
- NewsAggregator
- OSM/tileserver
- OSS
- OfficeApplication
- OpenPGP
- OpenStack
- OpenVz
- Openbox
- Opera
- PackageManagement
- PackageManagementTools
- Pan
- Parted
- Peer2Peer
- PentiumBuilder
- Picard
- PipeWire
- PkgNagios
- Po4a
- Podman
- PostfixAndSASL
- PostgreSql
- ProgrammingApplication
- Prosody
- PulseAudio
- Python
- QEMU
- Rdesktop
- Redmine
- RemoteDesktop
- RemoteFiles
- Rhythmbox
- Ripping
- Rsyslog
- Rust
- SSH
- SVNAdministrationTutorial
- SVNTutorial
- Samba
- Samba/BuildingALinuxDomain
- Samba/ClientSetup
- Samba/DcWithLdapBackend
- Samba/Dirvish
- Samba/DomainController
- Samba/FreeRadiusToLdap
- Samba/LinuxDomainClients
- Samba/ServerSimple
- Samba/WindowsPginaClient
- Sandbox
- Schroot
- Screensaver
- Seahorse
- Seamonkey
- SecuringNFS
- SecurityApplication
- Shell
- ShellConfiguration
- ShellToolTricks
- Software
- Subtitle
- Subversion
- Sympa
- Synaptic
- SystemBuildTools
- SystemVirtualization
- TFTP
- TerminalEmulator
- TextEditor
- ThomasChung/CloudImage
- ThomasChung/WebConsole
- Thunderbird
- TorBrowser
- Transmission
- Unison
- UseNet
- UsenetApps
- UserModeLinux
- VDR
- VLC
- VMBuilder
- VMware
- VNCviewer
- VersionControlSystem
- VirtualBox
- WNPP
- WebBrowsers
- WebServers
- WhyTheName
- WindowManager
- WindowsEquivalent
- WindowsServerHyperV
- Wine
- WordPress
- XCP
- XMPP
- Xfce
- ZNC
- Zope
- bn/ProgrammingApplication
- bn/Software
- cdrecord
- coreutils
- dansguardian
- de/PDF
- dnsmasq
- dpkg
- dselect
- ekiga
- euca2ools
- fr/Apache
- fr/GIMP
- freedict
- git
- gmdb2
- gmusicbrowser
- gnome-chinese-input
- hu/FreedomBox
- irssi
- it/GIMP
- it/HowToReconfigureCryptSetup
- it/Picard
- libvirt
- light-locker
- minidlna
- mpd
- ms/ProgrammingApplication
- ms/Software
- msmtp
- netconf
- nginx/FastCGI
- nspawn
- nullmailer
- opendkim
- po
- reportbug
- sSMTP
- screen
- ungoogled-chromium
- vim
- w3m
- zh_CN/ChineseInputMethod
- zh_CN/Chromium
- zh_CN/Game
- zh_CN/I18n/Fcitx5
- zh_CN/KDE
- zh_CN/Multimedia
- zh_CN/NetworkApplication
- zh_CN/OfficeApplication
- zh_CN/Opera
- zh_CN/PipeWire
- zh_CN/ProgrammingApplication
- zh_CN/Software
- zh_CN/TextEditor
CategoryPortal | CategorySoftware | CategoryPackageManagement