Out with the Old, in with the New

Total Page:16

File Type:pdf, Size:1020Kb

Out with the Old, in with the New LINUX VOICE RE-THINKING THE FILESYSTEM GoboLinux: Out with the old, in with the new Explore this novel Linux distro, which throws out the old Unix filesystem hierarchy in favor of something more modern. BY MIKE SAUNDERS ne of my favorite sayings comes from the could be updated, without radically re-engineering mouth of Henry Spencer, author of the the whole OS. Say hello to GoboLinux [1]. O Regex regular expression parsing library GoboLinux is – for the most part – a regular Linux (among many other things). He said: “Those who do distribution, but with one major difference: it es- not understand Unix are condemned to reinvent it, chews the old filesystem hierarchy (/usr, /lib, /etc, poorly.” But, what exactly did he mean by this? Well, and so forth) in favor of a more modern design many hackers regard Unix as the pinnacle of operat- where each program lives in its own directory. In the- ing system design. Unix ory, this should make it pieces together many easier to distribute, install, ideas and technologies and remove programs. that make it a truly uni- Additionally, GoboLinux versal operating system, features its own boot sys- running on everything from wristwatches to super- tem that’s not based on the old SysVinit or BSD computers. The concepts and foundations on scripts – nor does it use Systemd. It’s a fascinating which it's based will be solid forever. distro, so in this article, I’ll show you how it works, Still, every few years, someone comes along how to install it, and where it’s heading. promising a revolutionary OS that discards all the old 1970s baggage and implements everything A Bit of Background using the latest buzzwords du jour. Why imple- Most Linux distributions adhere to the Filesys- ment all that old Unix gunk when you can build an tem Hierarchy Standard, aka FHS [2], which de- OS in a version 0.0.3 language someone just termines the directory structure in a typical posted on Hacker News? Why should everything Linux installation – i.e., which files and directo- be a file when obviously JSON is the only sensible ries go where on the drive. The FHS is heavily way to store data? And who needs a filesystem inspired by older Unix flavors and leads to a anyway? setup like this: But the same thing tends to happen to trendy / (aka root directory) – The highest level direc- OSes like these. Over time, they either die off or tory, with nothing above. This contains all other di- end up becoming more and more Unix-like. The rectories (and their subdirectories). developers realize that Unix isn’t actually old and /etc – Configuration files. This really is a mixed clunky but is actually a rather smart design bunch, containing text-based config files for sys- crafted by hackers with a lot of experience. Unix tem-wide applications and services, scripts, and may have been written for the mainframes and other bits ‘n’ pieces. There’s very little standardiza- minicomputers of the 1970s, but it was very easily tion in here, with each file having its own format adaptable to smaller devices. It’s no coincidence and syntax, and various subdirectories. that Unix flavors pretty much run the world now: /bin and /sbin – Base-system binaries for regu- Linux and FreeBSD on servers, Android on lar users and the superuser (root), respectively. phones, Mac OS on many desktops and laptops. These are available immediately after booting, be- Even Microsoft is trying to get in on the action fore other filesystem partitions are mounted. Here’s with its Windows Subsystem for Linux. where you find the Bash shell and other tools. So Unix is a solid and well thought-out OS, and /lib – Historically, this contained base-system li- straying too far from its principles can be risky. braries, like the C library that almost every pro- However, that doesn’t mean you should be overly gram depends on. Today, it also contains Linux dogmatic and resist any change. Arguably, a few kernel modules, systemd scripts (on distros that things in Unix-like systems are a bit archaic and use it), and various other components. 66 FEBRUARY 2017 ISSUE 195 LINUX-MAGAZINE.COM | LINUXPROMAGAZINE.COM RE-THINKING THE FILESYSTEM LINUX VOICE /usr and /usr/lib – Programs and libraries for moments of booting up, GoboLinux will ask you to normal user accounts. This is typically the largest select a language and keyboard map. Then you’ll part of an installation and includes non-base soft- land on a root command-line prompt – which ware – the X Window System, desktop environ- probably wasn’t what you’re expecting, so enter ments, Firefox, etc. In many older Unix installa- startx to bring up the X Window System and ac- tions, /usr would be on a separate partition and cess the GUI. From there, you’ll find an installer mounted later during the boot process to keep icon on the desktop, so double-click that and fol- user apps separate from the base system. low the prompts. Those are some of the most important directo- If you have trouble running startx, though, ries in a typical Linux installation, but there are you’ll need to perform a text-mode installation many more as well. You can see some historical (Figure 1) – enter: baggage in there, with some directories serving multiple purposes, bits of overlap, and not much Installer in the way of standardization (despite the best ef- forts of the FHS). Most significantly, though, is Note the capital letter at the start – this is your that a single program may have files in many dif- first taste of how GoboLinux does things! Use Tab ferent directories. Have a look at some packages to switch between buttons and other elements on on your current Linux installation and see where the screen, and Enter to select them. You’ll be they scatter files. For instance, on a .deb-based prompted to choose the partition(s) on your drive distro: where GoboLinux should be installed, the package sets to be copied over (it’s best to leave them all dpkg -L bash selected), and where to install the boot loader. For the most part, you can just accept the defaults This shows that the Bash package drops files into and keep selecting Next. /etc, /bin, /usr, and various sub-directories of /usr. You’ll be prompted to set a password for root, the There is some logic to this, but it makes a package administrator user, and also create a normal user manager pretty much essential. How can you eas- account for your day-to-day work. Lastly, the Gobo- ily remove a program when its files are scattered Linux installer will perform a final check that you’re over so many different directories? How can you ready to go ahead with the options you selected – if tell which file belongs to which program? Tools like so, the files will be installed and then you can re- dpkg, apt-get, yum, rpm, etc. take the pain of this boot. If GoboLinux boots into text mode, you can away, but you could argue that they are just more log in as your regular user account and enter startx layers of complexity and abstraction on top of to bring up the desktop (Figure 2). what should be a simple design. How does GoboLinux approach this? Essentially, Filesystem Magic it tries to redefine the filesystem. Instead of pro- To see how GoboLinux handles software, open grams being scattered all over the drive and hard a terminal and cd into the /Programs directory. to manage without specific tools, each program is There you’ll see a bunch of directories, one per placed in its own subdirectory of /Programs, so they program, so try switching into one – e.g., Nano. are easy to locate, change, and remove. In Gobo- Then you’ll see three directories: one with a ver- Linux, “the filesystem is the package manager,” sion number, which contains the binary and Figure 1: GoboLinux’s text- drastically simplifying the software management support files for that version of Nano. There’s mode installer gets you set process. On top of that, the distro makes it possible also Current, which is a symbolic link to the ver- up easily – you can mostly to have multiple versions of the same program in- sion currently in use (this is how you can have just hit Enter. stalled, side by side. Try doing that with your regu- lar Linux distro – even with the most awesome command-line gymnastics and symbolic link she- nanigans, it’s tough to achieve. Installing GoboLinux You may be reticent at this stage to switch to GoboLinux as your primary distro. Fair enough – I recommend exploring it in a virtual machine such as VirtualBox (or just installing it on a spare PC). Go to the download page [3] and grab the ISO image of the latest release – 016 beta at the time of writing, but it may be final when you read this. In VirtualBox, assign it to the emulated DVD drive and start the virtual machine. After a few LINUX-MAGAZINE.COM | LINUXPROMAGAZINE.COM ISSUE 195 FEBRUARY 2017 67 LINUX VOICE RE-THINKING THE FILESYSTEM This shows you how GoboLinux knows where to find Nano (and other programs) in the installation. The /System directory contains other components, neatly arranged into their own sub-folders, as well. You’ll see that the kernel can be found there (along with its modules), while the Settings directory does the job of a traditional /etc.
Recommended publications
  • I Am Not Clueless Myths and Misconceptions About the Design Of
    I am not clueless or Myths and misconceptions about the design of GoboLinux Hisham H. Muhammad April 11, 2017 “Those who do not understand Unix are doomed to reinvent it, poorly.” – Henry Spencer, 1987 This week we had another release of GoboLinux, and again a number of people, even if indirectly, called me “clueless” for coming up with such a structure for a Linux distribution, for a number of reasons. None of those reasons was new; I heard all of them many times. This article is an attempt to sum them up, and explain why I chose the design decisions I made, hopefully clearing any pending misconceptions. I don’t have illusion this will prevent them keep happening, but at least I’ll have a text to point people to. This article ranges from common misconceptions from those who have never used GoboLinux, to well-intentioned but poorly-thought-out ideas that keep coming from time to time to the GoboLinux mailing list, often causing long debates. I’ll be separating the points in sections and they are meant to be self-contained, so feel free to skip directly to the ones that interest you, if you don’t feel like reading the whole thing. “There is a reason why things are the way they are” This is something I hear constantly, often followed by an explanation about the difference between /, /usr and /usr/local, and/or /bin and /sbin. I do understand the difference1. If I did away with this three-level distinction, is because I believe there are other ways to approach the problems this distinction tries to solve.
    [Show full text]
  • Github: a Case Study of Linux/BSD Perceptions from Microsoft's
    1 FLOSS != GitHub: A Case Study of Linux/BSD Perceptions from Microsoft’s Acquisition of GitHub Raula Gaikovina Kula∗, Hideki Hata∗, Kenichi Matsumoto∗ ∗Nara Institute of Science and Technology, Japan {raula-k, hata, matumoto}@is.naist.jp Abstract—In 2018, the software industry giants Microsoft made has had its share of disagreements with Microsoft [6], [7], a move into the Open Source world by completing the acquisition [8], [9], the only reported negative opinion of free software of mega Open Source platform, GitHub. This acquisition was not community has different attitudes towards GitHub is the idea without controversy, as it is well-known that the free software communities includes not only the ability to use software freely, of ‘forking’ so far, as it it is considered as a danger to FLOSS but also the libre nature in Open Source Software. In this study, development [10]. our aim is to explore these perceptions in FLOSS developers. We In this paper, we report on how external events such as conducted a survey that covered traditional FLOSS source Linux, acquisition of the open source platform by a closed source and BSD communities and received 246 developer responses. organization triggers a FLOSS developers such the Linux/ The results of the survey confirm that the free community did trigger some communities to move away from GitHub and raised BSD Free Software communities. discussions into free and open software on the GitHub platform. The study reminds us that although GitHub is influential and II. TARGET SUBJECTS AND SURVEY DESIGN trendy, it does not representative all FLOSS communities.
    [Show full text]
  • Introduction to Fmxlinux Delphi's Firemonkey For
    Introduction to FmxLinux Delphi’s FireMonkey for Linux Solution Jim McKeeth Embarcadero Technologies [email protected] Chief Developer Advocate & Engineer For quality purposes, all lines except the presenter are muted IT’S OK TO ASK QUESTIONS! Use the Q&A Panel on the Right This webinar is being recorded for future playback. Recordings will be available on Embarcadero’s YouTube channel Your Presenter: Jim McKeeth Embarcadero Technologies [email protected] | @JimMcKeeth Chief Developer Advocate & Engineer Agenda • Overview • Installation • Supported platforms • PAServer • SDK & Packages • Usage • UI Elements • Samples • Database Access FireDAC • Migrating from Windows VCL • midaconverter.com • 3rd Party Support • Broadway Web Why FMX on Linux? • Education - Save money on Windows licenses • Kiosk or Point of Sale - Single purpose computers with locked down user interfaces • Security - Linux offers more security options • IoT & Industrial Automation - Add user interfaces for integrated systems • Federal Government - Many govt systems require Linux support • Choice - Now you can, so might as well! Delphi for Linux History • 1999 Kylix: aka Delphi for Linux, introduced • It was a port of the IDE to Linux • Linux x86 32-bit compiler • Used the Trolltech QT widget library • 2002 Kylix 3 was the last update to Kylix • 2017 Delphi 10.2 “Tokyo” introduced Delphi for x86 64-bit Linux • IDE runs on Windows, cross compiles to Linux via the PAServer • Designed for server side development - no desktop widget GUI library • 2017 Eugene
    [Show full text]
  • Lightweight Virtualization with Gobolinux' Runner
    Lightweight virtualization with GoboLinux’ Runner Lucas C. Villa Real [email protected] About GoboLinux ● Alternative distribution born in 2002 ● Explores novel ideas in the Linux distribution ecosystem ● Introduces a rather diferent directory hierarchy How diferent? lucasvr@fedora ~] ls / bin dev home lib64 media opt root sbin sys usr boot etc lib lost+found mnt proc run srv tmp var lucasvr@fedora ~] ls /usr bin games include lib lib64 libexec local sbin share src tmp lucasvr@fedora ~] ls /usr/local bin etc games include lib lib64 libexec sbin share src lucasvr@gobolinux ~] ls / Data Mount Programs System Users GoboLinux File System Hierarchy /Programs Self-contained programs: no need for a package manager ~] ls /Programs AbsTk DifUtils GnuTLS Kerberos LibXML2 ACL Dit GoboHide Kmod LibXSLT Acpid DosFSTools GParted Lame Linux AGNClient E2FSProgs Gperf LCMS Linux-Firmware ALSA-Lib EFIBootMgr GPM Less Linux-PAM ALSA-Utils ELFUtils Grep LibDRM Lsof APR EncFS Grof LibEvdev Lua APR-Util ExFAT GRUB LibExif LuaRocks … /Programs Multiple versions of a given program can coexist ~] ls /Programs/GTK+ 2.24.22 2.24.30 3.10.6 3.21.4 Current Settings ~] ls /Programs/GTK+/2.24.22 bin doc include lib Resources share ~] ls /Programs/GTK+/2.24.22/bin gtk-builder-convert gtk-demo gtk-query-immodules2.0 gtk-update-icon-cache ~] ls /Programs/GTK+/2.24.30/bin gtk-builder-convert gtk-demo gtk-query-immodules2.0 gtk-update-icon-cache /Programs Easy to tell which fles belongs to which packages lucasvr@fedora ~] ls -l /bin/bash -rwxr-xr-x. 1 root root 1072008
    [Show full text]
  • Debian \ Amber \ Arco-Debian \ Arc-Live \ Aslinux \ Beatrix
    Debian \ Amber \ Arco-Debian \ Arc-Live \ ASLinux \ BeatriX \ BlackRhino \ BlankON \ Bluewall \ BOSS \ Canaima \ Clonezilla Live \ Conducit \ Corel \ Xandros \ DeadCD \ Olive \ DeMuDi \ \ 64Studio (64 Studio) \ DoudouLinux \ DRBL \ Elive \ Epidemic \ Estrella Roja \ Euronode \ GALPon MiniNo \ Gibraltar \ GNUGuitarINUX \ gnuLiNex \ \ Lihuen \ grml \ Guadalinex \ Impi \ Inquisitor \ Linux Mint Debian \ LliureX \ K-DEMar \ kademar \ Knoppix \ \ B2D \ \ Bioknoppix \ \ Damn Small Linux \ \ \ Hikarunix \ \ \ DSL-N \ \ \ Damn Vulnerable Linux \ \ Danix \ \ Feather \ \ INSERT \ \ Joatha \ \ Kaella \ \ Kanotix \ \ \ Auditor Security Linux \ \ \ Backtrack \ \ \ Parsix \ \ Kurumin \ \ \ Dizinha \ \ \ \ NeoDizinha \ \ \ \ Patinho Faminto \ \ \ Kalango \ \ \ Poseidon \ \ MAX \ \ Medialinux \ \ Mediainlinux \ \ ArtistX \ \ Morphix \ \ \ Aquamorph \ \ \ Dreamlinux \ \ \ Hiwix \ \ \ Hiweed \ \ \ \ Deepin \ \ \ ZoneCD \ \ Musix \ \ ParallelKnoppix \ \ Quantian \ \ Shabdix \ \ Symphony OS \ \ Whoppix \ \ WHAX \ LEAF \ Libranet \ Librassoc \ Lindows \ Linspire \ \ Freespire \ Liquid Lemur \ Matriux \ MEPIS \ SimplyMEPIS \ \ antiX \ \ \ Swift \ Metamorphose \ miniwoody \ Bonzai \ MoLinux \ \ Tirwal \ NepaLinux \ Nova \ Omoikane (Arma) \ OpenMediaVault \ OS2005 \ Maemo \ Meego Harmattan \ PelicanHPC \ Progeny \ Progress \ Proxmox \ PureOS \ Red Ribbon \ Resulinux \ Rxart \ SalineOS \ Semplice \ sidux \ aptosid \ \ siduction \ Skolelinux \ Snowlinux \ srvRX live \ Storm \ Tails \ ThinClientOS \ Trisquel \ Tuquito \ Ubuntu \ \ A/V \ \ AV \ \ Airinux \ \ Arabian
    [Show full text]
  • Conflict Resolution Via Containerless Filesystem Virtualization
    Dependency Heaven: Conflict Resolution via Containerless Filesystem Virtualization Anonymous Author(s) Abstract previous installation, effectively preventing concurrent ver- Resolving dependency versioning conflicts in applications sions of that library from coexisting. The same is true for is a long-standing problem in software development and packages whose executable names does not change across deployment. Containers have become a popular way to ad- releases; unless the user renames the existing executable dress this problem, allowing programs to be distributed in a files prior to the installation of a new version it is notpos- portable fashion and to run them under strict security con- sible to keep both installations around. The problem with straints. Due to the popularity of this approach, its use has that approach is that it breaks package managers, as the re- started to extend beyond its original aim, with users often named files will not be featured in the package manager’s creating containers bundling entire Linux distributions to database and, consequently, will not be tracked anymore. run mundane executables, incurring hidden performance Further, unless executables depending on the renamed files and maintenance costs. This paper presents an alternative are modified to reflect their new path, users need todefine approach to the problem of versioning resolution applied to which executable to activate at a given time, usually through locally-installed applications, through a virtualization tool tricky management of symbolic
    [Show full text]
  • Nix(OS) - Revolutionizing Packaging and Configuration Management!
    Nix(OS) - Revolutionizing packaging and configuration management! The Purely Functional Linux Distribution 1 Before we begin (FYI) Ask questions at any time Please ask lots of questions :) The slides contain some redundancy There are a few optional slides at the end Please give me feedback Louder Faster/slower More/less details Etc. 2 About me Michael Weiss aka. primeos Computer science student at the University of Tübingen I love free soware, etc. First nixpkgs commit: 2016-10-05 I maintain ~41 packages and ~3 modules (2018-06-08) I also love privacy (i.e. no more details :P) Email: [email protected] (#privacy) 3 Main components Nix (package manager) Nixpkgs (Nix packages collection) NixOS (operating system) NixOps (DevOps / cloud deployment tool) 4 Nix* ISO/OSI model NixOps NixOS Nixpkgs Nix 5 Other tools Hydra (Nix based continuous build system) Disnix (distributed services deployment) PatchELF (change dynamic linker and RPATH) {cabal,go,node,pip,python,pypi,composer,hex,bower,vim,...}2 6 History Started as a research project (with funding) First paper in 2004 (many will follow) Nix package manager developed by Eelco Dolstra as part of his PhD research (~2003) First NixOS prototype developed by Armijn Hemel as his master's thesis project Hydra developed as part of the LaQuSo Buildfarm project 7 Timeline 2003: init (research begins) 2007: NixOS becomes usable + x86_64 support 2008: Website moved to nixos.org 2009: Nix logo + Nix(OS) build on Hydra 2011: Migration from Subversion to Git(Hub) 2013: Switch from Upstart to systemd +
    [Show full text]
  • Ultimate++ Forum Max P.S
    Subject: About Linux distros and incompatibilty... Posted by guido on Thu, 24 Jul 2008 19:42:35 GMT View Forum Message <> Reply to Message luzr wrote on Thu, 24 July 2008 18:58 Well, maybe developers can do the same thing - target the same 80% user base as us. In fact, Ubunutu seems to be the exact kind of relief here you are calling for. Works for 80% for two month, and then breaks with the next upgrade of some library. The whole concept of ISV doesn't exist in the world of the leading distros. If you are not in the repository you don't exist and they will break your software at a whim. Even if you get your binary nVidia driver from the official repository, the package system will mercilessly upgrade to an incompatible kernel by the next opportunity. You'll find yourself on the console prompt next morning, wondering what the hell is up. The dependency system should protect from that. But in this case apparently it isn't done on purpose. After all, we can't allow that eeevil binary blob holding up progress... Also, I doubt those 80%. Ubuntu might be a fad as well. Who knows. Many a mighty have fallen over the years. Look where Mandrake is now. Have even heard of it? The Ubuntu of yesteryear. Even if, paying customers probably be found rather at Novell and RedHat. Subject: Re: Final release Posted by mdelfede on Thu, 24 Jul 2008 20:46:34 GMT View Forum Message <> Reply to Message Well, I tried 3 times in the past to switch from windows to Linux.
    [Show full text]
  • Free Software
    FEATURE FREE SOFTWARE OF THE BEST THINGS ABOUT FREE SOFTWARE 2014 This year will be the best ever for Linux and Free Software. Why? Mike Saunders has 51 reasons… 38 www.linuxvoice.com FREE SOFTWARE FEATURE or so long, it looked like Linux While the almighty annihilation of little Linux machines in their pockets. was on the cusp of causing a Windows never happened, a much And the Raspberry Pi has been a Frevolution, of pulling the masses more subtle set of changes took storming success, introducing children away from Windows and introducing place. Linux is everywhere now – worldwide to open computing. them to a new world of computing. but not many people know it. GNU/ 2014 has a huge amount in store for Linux distributions were becoming Linux powers many of the biggest Linux users, and not just in terms of easier to use by the month, desktop websites in the world, serving up web software – people, communities and applications were being refined and applications to hundreds of millions of events will also shape the course of the polished, and PC vendors were starting users. Android dominates the mobile year. So read on for 51 awesome things to ship Linux with their machines. scene, with countless people carrying to look forward to… FEDORA 21 FIREFOX Fedora 21 bucks the VERIFIED BUILDS trend of previous Even if you’re running an releases by having a open source browser, longer development you can’t be 100% cycle than usual certain that the binary which will hopefully executable doesn’t 1provide more time for have an NSA backdoor new technologies like inserted, possibly via Wayland to settle down.
    [Show full text]
  • Gobolinux 0.12 Vectorlinux 5.1 Spesifikasi Distro Spesifikasi Distro Pembuat Hisham Muhammad Dan André Detsch Pembuat Robert S
    ULASAN Berita | Ulasan | Adu Software | Utama | Bisnis | Apa Sih Sebenarnya... | Tutorial Ulasan Distro DESKTOP DESKTOP GoboLinux 0.12 VectorLinux 5.1 Spesifikasi Distro Spesifikasi Distro Pembuat Hisham Muhammad dan André Detsch Pembuat Robert S. Lange Situs gobolinux.org Situs vectorlinux.com Lisensi GPL Lisensi GPL Kernel 2.6.11.9 Kernel 2.6.11.7 Desktop KDE 3.4 Desktop IceWM, Xfce4 Office OpenOffice.org 1.1.2 Office AbiWord 2.2.5 Internet Firefox 1.0.4, Thunderbird 1.0.2 Internet Firefox 1.0.4, Gaim 1.3.0 Server - Server Samba 3.0.7 Multimedia MPlayer 1.0pre6, Xmms 1.2.10 Multimedia MPlayer 1.0pre6a, Xmms 1.2.10 Game - Game - Tool Gimp 2.2.4, k3b 0.11.23, Vim 6.2 Tool Gimp 2.2.1 unia Linux sangat mem- dorong para pengguna Linux atu hal yang sudah bukan tidak perlu melakukan mount- Dbebaskan siapa saja untuk agar lebih memilih menginsta- Srahasia lagi di Linux adalah ing secara manual, karena sudah mengembangkan Linux sesuai lasi aplikasi-aplikasi Linux lang- dapat diinstalasi pada mesin- dimount secara otomatis oleh dengan keinginan pengembang- sung dari sumber paket yang mesin lemot alias yang memiliki VectorLinux. nya. Tentu saja hal tersebut de- asli, yaitu tar.gz atau tar.bz2. spesifikasi rendah. Selain itu, yang sangat pen- ngan memperhatikan lisensi. Dengan bantuan situs resmi Nah, VectorLinux 5.1 meru- ting VectorLinux 5.1 ini menyer- Dengan kebebasan tersebut, yang informatif sangat mem- pakan salah satu distro yang takan tool manajemen paket banyak hal baru di Linux. Dan bantu penggunanya, terutama menawarkan kabar gembira bagi dengan pemeriksaan dependensi salah satu contohnya adalah dis- dalam hal menginstalasi aplikasi- para pemilik komputer berspe- dengan menggunakan sistem tro unik yang satu ini.
    [Show full text]
  • SL-RAD Studio 10.4-Самый Быстрый Способ Создания
    // RAD Studio 10.4.2 // Самый быстрый способ создания кросс- // платформенных приложений с адаптивными // пользовательскими интерфейсами, // которые впечатляют на всех платформах: // Windows, macOS, iOS, Android и Linux. Copyright Embarcadero 2021, an company // RAD Studio 10.4.2 // Другие продукты Idera Idera Dev Tools Division: Delphi C++Builder RAD Studio Interbase RAD Server Copyright Embarcadero 2021, an company // RAD Studio 10.4.2 // RAD Studio – это: ● Универсальная IDE для создания ○ мультиплатформенных ■ быстродействующих ■ нативных приложений ● в Delphi и на современном C++ ● с помощью мощных визуальных инструментов проектирования и ● встроенных средств компиляции и сборки Copyright Embarcadero 2021, an company // RAD Studio 10.4.2 Быстрая разработка в визуальном режиме RAD Studio содержит мощные VCL компоненты Windows 10 и обеспечивает разработку FMX приложений для различных устройств на Windows, Mac, Linux, iOS и Android Copyright Embarcadero 2021, an company // RAD Studio 10.4.2 // Что делает RAD Studio особенным продуктом? 1. Продуктивность разработчиков – Работа на результат. Выход на рынок 5x быстрее. 2. Быстрые нативные apps - Нативная компиляция делают приложения самыми быстрыми 3. Доступ к БД – С самого начала, доступ к БД – неотъемлемая часть Delphi и C++Builder. 4. Доступ к системному API – Полный доступ к API платформ и управлению памятью. 5. Мощные библиотеки C++ - сотни C++ библиотек могут быть использованы в RAD Studio 6. Визуальные редакторы – Визуальное проектирование полностью в IDE. 7. Надежность приложений – Системы, созданные на Delphi, работают до сих пор. 8. Обширное сообщество - много Technology Partners, MVP, преподавателей и разработчиков. 9. Readability и Maintainability – Разработчики находят правильный баланс с RAD Studio. 10. Обратная совместимость– инвестиции в код не пропадают. 11. Повторное использование кода - Компонентный подход стимулирует повт.
    [Show full text]
  • Introduzione Alle Distribuzioni Linux Matteo Pani
    Introduzione alle Distribuzioni Linux Matteo Pani 22 ottobre 2016 Distribuzioni Linux "DistribuChe?" Cos’è una distribuzione Linux? Il mare magno delle distro Gestione del Software Panoramica delle più famose distro Ambienti Desktop LXDE Xfce GNOME KDE Unity Matteo Pani LinuxDay - 22 ottobre 2016 pagina 2 di 42 Distribuzioni Linux "DistribuChe?" Cos’è una distribuzione Linux? Definizione Una distribuzione (distro) Linux è un sistema operativo (SO), cioè l’insieme dei programmi di base e altri vari strumenti che permettono al computer di funzionare Matteo Pani LinuxDay - 22 ottobre 2016 pagina 3 di 42 Distribuzioni Linux "DistribuChe?" Cos’è una distribuzione Linux? Il Sistema Operativo È composto da vari componenti, come: I il bootloader I il kernel I i servizi (demoni) I la shell I server grafico I ambiente desktop (DE) Matteo Pani LinuxDay - 22 ottobre 2016 pagina 4 di 42 Distribuzioni Linux "DistribuChe?" Cos’è una distribuzione Linux? Un po’ di storia I 1984 - GNU Project (Richard Stallman) I SO libero: GNU I altri software I albori degli anni ’90 - GNU mancava ancora di un kernel I 1991 - kernel Linux (Linus Torvalds) I Linux era compatibile con GNU: nasce GNU/Linux! I serviva un modo sufficientemente pratico e automatizzato per installarlo e gestirlo: nascono le distribuzioni Matteo Pani LinuxDay - 22 ottobre 2016 pagina 5 di 42 Distribuzioni Linux "DistribuChe?" Cos’è una distribuzione Linux? (Ri)Definizione Una distribuzione (distro) Linux è un sistema operativo (SO) che usa Linux come kernel. Matteo Pani LinuxDay - 22 ottobre 2016
    [Show full text]