Epstein Files Full PDF

CLICK HERE
Technopedia Center
PMB University Brochure
Faculty of Engineering and Computer Science
S1 Informatics S1 Information Systems S1 Information Technology S1 Computer Engineering S1 Electrical Engineering S1 Civil Engineering

faculty of Economics and Business
S1 Management S1 Accountancy

Faculty of Letters and Educational Sciences
S1 English literature S1 English language education S1 Mathematics education S1 Sports Education
teknopedia

  • Registerasi
  • Brosur UTI
  • Kip Scholarship Information
  • Performance
Flag Counter
  1. World Encyclopedia
  2. APT (software) - Wikipedia
APT (software) - Wikipedia
From Wikipedia, the free encyclopedia
Free software package management system
For other uses, see APT (disambiguation) § Computing and software.
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
This article may be too technical for most readers to understand. Please help improve it to make it understandable to non-experts, without removing the technical details. (December 2024) (Learn how and when to remove this message)
This article contains an excessive amount of intricate detail. Please help improve it by spinning off or relocating relevant information and removing excessive detail that goes against Wikipedia's inclusion policy. (December 2024) (Learn how and when to remove this message)
(Learn how and when to remove this message)
Advanced Package Tool
apt requesting confirmation before an installation
DeveloperThe Debian Project
Initial release31 March 1998; 27 years ago (1998-03-31)[1]
Stable release
3.1.12[2] Edit this on Wikidata / 10 November 2025; 3 months ago (10 November 2025)
Written inC++,[3] shell script,[3] XML,[3] CMake,[3] C,[3] Perl[3] Edit this on Wikidata
Operating systemUnix-like
TypePackage manager
LicenseGPLv2+
Websitewiki.debian.org/AptCLI
Repository
  • salsa.debian.org/apt-team/apt.git Edit this at Wikidata

Advanced Package Tool (APT) is a free-software user interface that works with core libraries to handle the installation and removal of software on Debian and Debian-based Linux distributions.[4] APT simplifies the process of managing software on Unix-like computer systems by automating the retrieval, configuration and installation of software packages, either from precompiled files or by compiling source code.[4]

Usage

[edit]

APT is a collection of tools distributed in a package named apt. A significant part of APT is defined in a C++ library of functions; APT also includes command-line programs for dealing with packages, which use the library. Three such programs are apt, apt-get and apt-cache. They are commonly used in examples because they are simple and ubiquitous. The apt package is of "important" priority in all current Debian releases, and is therefore included in a default Debian installation. APT can be considered a front end to dpkg, friendlier than the older dselect front end. While dpkg performs actions on individual packages, APT manages relations (especially dependencies) between them, as well as sourcing and management of higher-level versioning decisions such as release tracking and Upgrade Suppression.

APT is often hailed as one of Debian's best features,[by whom?][5][6][7][8] which Debian developers attribute to the strict quality controls in Debian's policy.[9][10]

A major feature of APT is the way it calls dpkg — it does topological sorting of the list of packages to be installed or removed and calls dpkg in the best possible sequence. In some cases, it utilizes the --force options of dpkg. However, it only does this when it is unable to calculate how to avoid the reason dpkg requires the action to be forced.

Installing software

[edit]

The user indicates one or more packages to be installed. Each package name is phrased as just the name portion of the package, not a fully qualified filename (for instance, in a Debian system, libc6 would be the argument provided, not libc6_1.9.6-2.deb). Notably, APT automatically gets and installs packages upon which the indicated package depends (if necessary). This was an original distinguishing characteristic of APT-based package management systems, as it avoided installation failure due to missing dependencies, a type of dependency hell.

Another distinction is the retrieval of packages from remote repositories. APT uses a location configuration file (/etc/apt/sources.list) to locate the desired packages, which might be available on the network or a removable storage medium, for example, and retrieve them, and also obtain information about available (but not installed) packages.

APT provides other command options to override decisions made by apt-get's conflict resolution system. One option is to force a particular version of a package. This can downgrade a package and render dependent software inoperable, so the user must be careful.

Finally, the apt_preferences mechanism allows the user to create an alternative installation policy for individual packages.

The user can specify packages using a POSIX regular expression.

APT searches its cached list of packages and lists the dependencies that must be installed or updated.

APT retrieves, configures and installs the dependencies automatically.

Triggers are the treatment of deferred actions.

Update, upgrade and dist-upgrade

[edit]

Usage modes of apt and apt-get that facilitate updating installed packages include:

  • update is used to resynchronize the package index files from their sources. The lists of available packages are fetched from the location(s) specified in /etc/apt/sources.list. For example, when using a Debian archive, this command retrieves and scans the Packages.gz files, so that information about new and updated packages is available.
  • upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list. Packages currently installed with new versions available are retrieved and upgraded; under no circumstances are currently installed packages removed, or packages not already installed retrieved and installed. New versions of currently installed packages that cannot be upgraded without changing the install status of another package will be left at their current version.
  • full-upgrade (apt) and dist-upgrade (apt-get), in addition to performing the function of upgrade, also intelligently handles changing dependencies with new versions of packages; apt and apt-get have a "smart" conflict resolution system, and will attempt to upgrade the most important packages at the expense of less important ones if necessary. The /etc/apt/sources.list file contains a list of locations from which to retrieve desired package files.[4] aptitude has a smarter dist-upgrade feature called full-upgrade.[11]

Configuration and files

[edit]

/etc/apt contains the APT configuration folders and files.

apt-config is the APT Configuration Query program.[12] apt-config dump shows the configuration.[13]

Files

[edit]
  • /etc/apt/sources.list:[14] Locations to fetch packages from.
  • /etc/apt/sources.list.d/: Additional source list fragments.
  • /etc/apt/apt.conf: APT configuration file.
  • /etc/apt/apt.conf.d/: APT configuration file fragments.
  • /etc/apt/preferences.d/: Directory with version preferences files. This is where "pinning" is specified, i.e. a preference to get certain packages from a separate source or from a different version of a distribution.
  • /var/cache/apt/archives/: Storage area for retrieved package files.
  • /var/cache/apt/archives/partial/: Storage area for package files in transit.
  • /var/lib/apt/lists/: Storage area for state information for each package resource specified in sources.list
  • /var/lib/apt/lists/partial/: Storage area for state information in transit.

Sources

[edit]

APT relies on the concept of repositories in order to find software and resolve dependencies. For APT, a repository is a directory containing packages along with an index file. This can be specified as a networked or CD-ROM location. As of 14 August 2021,[update] the Debian project keeps a central repository of over 50,000 software packages ready for download and installation.[15]

Any number of additional repositories can be added to APT's sources.list configuration file (/etc/apt/sources.list)[example needed] and then be queried by APT. Graphical front ends often allow modifying sources.list more simply (apt-setup). Once a package repository has been specified (like during the system installation), packages in that repository can be installed without specifying a source and will be kept up-to-date automatically.

In addition to network repositories, compact discs and other storage media (USB keydrive, hard disks...) can be used as well, using apt-cdrom[16] or adding file:/ URI[17] to the source list file. apt-cdrom can specify a folder other than a CD-ROM, using the -d option (i.e. a hard disk or a USB keydrive). The Debian CDs available for download contain Debian repositories. This allows non-networked machines to be upgraded. One can also use apt-zip.

Problems may appear when several sources offer the same package(s). Systems that have such possibly conflicting sources can use APT pinning to control which sources should be preferred.

APT pinning

[edit]

The APT pinning feature allows users to force APT to choose particular versions of packages which may be available in different versions from different repositories. This allows administrators to ensure that packages are not upgraded to versions which may conflict with other packages on the system, or that have not been sufficiently tested for unwelcome changes.

In order to do this, the pins in APT's preferences file (/etc/apt/preferences) must be modified,[18] although graphical front ends often make pinning simpler.

Front ends

[edit]
Synaptic Package Manager is one of the front ends available for APT.

Several other front ends to APT exist, which provide more advanced installation functions and more intuitive interfaces. These include:

  • Synaptic, a GTK graphical user interface
  • Ubuntu Software Center, a GTK graphical user interface developed by the Ubuntu project
  • aptitude, a console client with CLI and ncurses-based TUI interfaces
  • Adept package manager, a graphical user interface for KDE (deb, rpm, bsd)
  • PackageKit, a D-Bus frontend, maintained by freedesktop.org, powers GNOME Software and KDE Discover.
  • GDebi, a GTK-based tool sponsored for Ubuntu. (There is also a Qt version, available in the Ubuntu repositories as gdebi-kde.)
  • apt-cdrom, a way to add a new CDROM to APT's list of available repositories (sources.lists). It is necessary to use apt-cdrom to add CDs to the APT system, it cannot be done by hand.
  • apt-zip, a way to use apt with removable media, specifically USB flash drives.
  • aptURL, an Ubuntu software package that enables end-user applications to install with a single-click through a browser.[19][20]
  • Cydia, a package manager for jailbroken iOS based on APT (ported to iOS as part of the Telesphoreo project).[21][22]
  • Sileo, like Cydia, a package manager for jailbroken iOS based on newer versions of APT (ported to iOS by the Electra team)
  • gnome-apt, a GTK/GNOME-widget-based graphical front end. Developed by Havoc Pennington[23]
  • Muon discover (previous Muon software center), a Qt-based graphical user interface
  • Hildon application manager (Maemo application), a Maemo front end
  • apticron, a service designed to be run via cron to email notices of pending updates to a system administrator (sysadmin).
  • APT Daemon, a front end that runs as a service to allow users to install software through PolicyKit and is in turn the framework used by Ubuntu software center (along with the Linux Mint software manager).
  • Package installer, part of MX Linux.
  • Apt-offline: A convenient way to make any available non-containerized change to any Debian-type Linux installation without using a direct Internet connection. However, a temporary direct connection can be required, such as to install Apt-offline on some of the relevant types of Linux, and to add PPA's to the sources-list.

APT front ends can:

  • search for new packages;
  • upgrade packages;
  • install or remove packages and
  • upgrade the whole system to a new release.

APT front ends can list the dependencies of packages being installed or upgraded, ask the administrator if packages recommended or suggested by newly installed packages should be installed too, automatically install dependencies and perform other operations on the system such as removing obsolete files and packages.

History

[edit]

The original effort that led to the apt-get program was the dselect replacement project known by its codename Deity.[24] This project was commissioned in 1997 by Brian White, the Debian release manager at the time. The first functional version of apt-get was called dpkg-get and was only intended to be a test program for the core library functions that would underpin the new user interface (UI).[25]

Much of the original development of APT was done on Internet relay chat (IRC), so records have been lost. The 'Deity creation team' mailing list archives include only the major highlights.

The 'Deity' name was abandoned as the official name for the project due to concerns over the religious nature of the name. The APT name was eventually decided after considerable internal and public discussion. Ultimately the name was proposed on IRC, accepted and then finalized on the mailing lists.[26]

APT was introduced in 1998 and original test builds were circulated on IRC. The first Debian version that included it was Debian 2.1, released on 9 March 1999.[27]

In the end the original goal of the Deity project of replacing the dselect user interface was a failure. Work on the user interface portion of the project was abandoned (the user interface directories were removed from the concurrent versions system) after the first public release of apt-get. The response to APT as a dselect method and a command line utility was so great and positive that all development efforts focused on maintaining and improving the tool. It was not until much later that several independent people built user interfaces on top of libapt-pkg.

Eventually, a new team picked up the project, began to build new features and released version 0.6 of APT which introduced the Secure APT feature, using strong cryptographic signing to authenticate the package repositories.[28]

Variants

[edit]

APT was originally designed as a front end for dpkg to work with Debian's .deb packages. A version of APT modified to also work with the RPM Package Manager system was released as APT-RPM.[29] The Fink project has ported APT to Mac OS X for some of its own package management tasks,[30] and APT is also available in OpenSolaris.

apt-file

[edit]

apt-file is a command, packaged separately from APT, to find which package includes a specific file, or to list all files included in a package on remote repositories.[31]

See also

[edit]
  • Free and open-source software portal
  • Alien
  • AppStream
  • GNU Guix
  • Wajig
  • List of software package management systems

References

[edit]
  1. ^ "Initial release". apt package changelog. The Debian project. 31 March 1998. Retrieved 18 December 2021.
  2. ^ "3.1.12". 10 November 2025. Retrieved 11 November 2025.
  3. ^ a b c d e f "The apt - Advanced Package Tool Open Source Project on Open Hub: Languages Page". Open Hub. Retrieved 2 May 2024.
  4. ^ a b c "apt-get(8)". Debian Manpages. Retrieved 18 December 2021.
  5. ^ Byfield, Bruce (9 December 2004). "An apt-get primer". Retrieved 18 December 2021.
  6. ^ "From the archives: the best distros of 2000". Tux radar. Archived from the original on 26 July 2020.
  7. ^ Dorgan, David (19 January 2004). "Migrating to Debian". linux.ie. Archived from the original on 13 May 2006.
  8. ^ "Mobile Linux development with Familiar and a minimal Debian". Mobile Tux. Archived from the original on 15 September 2008.
  9. ^ "Why Debian". Retrieved 18 December 2021.
  10. ^ "Debian policy manual". Retrieved 18 December 2021.
  11. ^ "Discussion on dist-upgrade vs. full-upgrade". Retrieved 18 December 2021.
  12. ^ "apt-config(8)". Debian Manpages. Retrieved 18 December 2021.
  13. ^ "Query APT configuration using apt-config - Debian admin". 2 December 2006. Retrieved 18 December 2021.
  14. ^ "SourcesList". Debian Wiki. Retrieved 18 December 2021.
  15. ^ "Debian 11 "bullseye" released". www.debian.org. Archived from the original on 2021-08-14. Retrieved 2022-05-11.
  16. ^ "apt-cdrom(8)". Debian Manpages. Retrieved 27 December 2021.
  17. ^ e.g. deb file:/mnt/install stable main contrib non-free.
  18. ^ "AptConfiguration". Debian Wiki. Retrieved 2020-05-18.
  19. ^ "AptURL". Ubuntu Wiki. Retrieved 27 December 2021.
  20. ^ "How to install software in Ubuntu Linux: A complete guide for newbie". 17 June 2018. Retrieved 27 December 2021.
  21. ^ Jurick, David (2009). iPhone hacks: Pushing the iPhone and iPod touch beyond their limits. O'Reilly Media, Inc. p. 20. ISBN 9780596516642. Retrieved 27 December 2021.
  22. ^ Adhikari, Richard (20 March 2008). "Android, Schmandroid: Linux on the iPhone". LinuxInsider. Retrieved 27 December 2021.
  23. ^ Mullikin, Glenn (December 2001). "The evolution of Debian package management systems". AUUGN. Vol. 22, no. 4. p. 50. ISSN 1035-7521. gnome-apt was written by Havoc Pennington
  24. ^ White, Brian C. (11 April 1997). ""dselect" replacement project ("deity")". deity@lists.debian.org (Mailing list).
  25. ^ Gunthorpe, Jason (2 March 1998). "It's working". deity@lists.debian.org (Mailing list).
  26. ^ Gunthorpe, Jason (19 March 1998). "Re: 2 things (!)". deity@lists.debian.org (Mailing list).
  27. ^ "A brief history of Debian". debian.org. Archived from the original on 24 August 2003.
  28. ^ "Secure APT". Debian Wiki. Retrieved 27 December 2021.
  29. ^ "APT-RPM". apt-rpm.org. Archived from the original on 21 April 2008. Retrieved 27 December 2021.
  30. ^ "Fink - About". www.finkproject.org. Archived from the original on 11 May 2008. Retrieved 27 December 2021.
  31. ^ "Inspecting and extracting Debian package contents". Packagecloud blog. 13 October 2015. Retrieved 27 December 2021.

External links

[edit]
Wikidata has the properties:
  • Ubuntu package (P3473) (see uses)
  • Debian stable package (P3442) (see uses)
  • apt(8) – Debian maintenance commands Manual
  • APT HOWTO Archived 2021-03-09 at the Wayback Machine
  • Apt Tutorial Archived 2021-04-23 at the Wayback Machine
  • Chapter 2. Debian package management - Debian Reference
  • v
  • t
  • e
Debian
Software in the Public Interest
General
  • DebConf
  • Debian Free Software Guidelines
  • Debian Social Contract
  • Project leaders
  • Releases
Debian OpenLogo
People
  • Bdale Garbee
  • Benjamin Mako Hill
  • Sam Hocevar
  • Ian Jackson
  • Martin Michlmayr
  • Ian Murdock
  • Jonathan Oxer
  • Bruce Perens
  • Scott James Remnant
  • Stefano Zacchiroli
Derivatives
Kernels
  • Debian GNU/Hurd
  • Debian GNU/kFreeBSD
  • Debian Pure Blend
Forks
  • Devuan
  • Ubuntu
    • derivatives
  • TrueNAS
Software
  • APT
  • aptitude
  • Debbugs
  • debconf
  • Debian-Installer
  • dpkg (deb)
  • win32-loader
Others
Debian–Mozilla trademark dispute
  • icon Linux portal
  • Free and open-source software portal
  • Category
  • Commons
  • Wikiversity
  • v
  • t
  • e
Package managers (format)
Compiled
Gaming console
  • DSi Shop
  • Nintendo eShop
  • PlayStation Store
  • Wii Shop Channel
  • Xbox Games Store
Unix-like,
Linux
dpkg
  • APT
  • aptitude
  • dselect
  • Synaptic
  • Ubuntu Software Center
Purely functional
  • Nix
  • Guix
RPM
  • YUM
  • DNF
  • APT-RPM
  • up2date
  • urpmi
  • ZYpp
tarball
  • slapt-get
  • slackpkg
  • netpkg
  • swaret
Other
  • AppImage
  • Autopackage
  • Flatpak
  • Homebrew
  • Horizon Store
  • PackageKit
  • pacman
  • PBI
  • PETget
  • PISI
  • Portage
  • Snap
  • Upkg
  • pkgsrc
  • Helm
macOS
  • Mac App Store
  • Homebrew
  • pkgsrc
  • Munki
z/OS
  • SMP/E
Mobile
operating
systems
  • Amazon Appstore
  • App Store
  • Aptoide
  • Cafe Bazaar
  • Cydia
  • F-Droid
  • GetJar
  • Google Play
  • Huawei AppGallery
  • Microsoft Store
  • RPM
  • SlideME
  • Windows Phone Store
Multi-platform
  • OpenPKG
  • pkgsrc
Solaris, illumos
  • IPS
  • OpenCSW
  • pkgsrc
Web browsers
  • Chrome Web Store
  • Mozilla Add-ons
Windows
  • Allmyapps
  • Cygwin
  • Microsoft Store
  • Npackd
  • NSIS
  • NuGet
  • Chocolatey
  • ProGet
  • Scoop
  • Windows Package Manager
  • wpkg
Uncompiled
BSD
  • ports collection
  • FreeBSD Ports
  • pkgsrc
C++
  • Gradle
  • vcpkg
Java
  • Maven
  • Ivy
  • Gradle
JavaScript
  • npm
Kubernetes
  • Helm
Linux
  • ABS
  • apt-build
  • Compile
  • Portage
  • Sorcery
  • BitBake
  • pkgsrc
macOS
  • Fink
  • MacPorts
  • pkgsrc
.NET
  • NuGet
Perl
  • CPAN
PHP
  • PEAR
  • Composer
Python
  • PyPI
  • pip
  • Anaconda
  • Enthought Canopy
Ruby
  • RubyGems
Rust
  • Cargo
Scala
  • sbt
  • List
  • Commons
  • Category
Retrieved from "https://teknopedia.ac.id/w/index.php?title=APT_(software)&oldid=1338106658"
Categories:
  • Command-line software
  • Cross-platform free software
  • Debian
  • Dpkg
  • Free package management systems
  • Free software programmed in C++
  • Linux package management-related software
  • Software update managers
  • Software using the GNU General Public License
  • Ubuntu
Hidden categories:
  • Articles with short description
  • Short description matches Wikidata
  • Wikipedia articles that are too technical from December 2024
  • All articles that are too technical
  • Wikipedia articles that are excessively detailed from December 2024
  • All articles that are excessively detailed
  • Wikipedia articles with style issues from December 2024
  • All articles with style issues
  • Articles with multiple maintenance issues
  • Articles with specifically marked weasel-worded phrases from December 2024
  • Articles containing potentially dated statements from August 2021
  • All articles containing potentially dated statements
  • All articles needing examples
  • Articles needing examples from February 2026
  • Webarchive template wayback links

  • indonesia
  • Polski
  • العربية
  • Deutsch
  • English
  • Español
  • Français
  • Italiano
  • مصرى
  • Nederlands
  • 日本語
  • Português
  • Sinugboanong Binisaya
  • Svenska
  • Українська
  • Tiếng Việt
  • Winaray
  • 中文
  • Русский
Sunting pranala
url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url
Pusat Layanan

UNIVERSITAS TEKNOKRAT INDONESIA | ASEAN's Best Private University
Jl. ZA. Pagar Alam No.9 -11, Labuhan Ratu, Kec. Kedaton, Kota Bandar Lampung, Lampung 35132
Phone: (0721) 702022
Email: pmb@teknokrat.ac.id