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. Fuchsia (operating system) - Wikipedia
Fuchsia (operating system) - Wikipedia
From Wikipedia, the free encyclopedia
Operating system by Google

Operating system
Fuchsia
The Fuchsia GUI
DeveloperGoogle
Written inRust, C++, C, Dart, Go, Python, assembly language[2][3]
OS familyCapability-based[1]
Working stateCurrent
Source modelOpen source
Initial releaseMay 25, 2021; 4 years ago (2021-05-25)
Latest releaseF29[4] Edit this on Wikidata / 7 January 2026
Repository
  • fuchsia.googlesource.com
  • cs.opensource.google/fuchsia
Available inEnglish
Supported platformsARM64, x86-64
Kernel typeMicrokernel
Influenced byPink, Android, Unix kernel (but not Unix-like), iOS
Default
user interface
Ermine
LicenseBSD, MIT, Apache License 2.0
Official websitefuchsia.dev Edit this at Wikidata
Articles in the series
Taligent

Fuchsia is an open-source capability-based operating system developed by Google. In contrast to Google's Linux-based operating systems such as ChromeOS and Android, Fuchsia is based on a custom kernel named Zircon. It publicly debuted as a Google-hosted git repository in August 2016[5] without any official corporate announcement. After years of development, its official product launch was in 2021 on the first-generation Google Nest Hub, replacing its original Linux-based Cast OS.

Etymology

[edit]

Fuchsia is named for the color fuchsia, which is a combination of pink and purple.[6][7] The name is a reference to two operating systems projects within Apple which influenced team members of the Fuchsia project: Taligent (codenamed "Pink") and iOS (codenamed "Purple").[8] The color-based naming scheme derives from the colors of index cards which Apple employees used to organize their ideas.[9]

History

[edit]

In August 2016, media outlets reported on a mysterious source code repository published on GitHub, revealing that Google was developing a new operating system named Fuchsia. No official announcement was made, but inspection [by whom?] of the code suggested its capability to run on various devices, including "dash infotainment" systems for cars, embedded devices like traffic lights, digital watches, smartphones, tablets, and PCs. Its architecture differs entirely from the Linux-based Android and ChromeOS due in part to its unique Zircon kernel, formerly named Magenta.[10][11][12][13][14][15]

In May 2017, Ars Technica wrote about Fuchsia's new user interface, an upgrade from its command-line interface at its first reveal in August. A developer wrote that Fuchsia "isn't a toy thing, it's not a 20% Project, it's not a dumping ground of a dead thing that we don't care about anymore". Though users could test Fuchsia, nothing "works", because "it's all a bunch of placeholder interfaces that don't do anything". They found multiple similarities between Fuchsia's interface and Android, including a Recent Apps screen, a Settings menu, and a split-screen view for viewing multiple apps at once.[16][17] Multiple media outlets wrote about the project's seemingly close ties to Android, with some speculating that Fuchsia might be an effort to "re-do"[18] or replace Android[19][20][21] in a way that fixes its problems.[16]

In January 2018, Google published a guide on how to run Fuchsia on Pixelbooks.[22][23] This was implemented successfully by Ars Technica, where experts were impressed with the progress, noting that things were then working, and were especially pleased by the hardware support and multiple mouse pointers.[24]

A Fuchsia device was added to the Android ecosystem in January 2019 via the Android Open Source Project (AOSP).[25][26] Google talked about Fuchsia at Google I/O 2019.[27] Hiroshi Lockheimer, Senior Vice President of Chrome and Android, described it as one of Google's experiments around new operating system concepts.[28]

On July 1, 2019, Google announced the official website of the development project with source code and documentation.[17] Roughly a year and a half later, on December 8, 2020, Google announced that it was "expanding Fuchsia's open-source model"[29] including making mailing lists public, introducing a governance model, publishing a roadmap, and using a public issue tracker.

In May 2021, Google employees confirmed that Fuchsia had been deployed in the consumer market for the first time, within a software update to the first-generation Google Nest Hub that replaces its existing Chromecast-based software. The update contains no user-facing changes to the device's software or user interface.[30][31] After the initial wave of updates to preview devices, the update was rolled out to all Nest Hub devices in August 2021.[32] Around February 21, 2022, the Chrome browser was fully working on Fuchsia.[33]

In January 2023, Google announced layoffs across the company with 16% of Fuchsia employees being impacted.[34] In May 2023, Google began rolling out a Fuchsia-based update to the second-generation Google Nest Hub.[35]

Overview

[edit]

UI and mobile apps

[edit]

Fuchsia's user interface and apps are written in Flutter, a software development kit allowing cross-platform development abilities for Fuchsia, Android, and iOS. Flutter produces apps from Dart. Escher is the Vulkan-based graphics rendering engine, with specific support for "volumetric soft shadows", an element that Ars Technica wrote, "seems custom-built to run Google's shadow-heavy 'Material Design' interface guidelines".[36] The Flutter cross-platform software development kit allows users to install parts of Fuchsia on Android devices.

A special version of Android Runtime for Fuchsia is planned to run from a FAR file, the equivalent of the Android APK.[37]

Kernel

[edit]

LK was born out of @tkgeisel getting sick of writing the same mini-OS for bootloaders or test firmware again and again so he took some time off between jobs and did an open source version of the concept. It now lives in billions of bootloaders and other crazy places.

— Brian Swetland, one of the early Android OS engineers.[38]

Fuchsia is based on a new object-capability kernel, named Zircon after the mineral. Its codebase was derived from that of Little Kernel (LK) for embedded devices, aimed for low-resource uses on a wide variety of devices.[39] LK was developed by Travis Geiselbrecht, who had also co-authored the NewOS kernel used by Haiku, a free software reimplementation of BeOS.

Zircon is written mostly in C++, with some parts in C and assembly language.[3] It is composed of a kernel with a small set of user services, drivers, and libraries which are all necessary for the system to boot, communicate with the hardware, and load the user processes.[40] Its present features include handling threads, virtual memory, inter-process communication, and waiting for changes in the state of objects.[41]

It is heavily inspired by Unix kernels,[42] but differs greatly. For example, it does not support Unix-like signals, but incorporates event-driven programming and the observer pattern. Most system calls do not block the main thread. Resources are represented as objects rather than files, unlike traditional Unix systems in which everything is a file.

References

[edit]
  1. ^ "Language usage in Fuchsia". Noober Info. June 15, 2021. Archived from the original on August 24, 2022. Retrieved August 24, 2022.
  2. ^ "Google Fuchsia OS: The next big thing on the internet – Next-Gen OS". Fuchsia.
  3. ^ a b "C++ in Zircon". Fuchsia. Retrieved February 7, 2023.
  4. ^ "Fuchsia F29 release notes (English)".
  5. ^ "fuchsia Git repositories - Git at Google". fuchsia.googlesource.com. Archived from the original on August 12, 2016.
  6. ^ "Fuchsia". GitHub.
  7. ^ Matte, Daniel (April 10, 2017). "Open-Source Clues to Google's Mysterious Fuchsia OS". IEEE Spectrum. Institute of Electrical and Electronics Engineers (IEEE). Retrieved March 4, 2019.
  8. ^ McKillop, Christopher [@chrismckillop] (May 25, 2021). "Pink was an OS project started by Apple in 1988 (became Tailgent). Purple was the codename of the original iPhone OS. [...]" (Tweet). Archived from the original on April 8, 2022. Retrieved August 16, 2023 – via Twitter.
  9. ^ Hormby, Tom (April 27, 2014). "Pink: Apple's First Stab at a Modern Operating System". Low End Mac. Archived from the original on March 21, 2023. Retrieved August 16, 2023.
  10. ^ McGrath, Roland (September 12, 2017). "[zx] Magenta -> Zircon". zircon - Git at Google. Archived from the original on July 11, 2018. Retrieved September 19, 2017.
  11. ^ Etherington, Darrell (August 15, 2016). "Google's mysterious new Fuchsia operating system could run on almost anything". TechCrunch. AOL. Retrieved October 5, 2016.
  12. ^ Fingas, Jon (August 13, 2016). "Google's Fuchsia operating system runs on virtually anything". Engadget. AOL. Retrieved October 5, 2016.
  13. ^ Szász, Attila; Hosszú, Gergő (November 8, 2017). Dive into Magenta: fuzzing Google's new kernel. Hacktivity. Archived from the original on November 22, 2022 – via YouTube.
  14. ^ Larabel, Michael (September 13, 2017). "Google's Fuchsia OS Magenta Becomes Zircon". Phoronix. Retrieved May 20, 2018.
  15. ^ Vaughan-Nichols, Steven J. "Google Fuchsia is not Linux: So, what is it and who will use it?". ZDNet. Retrieved August 18, 2018.
  16. ^ a b Amadeo, Ron (May 8, 2017). "Google's "Fuchsia" smartphone OS dumps Linux, has a wild new UI". Ars Technica. Condé Nast. Retrieved May 9, 2017.
  17. ^ a b Altavilla, Dave (June 30, 2019). "Google's Mysterious Fuchsia OS Developer Site Debuts With New Fascinating Details". Forbes. Retrieved August 29, 2019.
  18. ^ Fingas, Jon (May 8, 2017). "Google's mysterious Fuchsia OS looks like an Android re-do". Engadget. AOL. Retrieved May 9, 2017.
  19. ^ Gartenberg, Chaim (May 8, 2017). "Google's mysterious new Fuchsia OS has a UI now". The Verge. Vox Media. Retrieved May 9, 2017.
  20. ^ Davenport, Corbin (May 8, 2017). "Google's "Fuchsia" operating system is taking shape with a new design". Android Police. Retrieved May 9, 2017.
  21. ^ "First Look at all new Fuchsia OS from Google". IB Computing. January 18, 2018. Retrieved January 18, 2018.
  22. ^ "Yes, Google Is Running Fuchsia On The Pixelbook: Calm Down". Chrome Unboxed - The Latest Chrome OS News. January 1, 2018. Retrieved January 3, 2018.
  23. ^ Install Fuchsia on Pixelbook, retrieved December 9, 2020
  24. ^ Amadeo, Ron (January 8, 2018). "Google's Fuchsia OS on the Pixelbook: It works! It actually works!". Ars Technica. Condé Nast. Retrieved January 22, 2018. Right now, Google's built-from-scratch kernel and operating system will actually boot on the Pixelbook, and some things even work. The touchscreen, trackpad, and keyboard work and so do the USB ports. You can even plug in a mouse and get a second mouse cursor.
  25. ^ "Add initial fuchsia target". January 22, 2019.
  26. ^ Bradshaw, Kyle (January 3, 2019). "Google's Fuchsia OS confirmed to have Android app support via Android Runtime". 9to5Google. Retrieved January 4, 2019.
  27. ^ Li, Abner (May 9, 2019). "Fuchsia is Google's investment in trying new OS concepts".
  28. ^ Fireside Chat with Hiroshi Lockheimer, Google Sr. VP, Platforms and Ecosystems (Google I/O'19) 28 minutes in, May 9, 2019, retrieved January 6, 2023
  29. ^ "Expanding Fuchsia's open-source model". Google Open Source Blog. Retrieved May 26, 2021.
  30. ^ Amadeo, Ron (May 25, 2021). "Google launches its third major operating system, Fuchsia". Ars Technica. Retrieved May 25, 2021.
  31. ^ Bradshaw, Kyle (May 25, 2021). "Google is releasing Fuchsia OS, starting w/ 1st-gen Nest Hub". 9to5Google. Retrieved May 25, 2021.
  32. ^ Byford, Sam (August 18, 2021). "Google's Fuchsia OS is rolling out to every first-gen Nest Hub". The Verge. Retrieved August 18, 2021.
  33. ^ Bradshaw, Kyle (March 4, 2022). "Here's the full Google Chrome browser running on Fuchsia [Gallery]". 9to5Google. Retrieved July 16, 2023.
  34. ^ Amadeo, Ron (January 23, 2023). "Google's Fuchsia OS was one of the hardest hit by last week's layoffs". Ars Technica. Retrieved January 23, 2023.
  35. ^ Bradshaw, Kyle (May 2, 2023). "Nest Hub 2nd Gen updates to Google's Fuchsia operating system". 9to5Google. Retrieved May 3, 2023.
  36. ^ Amadeo, Ron (May 8, 2017). "Google's "Fuchsia" smartphone OS dumps Linux, has a wild new UI". Ars Technica. Condé Nast. Retrieved August 31, 2022.
  37. ^ "Google's Fuchsia OS confirmed to have Android app support via Android Runtime". 9to5Google. January 3, 2019. Retrieved March 27, 2019.
  38. ^ @dnaltews (May 10, 2022). "LK was born out of @tkgeisel getting sick of writing the same mini-OS for bootloaders" (Tweet) – via Twitter.{{cite web}}: CS1 maint: deprecated archival service (link)
  39. ^ Sims, Gary (August 17, 2016). "What we learned from running Fuchsia, the mysterious new OS from Google". Android Authority. Retrieved May 9, 2017.
  40. ^ "An Early Look at Zircon, Google Fuchsia New Microkernel". April 15, 2018. Retrieved May 20, 2018. Written in C++, Zircon is composed of a microkernel plus a set of userspace services, drivers, and libraries that are required to handle system boot, process launch, and other typical kernel tasks. Zircon syscalls are generally non-blocking, with the exception of wait_one, wait_many, port_wait and sleep.
  41. ^ "Overview". Fuchsia. Retrieved June 18, 2020.
  42. ^ "Fuchsia: Rethinking OS security design after 50 years | Computer Science Blog @ HdM Stuttgart". blog.mi.hdm-stuttgart.de. July 30, 2023. Retrieved August 29, 2024.

External links

[edit]
  • Free and open-source software portal
  • Official website Edit this at Wikidata
  • An IPC for the whole OS - Ian McKellar on YouTube
  • v
  • t
  • e
Google
a subsidiary of Alphabet
Company
Divisions
  • AI
  • Area 120
  • ATAP
  • Brain
  • China
  • Cloud Platform
  • Energy
  • Google.org
    • Crisis Response
  • Health
  • Registry
Subsidiaries
Active
  • DeepMind
  • Fitbit
  • ITA Software
  • Jigsaw
  • Looker
  • Mandiant
  • Security Operations
  • Owlchemy Labs
Defunct
  • Actifio
  • Adscape
  • Akwan Information Technologies
  • Anvato
  • Apigee
  • BandPage
  • Bitium
  • BufferBox
  • Crashlytics
  • Dodgeball
  • DoubleClick
  • Dropcam
  • Endoxon
  • Flutter
  • Global IP Solutions
  • Green Throttle Games
  • GreenBorder
  • Gridcentric
  • ImageAmerica
  • Impermium
  • Invite Media
  • Kaltix
  • Marratech
  • Meebo
  • Metaweb
  • Neotonic Software
  • Neverware
  • Nik Software
  • Orbitera
  • Pyra Labs
  • Quest Visual
  • Reqwireless
  • RightsFlow
  • Sidewalk Labs
  • SlickLogin
  • Titan Aerospace
  • Typhoon Studios
  • Urban Engines
  • Vicarious
  • Viewdle
  • Wavii
  • Wildfire Interactive
  • YouTube Next Lab and Audience Development Group
Programs
  • Business Groups
  • Computing University Initiative
  • Contact Lens
  • Content ID
  • CrossCheck
  • Data Liberation Front
  • Data Transfer Project
  • Developer Expert
  • DigiKavach
  • DigiPivot
  • Digital Garage
  • Digital News Initiative
  • Digital Unlocked
  • Dragonfly
  • Founders' Award
  • Free Zone
  • Get Your Business Online
  • Google for Education
  • Google for Startups
  • Living Stories
  • Made with Code
  • News Lab
  • PowerMeter
  • Privacy Sandbox
  • Project Nightingale
  • Project Nimbus
  • Project Sunroof
  • Project Zero
  • Quantum Artificial Intelligence Lab
  • RechargeIT
  • Sensorvault
  • Silicon Initiative
  • Solve for X
  • Street View Trusted
  • Student Ambassador Program
  • Vevo
  • YouTube BrandConnect
  • YouTube Creator Awards
  • YouTube Select
  • YouTube Original Channel Initiative
  • Year in Search
  • YouTube Rewind
    • 2018
    • 2019
Events
  • AlphaGo versus Fan Hui
  • AlphaGo versus Lee Sedol
  • AlphaGo versus Ke Jie
  • Android Developer Challenge
  • Android Developer Day
  • Android Developer Lab
  • CNN/YouTube presidential debates
  • Code-in
  • Code Jam
  • Developer Day
  • Developers Live
  • Doodle4Google
  • Future of Go Summit
  • G-Day
  • Hash Code
  • I/O
  • Lunar X Prize
  • Mapathon
  • Science Fair
  • Summer of Code
  • World Chess Championship 2024
  • YouTube Awards
  • YouTube Comedy Week
  • YouTube Live
  • YouTube Music Awards
    • 2013
    • 2015
  • YouTube Space Lab
  • YouTube Symphony Orchestra
Infrastructure
  • 111 Eighth Avenue
  • Android lawn statues
  • Androidland
  • Barges
  • Binoculars Building
  • Central Saint Giles
  • Chelsea Market
  • Chrome Zone
  • Data centers
  • GeoEye-1
  • Googleplex
  • Ivanpah Solar Power Facility
  • James R. Thompson Center
  • King's Cross
  • Mayfield Mall
  • Pier 57
  • Sidewalk Toronto
  • St. John's Terminal
  • Submarine cables
    • Dunant
    • Grace Hopper
    • Unity
  • WiFi
  • YouTube Space
  • YouTube Theater
People
Current
  • Krishna Bharat
  • Vint Cerf
  • Jeff Dean
  • John Doerr
  • Sanjay Ghemawat
  • Al Gore
  • John L. Hennessy
  • Urs Hölzle
  • Salar Kamangar
  • Ray Kurzweil
  • Ann Mather
  • Alan Mulally
  • Rick Osterloh
  • Sundar Pichai (CEO)
  • Ruth Porat (CFO)
  • Rajen Sheth
  • Hal Varian
  • Neal Mohan
Former
  • Andy Bechtolsheim
  • Sergey Brin (co-founder)
  • David Cheriton
  • Matt Cutts
  • David Drummond
  • Alan Eustace
  • Timnit Gebru
  • Omid Kordestani
  • Paul Otellini
  • Larry Page (co-founder)
  • Patrick Pichette
  • Eric Schmidt
  • Ram Shriram
  • Amit Singhal
  • Shirley M. Tilghman
  • Rachel Whetstone
  • Susan Wojcicki
Criticism
General
  • Censorship
  • DeGoogle
  • FairSearch
  • "Google's Ideological Echo Chamber"
  • No Tech for Apartheid
  • Privacy concerns
    • Street View
    • YouTube
  • Trade unions
    • Alphabet Workers Union
  • YouTube copyright issues
Incidents
  • Backdoor advertisement controversy
  • Blocking of YouTube videos in Germany
  • Data breach
  • Elsagate
  • Fantastic Adventures scandal
  • Kohistan video case
  • Reactions to Innocence of Muslims
  • San Francisco tech bus protests
  • Services outages
  • Slovenian government incident
  • Walkouts
  • YouTube headquarters shooting
Other
  • Android apps
  • April Fools' Day jokes
  • Doodles
    • Doodle Champion Island Games
    • Magic Cat Academy
    • Pac-Man
  • Easter eggs
  • History
    • Gmail
    • Search
    • YouTube
  • Logo
  • Material Design
  • Mergers and acquisitions
Development
Software
A–C
  • Accelerated Linear Algebra
  • AMP
  • Actions on Google
  • ALTS
  • American Fuzzy Lop
  • Android Cloud to Device Messaging
  • Android Debug Bridge
  • Android NDK
  • Android Runtime
  • Android SDK
  • Android Studio
  • Angular
  • AngularJS
  • Apache Beam
  • APIs
  • App Engine
  • App Inventor
  • App Maker
  • App Runtime for Chrome
  • AppJet
  • Apps Script
  • AppSheet
  • ARCore
  • Base
  • Bazel
  • BeyondCorp
  • Bigtable
  • BigQuery
  • Bionic
  • Blockly
  • Borg
  • Caja
  • Cameyo
  • Chart API
  • Charts
  • Chrome Frame
  • Chromium
    • Blink
  • Closure Tools
  • Cloud Connect
  • Cloud Dataflow
  • Cloud Datastore
  • Cloud Messaging
  • Cloud Shell
  • Cloud Storage
  • Code Search
  • Compute Engine
  • Cpplint
D–N
  • Dalvik
  • Data Protocol
  • Dialogflow
  • Exposure Notification
  • Fast Pair
  • Fastboot
  • Federated Learning of Cohorts
  • File System
  • Firebase
  • Firebase Studio
  • Firebase Cloud Messaging
  • FlatBuffers
  • Flutter
  • Freebase
  • Gadgets
  • Ganeti
  • Gears
  • Gerrit
  • Global Cache
  • GLOP
  • gRPC
  • Gson
  • Guava
  • Guetzli
  • Guice
  • gVisor
  • GYP
  • JAX
  • Jetpack Compose
  • Keyhole Markup Language
  • Kubernetes
  • Kythe
  • LevelDB
  • Lighthouse
  • Looker Studio
  • lmctfy
  • MapReduce
  • Mashup Editor
  • Matter
  • Mobile Services
  • Namebench
  • Native Client
  • Neatx
  • Neural Machine Translation
  • Nomulus
O–Z
  • Open Location Code
  • OpenRefine
  • OpenSocial
  • Optimize
  • OR-Tools
  • Pack
  • PageSpeed
  • Piper
  • Plugin for Eclipse
  • Polymer
  • Programmable Search Engine
  • Project Shield
  • Public DNS
  • reCAPTCHA
  • RenderScript
  • SafetyNet
  • SageTV
  • Schema.org
  • Search Console
  • Shell
  • Sitemaps
  • Skia Graphics Engine
  • Spanner
  • Sputnik
  • Stackdriver
  • Swiffy
  • Tango
  • TensorFlow
  • Tesseract
  • Test
  • Translator Toolkit
  • Urchin
    • UTM parameters
  • V8
  • VirusTotal
  • VisBug
  • Wave Federation Protocol
  • Weave
  • Web Accelerator
  • Web Designer
  • Web Server
  • Web Toolkit
  • Webdriver Torso
  • WebRTC
Operating systems
  • Android
    • Cupcake
    • Donut
    • Eclair
    • Froyo
    • Gingerbread
    • Honeycomb
    • Ice Cream Sandwich
    • Jelly Bean
    • KitKat
    • Lollipop
    • Marshmallow
    • Nougat
    • Oreo
    • Pie
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • version history
    • smartphones
  • Android Automotive
  • Android Go
    • devices
  • Android Things
  • Android TV
    • devices
  • Android XR
  • ChromeOS
  • ChromeOS Flex
  • ChromiumOS
  • Fuchsia
  • Glass OS
  • gLinux
  • Goobuntu
  • TV
    • 2010–2014
    • 2020–present
  • Wear OS
Machine learning models
  • BERT
  • Chinchilla
  • DreamBooth
  • Gemini
  • Gemma
  • Imagen (2023)
  • LaMDA
  • PaLM
  • T5
  • Veo (text-to-video model)
  • VideoPoet
  • XLNet
Neural networks
  • EfficientNet
  • Gato
  • Inception
  • MobileNet
  • Transformer
  • WaveNet
Computer programs
  • AlphaDev
  • AlphaFold
  • AlphaGeometry
  • AlphaGo
  • AlphaGo Zero
  • AlphaStar
  • AlphaZero
  • Master
  • MuZero
Formats and codecs
  • AAB
  • APK
  • AV1
  • iLBC
  • iSAC
  • libvpx
  • Lyra
  • Protocol Buffers
  • Ultra HDR
  • VP3
  • VP6
  • VP8
  • VP9
  • WebM
  • WebP
  • WOFF2
Programming languages
  • Carbon
  • Dart
  • Go
  • Sawzall
Search algorithms
  • Googlebot
  • Hummingbird
  • Mobilegeddon
  • PageRank
    • matrix
  • Panda
  • Penguin
  • Pigeon
  • RankBrain
Domain names
  • .app
  • .dev
  • .google
  • .zip
  • g.co
  • google.by
Typefaces
  • Croscore
  • Noto
  • Product Sans
  • Roboto
Software
A
  • Aardvark
  • Account
    • Dashboard
    • Takeout
  • Ad Manager
  • AdMob
  • Ads
  • AdSense
  • Affiliate Network
  • Alerts
  • Allo
  • Analytics
  • Antigravity
  • Android Auto
  • Android Beam
  • Answers
  • Apture
  • Arts & Culture
  • Assistant
  • Attribution
  • Authenticator
B
  • BebaPay
  • BeatThatQuote.com
  • Beam
  • Blog Search
  • Blogger
  • Body
  • Bookmarks
  • Books
    • Ngram Viewer
  • Browser Sync
  • Building Maker
  • Bump
  • BumpTop
  • Buzz
C
  • Calendar
  • Cast
  • Catalogs
  • Chat
  • Checkout
  • Chrome
  • Chrome Apps
  • Chrome Experiments
  • Chrome Remote Desktop
  • Chrome Web Store
  • Classroom
  • Cloud Print
  • Cloud Search
  • Contacts
  • Contributor
  • Crowdsource
  • Currents (social app)
  • Currents (news app)
D
  • Data Commons
  • Dataset Search
  • Desktop
  • Dictionary
  • Dinosaur Game
  • Directory
  • Docs
  • Docs Editors
  • Domains
  • Drawings
  • Drive
  • Duo
E
  • Earth
  • Etherpad
  • Expeditions
  • Express
F
  • Family Link
  • Fast Flip
  • FeedBurner
  • fflick
  • Fi Wireless
  • Finance
  • Files
  • Find Hub
  • Fit
  • Flights
  • Flu Trends
  • Fonts
  • Forms
  • Friend Connect
  • Fusion Tables
G
  • Gboard
  • Gemini
    • Nano Banana
  • Gesture Search
  • Gizmo5
  • Google+
  • Gmail
  • Goggles
  • GOOG-411
  • Grasshopper
  • Groups
H
  • Hangouts
  • Helpouts
  • Home
I
  • iGoogle
  • Images
    • Image Labeler
  • Image Swirl
  • Inbox by Gmail
  • Input Tools
    • Japanese Input
    • Pinyin
  • Insights for Search
J
  • Jaiku
  • Jamboard
K
  • Kaggle
  • Keep
  • Knol
L
  • Labs
  • Latitude
  • Lens
  • Like.com
  • Live Transcribe
  • Lively
M
  • Map Maker
  • Maps
  • Maps Navigation
  • Marketing Platform
  • Meet
  • Messages
  • Moderator
  • My Tracks
N
  • Nearby Share
  • News
  • News & Weather
  • News Archive
  • Notebook
  • NotebookLM
  • Now
O
  • Offers
  • One
  • One Pass
  • Opinion Rewards
  • Orkut
  • Oyster
P
  • Panoramio
  • PaperofRecord.com
  • Patents
  • Page Creator
  • Pay (mobile app)
  • Pay (payment method)
  • Pay Send
  • People Cards
  • Person Finder
  • Personalized Search
  • Photomath
  • Photos
  • Picasa
  • Picasa Web Albums
  • Picnik
  • Pixel Camera
  • Play
  • Play Books
  • Play Games
  • Play Music
  • Play Newsstand
  • Play Pass
  • Play Services
  • Podcasts
  • Poly
  • Postini
  • PostRank
  • Primer
  • Public Alerts
  • Public Data Explorer
Q
  • Question Hub
  • Quick, Draw!
  • Quick Search Box
  • Quick Share
  • Quickoffice
R
  • Read Along
  • Reader
  • Reply
S
  • Safe Browsing
  • SageTV
  • Santa Tracker
  • Schemer
  • Scholar
  • Search
    • AI Overviews
    • Knowledge Graph
    • SafeSearch
  • Searchwiki
  • Sheets
  • Shoploop
  • Shopping
  • Sidewiki
  • Sites
  • Slides
  • Snapseed
  • Socratic
  • Softcard
  • Songza
  • Sound Amplifier
  • Spaces
  • Sparrow (chatbot)
  • Sparrow (email client)
  • Speech Recognition & Synthesis
  • Squared
  • Stadia
  • Station
  • Store
  • Street View
  • Surveys
  • Sync
T
  • Tables
  • Talk
  • TalkBack
  • Tasks
  • Tenor
  • Tez
  • Tilt Brush
  • Toolbar
  • Toontastic 3D
  • Translate
  • Travel
  • Trendalyzer
  • Trends
  • TV
U
  • URL Shortener
V
  • Video
  • Vids
  • Voice
  • Voice Access
  • Voice Search
W
  • Wallet
  • Wave
  • Waze
  • WDYL
  • Web Light
  • Where Is My Train
  • Widevine
  • Wiz
  • Word Lens
  • Workspace
  • Workspace Marketplace
Y
  • YouTube
  • YouTube Kids
  • YouTube Music
  • YouTube Premium
  • YouTube Shorts
  • YouTube Studio
  • YouTube TV
  • YouTube VR
Hardware
Pixel
Smartphones
  • Pixel (2016)
  • Pixel 2 (2017)
  • Pixel 3 (2018)
  • Pixel 3a (2019)
  • Pixel 4 (2019)
  • Pixel 4a (2020)
  • Pixel 5 (2020)
  • Pixel 5a (2021)
  • Pixel 6 (2021)
  • Pixel 6a (2022)
  • Pixel 7 (2022)
  • Pixel 7a (2023)
  • Pixel Fold (2023)
  • Pixel 8 (2023)
  • Pixel 8a (2024)
  • Pixel 9 (2024)
  • Pixel 9 Pro Fold (2024)
  • Pixel 9a (2025)
  • Pixel 10 (2025)
  • Pixel 10 Pro Fold (2025)
Smartwatches
  • Pixel Watch (2022)
  • Pixel Watch 2 (2023)
  • Pixel Watch 3 (2024)
  • Pixel Watch 4 (2025)
Tablets
  • Pixel C (2015)
  • Pixel Slate (2018)
  • Pixel Tablet (2023)
Laptops
  • Chromebook Pixel (2013–2015)
  • Pixelbook (2017)
  • Pixelbook Go (2019)
Other
  • Pixel Buds (2017–present)
Nexus
Smartphones
  • Nexus One (2010)
  • Nexus S (2010)
  • Galaxy Nexus (2011)
  • Nexus 4 (2012)
  • Nexus 5 (2013)
  • Nexus 6 (2014)
  • Nexus 5X (2015)
  • Nexus 6P (2015)
Tablets
  • Nexus 7 (2012)
  • Nexus 10 (2012)
  • Nexus 7 (2013)
  • Nexus 9 (2014)
Other
  • Nexus Q (2012)
  • Nexus Player (2014)
Other
  • Android Dev Phone
  • Android One
  • Cardboard
  • Chromebit
  • Chromebook
  • Chromebox
  • Chromecast
  • Clips
  • Daydream
  • Fitbit
  • Glass
  • Liftware
  • Liquid Galaxy
  • Nest
    • smart speakers
    • Thermostat
    • Wifi
  • Play Edition
  • Project Ara
  • OnHub
  • Pixel Visual Core
  • Project Iris
  • Search Appliance
  • Sycamore processor
  • Tensor
  • Tensor Processing Unit
  • Titan Security Key
  • v
  • t
  • e
Litigation
Advertising
  • Feldman v. Google, Inc. (2007)
  • Rescuecom Corp. v. Google Inc. (2009)
  • Goddard v. Google, Inc. (2009)
  • Rosetta Stone Ltd. v. Google, Inc. (2012)
  • Google, Inc. v. American Blind & Wallpaper Factory, Inc. (2017)
  • Jedi Blue
Antitrust
  • European Union (2010–present)
  • United States v. Adobe Systems, Inc., Apple Inc., Google Inc., Intel Corporation, Intuit, Inc., and Pixar (2011)
  • Umar Javeed, Sukarma Thapar, Aaqib Javeed vs. Google LLC and Ors. (2019)
  • United States v. Google LLC (2020)
  • Epic Games v. Google (2021)
  • United States v. Google LLC (2023)
Intellectual
property
  • Perfect 10, Inc. v. Amazon.com, Inc. (2007)
  • Viacom International, Inc. v. YouTube, Inc. (2010)
  • Lenz v. Universal Music Corp.(2015)
  • Authors Guild, Inc. v. Google, Inc. (2015)
  • Field v. Google, Inc. (2016)
  • Google LLC v. Oracle America, Inc. (2021)
  • Smartphone patent wars
Privacy
  • Rocky Mountain Bank v. Google, Inc. (2009)
  • Hibnick v. Google, Inc. (2010)
  • United States v. Google Inc. (2012)
  • Judgement of the German Federal Court of Justice on Google's autocomplete function (2013)
  • Joffe v. Google, Inc. (2013)
  • Mosley v SARL Google (2013)
  • Google Spain v AEPD and Mario Costeja González (2014)
  • Frank v. Gaos (2019)
Other
  • Garcia v. Google, Inc. (2015)
  • Google LLC v Defteros (2020)
  • Gonzalez v. Google LLC (2022)
Related
Concepts
  • Beauty YouTuber
  • BookTube
  • BreadTube
  • "Don't be evil"
  • Gayglers
  • Google as a verb
  • Google bombing
    • 2004 U.S. presidential election
  • Google effect
  • Googlefight
  • Google hacking
  • Googleshare
  • Google tax
  • Googlewhack
  • Googlization
  • Illegal flower tribute
  • Objectives and key results
  • Rooting
  • Search engine manipulation effect
  • Side project time
  • Sitelink
  • Site reliability engineering
  • StudyTube
  • VTuber
  • YouTube Poop
  • YouTuber
    • list
Products
Android
  • Booting process
  • Custom distributions
  • Features
  • Recovery mode
  • Software development
Street View coverage
  • Africa
  • Antarctica
  • Asia
    • Israel
  • Europe
  • North America
    • Canada
    • United States
  • Oceania
  • South America
    • Argentina
    • Chile
    • Colombia
YouTube
  • Copyright strike
  • Education
  • Features
  • Moderation
  • Most-disliked videos
  • Most-liked videos
  • Most-subscribed channels
  • Most-viewed channels
  • Most-viewed videos
    • Arabic music videos
    • French music videos
    • Indian videos
    • Pakistani videos
  • Official channel
  • Social impact
  • YouTube Premium original programming
Other
  • Gmail interface
  • Maps pin
  • Most downloaded Google Play applications
  • Stadia games
Documentaries
  • AlphaGo
  • Google: Behind the Screen
  • Google Maps Road Trip
  • Google and the World Brain
  • The Creepy Line
Books
  • Google Hacks
  • The Google Story
  • Googled: The End of the World as We Know It
  • How Google Works
  • I'm Feeling Lucky
  • In the Plex
  • The MANIAC
Popular culture
  • Google Feud
  • Google Me (film)
  • "Google Me" (Kim Zolciak song)
  • "Google Me" (Teyana Taylor song)
  • Is Google Making Us Stupid?
  • Proceratium google
  • Matt Nathanson: Live at Google
  • The Billion Dollar Code
  • The Internship
  • Where on Google Earth is Carmen Sandiego?
Other
  • "Attention Is All You Need"
  • elgooG
  • Generative pre-trained transformer
  • "Me at the zoo"
  • Predictions of the end
  • Relationship with Wikipedia
  • "Reunion"
  • Robot Constitution
Italics denote discontinued products.
  • Category
  • Outline
  • v
  • t
  • e
Google free and open-source software
Software
Applications
  • Chromium
  • Gemma
  • OpenRefine
  • Tesseract
Programming languages
  • Carbon
  • Dart
  • Go
  • Sawzall
Frameworks and
development tools
  • AMP
  • Angular
  • AngularJS
  • Beam
  • Bazel
  • Blockly
  • Brotli
  • Closure Tools
  • Cpplint
  • FlatBuffers
  • Flutter
  • Ganeti
  • Gears
  • Gerrit
  • GLOP
  • gRPC
  • Gson
  • Guava
  • Guetzli
  • Guice
  • gVisor
  • Kubernetes
  • LevelDB
  • libvpx
  • Lighthouse
  • NaCl
  • Namebench
  • Nomulus
  • OR-Tools
  • Polymer
  • Protocol Buffers
  • TensorFlow
  • V8
Operating systems
  • Android
  • ChromiumOS
  • Fuchsia
  • gLinux
  • Goobuntu
Related
  • Code-in
  • Google LLC v. Oracle America, Inc.
  • Open Source Security Foundation
  • Summer of Code
  • v
  • t
  • e
Object-capability security
Concepts
  • Principle of least privilege (PoLP)
  • Confused deputy problem
  • Ambient authority
  • File descriptor
  • C-list
  • Object-capability model
  • Capability-based security
  • Capability-based addressing
  • Zooko's triangle
  • Petnames
Operating systems,
kernels
  • Capsicum
  • Fuchsia
  • Genode
  • GNOSIS → KeyKOS → EROS → CapROS
  • Hydra
  • iMAX 432
  • Midori
  • NLTSS
  • seL4
  • HarmonyOS (HarmonyOS NEXT)
  • Phantom OS
Programming languages
  • Caja–Cajita
  • E
  • Joe-E
  • Joule
File systems
  • Tahoe-LAFS
Specialised hardware
  • BiiN
  • Cambridge CAP
  • CHERI
  • Flex
  • IBM System/38
  • Intel iAPX 432
  • Plessey System 250
  • v
  • t
  • e
Microkernels-nanokernels
Kernels
L4 family
  • Eumel → L3 → L4°
  • OKL4°
Macintosh hosted
  • Mac OS nanokernel
  • NuKernel
Psion
  • EKA1 → EKA2^°
Amiga-type
  • Exec
    • ExecSG
  • Quark
  • WarpOS
  • ADEOS°
  • EROS^°
  • K42°
  • Little Kernel
  • Mach°
    • GNU Mach°
  • MicroEmpix
  • µ-velOSity^
  • nucleus
  • Off++ → Plan B
  • Opus
  • PowerUP
  • RTLinux°
  • TI-RTOS kernel^°
  • Vanguard
Operating
systems
POSIX support
Unix-like
  • ARX
  • GNU Hurd°
  • Lites
  • MeikOS
  • Minix°
    • Minix-vmd°
    • Minix 3°
  • MkLinux°
  • Multi-Environment Real-Time^ (MERT – Unix-RT)
  • OS2000
  • QNX^
  • Redox°
  • Spring
  • Tinix
  • UNICOS
  • VSTa
  • Partial
    • ChorusOS^
    • Integrity^
    • Nucleus RTOS^
    • NuttX^°
    • OSE^
    • RIOT^°
    Capability-based
    • GNOSIS → KeyKOS → EROS → CapROS
    • Hydra
    • seL4^°
    • Midori
    • NLTSS
    • HarmonyOS NEXT (OpenHarmony, Oniro OS) → HarmonyOS
    L4 kernel
    • L4Linux^°
    • PikeOS^
    • REX OS^
    • Wombat^°
    Java virtual machine
    • JavaOS (Chorus/Jazz^ integrates ChorusOS^)
    • JX°
    Macintosh hosted
    Unix-like
    • MachTen
    • MacMach
    • Copland
    • Classic Mac OS (PowerPC kernel)
    Psion
  • EPOC → Symbian OS^°
  • Amiga-type
    • AmigaOS
    • AROS°
      • AspireOS°
      • Broadway°
      • Icaros Desktop°
    • MorphOS
    Microsoft
    • Singularity
    • ThreadX^°
    • Verve
    AIM alliance
    • Pink → Taligent OS → Workplace OS
    • Amoeba°
    • BeRTOS^°
    • ChibiOS/RT^°
    • FreeRTOS^°
    • HelenOS°
    • µC/OS^°
    • MQX^
    • OpenComRTOS^
    • Phantom OS^°
    • RC 4000
    • SharpOS°
    • SPIN°
    • Thoth^ → Harmony^ → V
    • VRTX^
    Frameworks, kits
  • Cosmos°
  • Genode°
  • TI-RTOS^°
  • Developers
    • Gordon Bell
    • Thomas Bushnell
    • David Cheriton
    • Dan Dodge
    • Per Brinch Hansen
    • Gernot Heiser
    • Jochen Liedtke
    • James G. Mitchell
    • Ike Nassi
    • Richard Rashid
    • Andrew S. Tanenbaum
    • Avie Tevanian
    • William Wulf
    • Italics = discontinued
    • ^ = Real-time
    • ° = Open-source software
      Category: Microkernel-based operating systems Category: Microkernels
    • v
    • t
    • e
    Mobile operating systems
    • Comparison
    • Open-source mobile phones, OSes
    • Open Handset Alliance
    • Open Mobile Alliance
    • Mobile app distributions
    • Mobile app development
    Linux
    Kernel
    • Active: Android
      • forks
      • Android Go
      • Wear OS
    • Aurora OS
    • EMUI, HarmonyOS (Linux kernel subsystem)
    • ChromeOS
      • ChromeOS Flex
    • KaiOS
      • Smart Feature OS
    • Kindle firmware
    • LuneOS
    • Maemo Leste
    • Tizen
    • Defunct: Bada
    • Firefox OS
      • B2G OS
    • MeeGo
    • MontaVista
      • MotoMagx
      • Mobilinux
    • OpenEmbedded
      • Ångström
      • Openmoko Linux
      • QtMoko
      • SHR
    • OpenEZX
    • WebOS
    GNU/
    Linux
    • Active: Fedora Mobility
    • Manjaro ARM
    • postmarketOS
    • PureOS
    • Sailfish OS
    • SteamOS
    • Ubuntu Touch
      • UBports
    • Mobian
    • Defunct: Maemo
      • Mer
    • Moblin
    XNU
    • iOS
      • iPadOS
      • watchOS
        • bridgeOS
    QNX
    • BlackBerry 10
    • BlackBerry Tablet OS
    Microsoft
    Windows
    • Windows XP Tablet PC Edition
    • Windows Mobile
    • Windows Phone
      • 7
      • 8
      • 8.1
    • Windows RT
    • Windows 10 Mobile
    • Windows 8
      • Windows 8.1
    • Windows 10
    • Windows 11
    Zircon
    • Fuchsia
    FreeBSD, NetBSD
    • PlayStation Vita system software
    HongMeng Kernel
    • Active: OpenHarmony
    • HarmonyOS
      • HarmonyOS NEXT
    • Defunct: EMUI (non GMS-based)
    • LiteOS
    • Huawei Band OS
    FreeRTOS
    • Amazfit OS
      • Zepp OS
    • MIUI Band OS
    Nintendo
    system software
    • Nintendo 3DS system software
    • Nintendo DSi system software
    • Nintendo Switch system software
    Minix 3
    • Intel Management Engine
    Symbian
    • S60
    • S80
    • S90
    • UIQ
    Others
    • Binary Runtime Environment for Wireless (BREW)
    • BlackBerry OS
    • EPOC
    • GEOS
    • Magic Cap
    • Nokia Asha platform
    • PalmDOS
    • Palm OS
    • PlayStation Portable system software
    • S30
    • S30+
    • S40
    • Sony Ericsson Java Platform
    • ThreadX
    • Software
    • Mobile operating systems
    • Mobile applications
    • Telecommunication
    Retrieved from "https://teknopedia.ac.id/w/index.php?title=Fuchsia_(operating_system)&oldid=1334539685"
    Categories:
    • 2016 software
    • Software programmed in C++
    • Capability systems
    • Embedded operating systems
    • Free software operating systems
    • Free software programmed in C
    • Free software programmed in Go
    • Free software programmed in Rust
    • Google operating systems
    • Software using the Apache license
    • Software using the BSD license
    • Software using the MIT license
    • X86-64 operating systems
    Hidden categories:
    • CS1 maint: deprecated archival service
    • Articles with short description
    • Short description is different from Wikidata
    • Use mdy dates from December 2023
    • Articles with specifically marked weasel-worded phrases from July 2025

    • 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