Filesystem Based Grid Interface

Total Page:16

File Type:pdf, Size:1020Kb

Filesystem Based Grid Interface MASARYK UNIVERSITY FACULTY}w¡¢£¤¥¦§¨ OF I !"#$%&'()+,-./012345<yA|NFORMATICS Filesystem based grid interface MASTER THESIS Bc. Martin Bukatoviˇc Brno, 2013 Declaration Hereby I declare, that this paper is my original authorial work, which I have worked out by my own. All sources, references and literature used or excerpted during elaboration of this work are properly cited and listed in complete reference to the due source. Advisor: Mgr. Miroslav Ruda iii Abstract The thesis explores the idea of grid user interface build on general filesystem abstrac- tion. Using this approach, operations such as directory listing, reading or writing files are translated to particular grid service requests (eg. job submission). Having Linux desktop user in mind, experimental project called Griddir was designed to wrap grid middleware PBS/Torque and gLite with FUSE based filesystem interface. v Keywords grid computing, Genesis II, PBS, Torque, FUSE, filesystem user interface, Linux vii Contents 1 Introduction .......................................1 2 Filesystem interfaces ..................................3 2.1 FUSE ........................................3 3 Prior Work ........................................5 3.1 Genesis II ......................................5 3.2 Stroll ........................................5 3.3 Grid-Enabled Desktop Environments (Grenade) ...............6 3.4 DropAndCompute ................................6 3.5 Others .......................................6 4 Griddir Design .....................................7 5 Griddir Implementation ................................9 6 Resume .......................................... 11 References.......................................... 11 ix Chapter 1 Introduction To have a computation processed on a grid, a grid user has to adapt it’s program to par- ticular grid platform and use specialized tools to manage the computation. This hinders adoption to those willing to learn and operate rather complex grid interfaces. With bet- ter user interface, work of domain experts designing scientific simulations or processing data from experiments could be significantly simplified. One of proposed approaches to this problem is to reuse filesystem abstraction. Such interface is represented as ordinary directory tree, but some file operations (eg. creation of a file, reading file) are binded to particular commands. The reasoning behind this idea boils down to widespread familiarity with file operations among most users. While there are several project implementing this approach, unfortunately none of them has reached widespread adoption yet. In addition considering the complexity of current grid systems and multiple possibilities of binding grid commands with filesys- tem operations, there is still large area for further research. For these reasons, the thesis summarizes current state of filesystem interfaces for grid systems and proposes new design targeted to desktop user. 1 Chapter 2 Filesystem interfaces Filesystem in userspace is a feature of OS kernel which provides ”bridging” mecha- nism so that filesystem implementation can run as ordinary user space process instead of being executed as a part of the kernel itself. This leads to considerably faster and less complex development process as well as less error prone code as serious prob- lem wouldn’t crash the whole kernel. Furthermore programmer is not limited to the kernel API and can use any userspace library as needed. The first implementation of this concept was introduced in Plan 9 operating system1 [PPT+90]. Although this OS never reached widespread adoption, it pioneered several interesting concepts which were later implemented by other established systems. Currently most widely used im- plementation is Linux FUSE [fus12b], with several ports for other Unix like operating systems [Wik12]. As far as Windows systems are concerned, there is commercial imple- mentation called Callback Filesystem (CBFS) [cbf12] and open source Dokan [dok11]. 2.1 FUSE FUSE [fus12b], which stands for filesystem in userspace, is a Linux framework pro- viding a way for filesystem to be run inside userspace process (so called filesystem daemon). Linux kernel includes FUSE support since version 2.6.14 [ker07], although version for 2.4.x kernels also exists. FUSE consists of 2 main parts: kernel module and userspace library (libfuse). The kernel module works as any other filesystem, but instead of storing filesystem data it- self, the module just provides an interface in a form of special file /dev/fuse. FUSE filesystem daemon (the process which implements filesystem and thus stores the data) uses libfuse userspace library to maintain connection with the kernel module via the special file. So when a filesystem call is performed on FUSE based filesystem, the kernel virtual filesystem (VFS) redirects the request to FUSE kernel module, which then re- sends it to filesystem daemon responsible for the filesystem. The reply from the filesys- tem daemon is send vice versa, as shown in figure 2.1. By default libfuse works in multi threaded mode. This means that for each filesystem request (eg. read(2) call), a dedi- cated thread is created to handle it. To create new FUSE based filesystem, programmer has to provide implementations 1. So called file server in Plan 9 terminology. 3 2. FILESYSTEM INTERFACES Figure 2.1: FUSE call diagram (image borrowed from FUSE website [fus12b]) of some FUSE operations which roughly match POSIX filesystem API. Some filesystem calls have it’s direct FUSE operation counterpart, eg. to define behaviour of write(2) call, FUSE operation of the same name has to be defined. On the other hand there are two operations for close(2) call: flush() handles every close(2) call for given file descriptor whereas release() is executed only for the last one. Programmer can also omit some fuse operations if they are not necessary. For instance read only FUSE filesystem doesn’t need to have defined just mentioned file closing operations. Besides primary FUSE library providing interface for the C language, wrappers for other languages such as C++, Java, Python, Ruby and many others are also available. As a result large number of FUSE based filesystems has been created for various pur- poses [fus12a]. For instance sshfs (accessing filesystem of remote machine via ssh, C language), EncFS (file encryption wrapper, C++), s3ql (access to several on-line storage services, Python), WikipediaFS (read and edit wikipedia articles, Python) or Flickrfs (filesystem interface for Flickr, Python). 4 Chapter 3 Prior Work The idea of using filesystem based interface for grid services is not completely new. On the one hand there are already several grid projects providing user interface inspired by filesystem philosophy to some extent. On the other hand since there is no natural way how to design such filesystem interface, each project uses unique design specific to particular environment. Moreover projects doesn’t directly refer to each other much. Therefore this chapter provides summary of similar projects along with description of used approach. For the purposes of this summary, a project is considered to be similar if it provides filesystem based user interface for the grid computing system with at least job submission functionality. 3.1 Genesis II The Genesis II project [gen12] was started at The University of Virginia in 2007 with the main goal to provide first grid computing platform which follows OGSA standards [MG07]. Genesis II is unique among other grid systems because filesystem interface is inte- grated to the project design from the beginning. While the main API is based on web ser- vices, the structure follows proven filesystem abstractions, which allows simple binding between filesystem operations and grid operations. 3.2 Stroll This project was started at University of Stavanger in 2010 [AM10]. Since then, the project evolved into universal grid interface supporting two different grid computing platforms [AM12]. Stroll is not a grid middleware but rather universal filesystem based grid wrapper designed to completely hide grid interface so the user doesn’t have to learn how to write code for particular grid middleware - all interactions are done via the filesys- tem interface, which can wrap several different grid systems. This approach has several benefits for the users: filesystem operations are easy automate in any programming en- vironment the user is used to, moreover it allows easier porting from one interface to another. Nevertheless users used to particular grid middleware can’t have their’s job 5 3. PRIOR WORK executed via stroll without significant rewrite. 3.3 Grid-Enabled Desktop Environments (Grenade) Grenade Project [gre04] was started at University of Manchester in 2003 as a grid desk- top integration prototype for Linux using KDE 3.x desktop environment technologies: job submission is compared to sending documents to the printer and KIO slave Kon- queror plugin is used for remote GridTFP volumes [MPH+04]. Unfortunately the project was abandoned in 2004. 3.4 DropAndCompute 3.5 Others The following projects don’t match intentions of this thesis exactly, but still provide interesting idioms: • Plan 9: The first project to push filesystem based interfaces beyond traditional UNIX approach. • UEM • XtreemFS 6 Chapter 4 Griddir Design 7 Chapter 5 Griddir Implementation 9 Chapter 6 Resume 11 References [AM10] A. Azab and H. Meling. A virtual file system interface for computational grids. Networked Services and Applications-Engineering, Control and Management, pages 87–96, 2010. [AM12] A. Azab and H. Meling.
Recommended publications
  • High Velocity Kernel File Systems with Bento
    High Velocity Kernel File Systems with Bento Samantha Miller, Kaiyuan Zhang, Mengqi Chen, and Ryan Jennings, University of Washington; Ang Chen, Rice University; Danyang Zhuo, Duke University; Thomas Anderson, University of Washington https://www.usenix.org/conference/fast21/presentation/miller This paper is included in the Proceedings of the 19th USENIX Conference on File and Storage Technologies. February 23–25, 2021 978-1-939133-20-5 Open access to the Proceedings of the 19th USENIX Conference on File and Storage Technologies is sponsored by USENIX. High Velocity Kernel File Systems with Bento Samantha Miller Kaiyuan Zhang Mengqi Chen Ryan Jennings Ang Chen‡ Danyang Zhuo† Thomas Anderson University of Washington †Duke University ‡Rice University Abstract kernel-level debuggers and kernel testing frameworks makes this worse. The restricted and different kernel programming High development velocity is critical for modern systems. environment also limits the number of trained developers. This is especially true for Linux file systems which are seeing Finally, upgrading a kernel module requires either rebooting increased pressure from new storage devices and new demands the machine or restarting the relevant module, either way on storage systems. However, high velocity Linux kernel rendering the machine unavailable during the upgrade. In the development is challenging due to the ease of introducing cloud setting, this forces kernel upgrades to be batched to meet bugs, the difficulty of testing and debugging, and the lack of cloud-level availability goals. support for redeployment without service disruption. Existing Slow development cycles are a particular problem for file approaches to high-velocity development of file systems for systems.
    [Show full text]
  • Comparison of Kernel and User Space File Systems
    Comparison of kernel and user space file systems — Bachelor Thesis — Arbeitsbereich Wissenschaftliches Rechnen Fachbereich Informatik Fakultät für Mathematik, Informatik und Naturwissenschaften Universität Hamburg Vorgelegt von: Kira Isabel Duwe E-Mail-Adresse: [email protected] Matrikelnummer: 6225091 Studiengang: Informatik Erstgutachter: Professor Dr. Thomas Ludwig Zweitgutachter: Professor Dr. Norbert Ritter Betreuer: Michael Kuhn Hamburg, den 28. August 2014 Abstract A file system is part of the operating system and defines an interface between OS and the computer’s storage devices. It is used to control how the computer names, stores and basically organises the files and directories. Due to many different requirements, such as efficient usage of the storage, a grand variety of approaches arose. The most important ones are running in the kernel as this has been the only way for a long time. In 1994, developers came up with an idea which would allow mounting a file system in the user space. The FUSE (Filesystem in Userspace) project was started in 2004 and implemented in the Linux kernel by 2005. This provides the opportunity for a user to write an own file system without editing the kernel code and therefore avoid licence problems. Additionally, FUSE offers a stable library interface. It is originally implemented as a loadable kernel module. Due to its design, all operations have to pass through the kernel multiple times. The additional data transfer and the context switches are causing some overhead which will be analysed in this thesis. So, there will be a basic overview about on how exactly a file system operation takes place and which mount options for a FUSE-based system result in a better performance.
    [Show full text]
  • Software Defined Storage Overview
    Software Defined Storage Overview August 2019 Juan Jose Floristan Cloud Specialist Solution Architect 1 AGENDA 1. Why Red Hat Storage? 2. Red Hat Ceph Storage 3. Red Hat Gluster Storage 4. Red Hat Openshift Container Storage 2 Why Red Hat Storage? 3 Why Red Hat Storage? STORAGE IS EVOLVING TRADITIONAL STORAGE OPEN, SOFTWARE-DEFINED STORAGE Complex proprietary silos Standardized, unified, open platforms USER USER USER USER ADMIN Control Plane (API, GUI) ADMIN ADMIN ADMIN Software Ceph Gluster +++ Open Source Custom GUI Custom GUI Custom GUI Proprietary Hardware Proprietary Hardware Proprietary Hardware Standard Computers and Disks Proprietary Proprietary Proprietary Standard Hardware Software Software Software 4 Why Red Hat Storage? WHY THIS MATTERS PROPRIETARY Common, Lower cost, standardized supply chain HARDWARE off-the-shelf hardware SCALE-UP Scale-out Increased operational flexibility ARCHITECTURE architecture HARDWARE-BASED Software-based More programmability, agility, INTELLIGENCE intelligence and control CLOSED DEVELOPMENT Open development More flexible, well-integrated PROCESS process technology 5 Why Red Hat Storage? A RISING TIDE Software-Defined Storage is leading SDS-P MARKET SIZE BY SEGMENT $1,395M a shift in the global storage industry, Block Storage File Storage $1,195M with far-reaching effects. Object Storage $1,029M Hyperconverged “By 2020, between 70%-80% of unstructured $859M data will be held on lower-cost storage managed $705M $592M by SDS.” $475M Innovation Insight: Separating Hype From Hope for Software-Defined Storage “By 2019, 70% of existing storage array products will also be available as software-only versions.” 2013 2014 2015 2016 2017 2018 Innovation Insight: Separating Hype From Hope for Software-Defined Storage 2019 Source: IDC 6 Why Red Hat Storage? THE RED HAT STORAGE MISSION To offer a unified, open software-defined storage portfolio that delivers a range of data services for next generation workloads, thereby accelerating the transition to modern IT infrastructures.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Lamassu: Storage-Efficient Host-Side Encryption
    Lamassu: Storage-Efficient Host-Side Encryption Peter Shah and Won So NetApp Inc. Abstract moves downstream through the stack. This strategy can Many storage customers are adopting encryption solu- take many forms, such as built-in application encryption, tions to protect critical data. Most existing encryption OS-based file system encryption or VM-level encryp- solutions sit in, or near, the application that is the source tion [3, 19, 22]. We term any encryption that runs on of critical data, upstream of the primary storage system. the same physical hardware as the primary application Placing encryption near the source ensures that data re- data-source encryption. mains encrypted throughout the storage stack, making it In general, existing data-source encryption solutions easier to use untrusted storage, such as public clouds. interfere with content-driven data management features Unfortunately, such a strategy also prevents down- provided by storage systems — in particular, deduplica- stream storage systems from applying content-based fea- tion. If a storage controller does not have access to the tures, such as deduplication, to the data. In this paper, we keys used to secure data, it cannot compare the contents present Lamassu, an encryption solution that uses block- of encrypted data to determine which sections, if any, are oriented, host-based, convergent encryption to secure duplicates. data, while preserving storage-based data deduplication. In this paper, we present an alternative encryption Unlike past convergent encryption systems, which typi- strategy that provides the benefits of upstream encryp- cally store encryption metadata in a dedicated store, our tion while preserving storage-based data deduplication system transparently inserts its metadata into each file’s on downstream storage.
    [Show full text]
  • D3.5 Design and Implementation of P2P Infrastructure
    INNOVATION ACTION H2020 GRANT AGREEMENT NUMBER: 825171 WP3 – Vision Materialisation and Technical Infrastructure D3.5 – Design and implementation of P2P infrastructure Document Info Contractual Delivery Date: 31/12/2019 Actual Delivery Date: 31/12/2019 Responsible Beneficiary: INOV Contributing Beneficiaries: UoG Dissemination Level: Public Version: 1.0 Type: Final This project has received funding from the European Union’s H2020 research and innovation programme under the grant agreement No 825171 ` DOCUMENT INFORMATION Document ID: D3.5: Design and implementation of P2P infrastructure Version Date: 31/12/2019 Total Number of Pages: 36 Abstract: This deliverable describes the EUNOMIA P2P infrastructure, its design, the EUNOMIA P2P APIs and a first implementation of the P2P infrastructure and the corresponding APIs made available for the remaining EUNOMIA modules to start integration (for the 1st phase). Keywords: P2P design, P2P infrastructure, IPFS AUTHORS Full Name Beneficiary / Organisation Role INOV INESC INOVAÇÃO INOV Overall Editor University of Greenwich UoG Contributor REVIEWERS Full Name Beneficiary / Organisation Date University of Nicosia UNIC 23/12/2019 VERSION HISTORY Version Date Comments 0.1 13/12/2019 First internal draft 0.6 22/12/2019 Complete draft for review 0.8 29/12/2019 Final draft following review 1.0 31/12/2019 Final version to be released to the EC Type of deliverable PUBLIC Page | ii H2020 Grant Agreement Number: 825171 Document ID: WP3 / D3.5 EXECUTIVE SUMMARY This deliverable describes the P2P infrastructure that has been implemented during the first phase of the EUNOMIA to provide decentralized support for storage, communication and security functions. It starts with a review of the main existing P2P technologies, where each one is analysed and a selection of candidates are selected to be used in the project.
    [Show full text]
  • Performance and Extension of User Space File Introduction (1 of 2) Introduction (2 of 2) Introduction
    4/15/2014 Introduction (1 of 2) Performance and Extension of • Developing in-kernel file systems challenging User Space File – Understand and deal with kernel code and data structures – Steep learning curve for kernel development Aditya Raigarhia and Ashish Gehani • No memory protection Stanford and SRI • No use of debuggers • Must be in C • No standard C library • ACM Symposium on Applied Computing (SAC) In-kernel implementations not so great Sierre, Switzerland, March 22-26, 2010 – Porting to other flavors of Unix can be difficult – Needs root to mount – tough to use/test on servers Introduction (2 of 2) Introduction - FUSE • • Modern file system research adds functionality File system in USEr space (FUSE) – framework for Unix- like OSes over basic systems, rather than designing low- • level systems Allows non-root users to develop file systems in user space – Ceph [37] – distributed file system for performance • and reliability – uses client in users space API for interface with kernel, using fs-type operations • • Programming in user space advantages Many different programming language bindings • FUSE file systems can be mounted by non-root users – Wide range of languages • Can compile without re-compiling kernel – Use of 3 rd party tools/libraries • – Fewer kernel quirks (although still need to couple user Examples code to kernel system calls) – WikipediaFS [2] lets users view/edit Wikipedia articles as if local files – SSHFS access via SFTP protocol 1 4/15/2014 Problem Statement Outline • Prevailing view – user space file systems
    [Show full text]
  • Encrypted File System Based on Distributed Key-Value Stores and FUSE
    International Journal of Network Security & Its Applications (IJNSA) Vol.11, No.2, March 2019 KVEFS: Encrypted File System based on Distributed Key-Value Stores and FUSE Giau Ho Kim, Son Hai Le, Trung Manh Nguyen, Vu Thi Ly, Thanh Nguyen Kim, Nguyen Van Cuong, Thanh Nguyen Trung, and Ta Minh Thanh Le Quy Don Technical University No 236 Hoang Quoc Viet Street , Hanoi, Vietnam [email protected] Abstract. File System is an important component of a secure operating system. The need to build data protection systems is extremely important in open source operating systems, high mobility hardware systems, and miniaturization of storage devices that make systems available. It is clear that the value of the data is much larger than the value of the storage device. Computers access protection mechanism does not work if the thief retrieves the hard drive from the computer and reads data from it on another computer. Encrypted File System (EFS) is a secure level of operating system kernel. EFS uses cryptography to encrypt or decrypt files and folders when they are being saved or retrieved from a hard disk. EFS is often integrated transparently in operating system There are many encrypted filesystems commonly used in Linux operating systems. However, they have some limitations, which are the inability to hide the structure of the file system. This is a shortcoming targeted by the attacker, who will try to decrypt a file to find the key and then decrypt the entire file system. In this paper, we propose a new architecture of EFS called KVEFS which is based on cryptographic algorithms, FUSE library and key-value store.
    [Show full text]
  • The Evolution of File Systems
    The Evolution of File Systems Thomas Rivera, Hitachi Data Systems Craig Harmer, April 2011 SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individuals may use this material in presentations and literature under the following conditions: Any slide or slides used must be reproduced without modification The SNIA must be acknowledged as source of any material used in the body of any document containing material from these presentations. This presentation is a project of the SNIA Education Committee. Neither the Author nor the Presenter is an attorney and nothing in this presentation is intended to be nor should be construed as legal advice or opinion. If you need legal advice or legal opinion please contact an attorney. The information presented herein represents the Author's personal opinion and current understanding of the issues involved. The Author, the Presenter, and the SNIA do not assume any responsibility or liability for damages arising out of any reliance on or use of this information. NO WARRANTIES, EXPRESS OR IMPLIED. USE AT YOUR OWN RISK. The Evolution of File Systems 2 © 2012 Storage Networking Industry Association. All Rights Reserved. 2 Abstract The File Systems Evolution Over time additional file systems appeared focusing on specialized requirements such as: data sharing, remote file access, distributed file access, parallel files access, HPC, archiving, security, etc. Due to the dramatic growth of unstructured data, files as the basic units for data containers are morphing into file objects, providing more semantics and feature- rich capabilities for content processing This presentation will: Categorize and explain the basic principles of currently available file system architectures (e.g.
    [Show full text]
  • Refuse: Userspace FUSE Reimplementation Using Puffs
    ReFUSE: Userspace FUSE Reimplementation Using puffs Antti Kantee Alistair Crooks Helsinki University of Technology The NetBSD Foundation [email protected].fi [email protected] Abstract for using Gmail as a file system storage backend and FUSEPod [5] which facilitaties iPod access and man- In an increasingly diverse and splintered world, agement. interoperability rules. The ability to leverage code Userspace file systems operate by attaching an in- written for another platform means more time and re- kernel file system to the kernel’s virtual file system sources for doing new and exciting research instead layer, vfs [17]. This component transforms incoming of reinventing the wheel. Interoperability requires requests into a form suitable for delivery to userspace, standards, and as the saying goes, the best part of sends the request to userspace, waits for a response, standards is that everyone can have their own. How- interprets the result and feeds it back to caller in the ever, in the userspace file system world, the Linux- kernel. The kernel file system calling conventions originated FUSE is the clear yardstick. dictate how to interface with the virtual file system In this paper we present ReFUSE, a userspace layer, but other than that the userspace file systems implementation of the FUSE interface on top of the framework is free to decide how to operate and what NetBSD native puffs (Pass-to-Userspace Framework kind of interface to provide to userspace. File System) userspace file systems framework. We While extending the operating system to userspace argue that an additional layer of indirection is the is not a new idea [12, 21], the FUSE [2] userspace right solution here, as it allows for a more natural file systems interface is the first to become a veri- export of the kernel file system interface instead of table standard.
    [Show full text]
  • How High School Students Can Write a Filesystem Prototype
    ALMA MATER STUDIORUM · UNIVERSITÀ DI BOLOGNA Scuola di Scienze Corso di Laurea in Informatica TgFuseFs: How High School Students Can Write a Filesystem Prototype Tesi di laurea Relatore: Presentata da: Chiar.mo Prof. Riccardo Maffei Renzo Davoli Correlatori: Dott. Marco Sbaraglia Dott. Michael Lodi Sessione III Anno Accademico 2018-2019 Information about licenses and credits can be found in AppendixA. ii To those I love and those who love me... iii iv Abstract Italian high school students who are majoring in Computer Science usually study subjects like programming, databases, networks, system engineering, electronics and operating systems. While most of these subjects let the stu- dents practice with projects, operating systems usually is taught in a more the- oretical way because practical projects either are too simple to be didactically useful or require too many prerequisites. Hence, components like filesystems are only studied in theory from an high level point of view. We think that building a filesystem prototype could be considered active learn- ing and could improve the operating systems learning experience. For this reason in this work we will show how fifth year students with very few pre- requisites can build their first working prototype of a remote filesystem in userspace using Python, FUSE and Telegram. Since the activity is designed for high school students, the prototype won’t be perfect but we will present some of the issues that students should be aware of and more advanced students should address. v vi Contents Introduction1 1 General Concepts3 1.1 Requirements...............................3 1.2 Python...................................4 1.2.1 asyncio ..............................4 1.3 FUSE and libfuse ............................8 1.3.1 pyfuse3 .............................
    [Show full text]
  • Linux Kernel Series
    Linux Kernel Series By Devyn Collier Johnson More Linux Related Stuff on: http://www.linux.org Linux Kernel – The Series by Devyn Collier Johnson (DevynCJohnson) [email protected] Introduction In 1991, a Finnish student named Linus Benedict Torvalds made the kernel of a now popular operating system. He released Linux version 0.01 on September 1991, and on February 1992, he licensed the kernel under the GPL license. The GNU General Public License (GPL) allows people to use, own, modify, and distribute the source code legally and free of charge. This permits the kernel to become very popular because anyone may download it for free. Now that anyone can make their own kernel, it may be helpful to know how to obtain, edit, configure, compile, and install the Linux kernel. A kernel is the core of an operating system. The operating system is all of the programs that manages the hardware and allows users to run applications on a computer. The kernel controls the hardware and applications. Applications do not communicate with the hardware directly, instead they go to the kernel. In summary, software runs on the kernel and the kernel operates the hardware. Without a kernel, a computer is a useless object. There are many reasons for a user to want to make their own kernel. Many users may want to make a kernel that only contains the code needed to run on their system. For instance, my kernel contains drivers for FireWire devices, but my computer lacks these ports. When the system boots up, time and RAM space is wasted on drivers for devices that my system does not have installed.
    [Show full text]