Vi bøger
Levering: 1 - 2 hverdage

Bøger af Richard Petersen

Filter
Filter
Sorter efterSorter Populære
  • - Applications and Administration
    af Richard Petersen
    373,95 kr.

  • - Applications and Administration
    af Richard Petersen
    462,95 kr.

    This book covers the Ubuntu 18.04 LTS (Bionic Beaver) release, focusing on applications and administrative tools. The emphasis here is on what users will face when using Ubuntu, covering topics like installation, applications, software management, the Ubuntu desktops (GNOME and KDE), shell commands, network connections, and system administration tasks. There are four parts: Getting Started, Applications, Desktops, and Administration. Part 1 focuses on getting started, covering Ubuntu information and resources, using Ubuntu Live DVD/USB discs, installing and setting up Ubuntu, upgrading Ubuntu, basic use of the desktop interface, and connecting to wired and wireless networks. Ubuntu Software and Synaptic Package manager, which provides easy and effective software management, are both discussed. Part 2 keys in on office, multimedia, mail, Internet, and social media applications. Part 3 covers the Ubuntu, Kubuntu, Ubuntu MATE, Ubuntu Cinnamon, Xubuntu, and Lubuntu desktops. as well as the BASH shell. The Ubuntu desktop with the GNOME interface is examined in detail. Ubuntu GNOME uses a Dock and a Dash (dashboard) to manage access to applications and devices. Part 4 deals with administration topics, first discussing system tools like the GNOME system monitor, the Disk Usage Analyzer, and Disk Utility (Udisks). Then a detailed chapter on Ubuntu system administration tools is presented, covering tasks such as managing users and file systems, Bluetooth setup, network folder sharing, backups, and printing. The network connections chapter covers a variety of network tasks, including manual configuration of wired and wireless connections, and firewalls (the Gufw and FirewallD).

  • - Ein Lebensbild
    af Richard Petersen
    327,95 - 487,95 kr.

    This work has been selected by scholars as being culturally important, and is part of the knowledge base of civilization as we know it.This work is in the "public domain in the United States of America, and possibly other nations. Within the United States, you may freely copy and distribute this work, as no entity (individual or corporate) has a copyright on the body of the work.Scholars believe, and we concur, that this work is important enough to be preserved, reproduced, and made generally available to the public. We appreciate your support of the preservation process, and thank you for being an important part of keeping this knowledge alive and relevant.

  • - Et Kristeligt Levnedslob
    af Richard Petersen
    223,95 kr.

    This is a reproduction of a book published before 1923. This book may have occasional imperfections such as missing or blurred pages, poor pictures, errant marks, etc. that were either part of the original artifact, or were introduced by the scanning process. We believe this work is culturally important, and despite the imperfections, have elected to bring it back into print as part of our continuing commitment to the preservation of printed works worldwide. We appreciate your understanding of the imperfections in the preservation process, and hope you enjoy this valuable book.

  • af Richard Petersen
    252,95 - 389,95 kr.

    This scarce antiquarian book is a facsimile reprint of the original. Due to its age, it may contain imperfections such as marks, notations, marginalia and flawed pages. Because we believe this work is culturally important, we have made it available as part of our commitment for protecting, preserving, and promoting the world's literature in affordable, high quality, modern editions that are true to the original work.

  • af Richard Petersen
    252,95 kr.

    Johan Kaspar Lavaters LIV (1903) af Petersen, Richard er en biografi om den schweiziske pr�����st, filosof og forfatter, Johan Kaspar Lavater. Bogen udforsker Lavaters liv fra hans f������dsel i 1741 til hans d������d i 1801 og beskriver hans betydning for filosofi og teologi i perioden. Bogen giver ogs������ et indblik i Lavaters personlige liv og hans relationer til andre intellektuelle og kunstnere i hans tid. Petersen bruger prim�����rt prim�����re kilder og Lavaters egne v�����rker til at skildre hans liv og filosofi. Bogen er skrevet p������ dansk og er velegnet til l�����sere, der er interesserede i europ�����isk filosofi og teologi i det 18. ������rhundrede.This scarce antiquarian book is a facsimile reprint of the old original and may contain some imperfections such as library marks and notations. Because we believe this work is culturally important, we have made it available as part of our commitment for protecting, preserving, and promoting the world's literature in affordable, high quality, modern editions, that are true to their original work.

  • - Et Levnedslob...
    af Richard Petersen
    280,95 kr.

    This is a reproduction of a book published before 1923. This book may have occasional imperfections such as missing or blurred pages, poor pictures, errant marks, etc. that were either part of the original artifact, or were introduced by the scanning process. We believe this work is culturally important, and despite the imperfections, have elected to bring it back into print as part of our continuing commitment to the preservation of printed works worldwide. We appreciate your understanding of the imperfections in the preservation process, and hope you enjoy this valuable book. ++++ The below data was compiled from various identification fields in the bibliographic record of this title. This data is provided as an additional tool in helping to ensure edition identification: ++++ Frederik Barfod: Et LevnedslOb Richard Petersen K. SchOnberg, 1897

  • af Richard Petersen
    205,95 kr.

    This is a reproduction of a book published before 1923. This book may have occasional imperfections such as missing or blurred pages, poor pictures, errant marks, etc. that were either part of the original artifact, or were introduced by the scanning process. We believe this work is culturally important, and despite the imperfections, have elected to bring it back into print as part of our continuing commitment to the preservation of printed works worldwide. We appreciate your understanding of the imperfections in the preservation process, and hope you enjoy this valuable book.

  • af Richard Petersen
    617,95 kr.

    C differs from most programming languages in its use of expressions, pointers, and arrays. For those learning C, pointers are the greatest source of confusion. The primary aim of this text is to provide working models of how pointers are used in C as well as an introduction to their use in C++. Most beginners falter on the use of pointers. Many try to avoid pointers completely, but quickly find that pointers are used extensively throughout C programs. Some attain a partial understanding of pointers which, at first, gets them by. However, when faced with complex programming tasks, they find that pointers become a necessity. In most programming languages one learns about pointers only after most other topics have been discussed. Pointers are just one more added feature of the language. In C and in C++, however, pointers are used with every feature. There are pointers to variables, pointers as parameters, pointers as arrays, pointers to structures, and even pointers to pointers. With each feature pointers are used differently. The way pointers work with variables is very different from the way pointers work with arrays. In this text, you learn pointers as you learn each feature of the language. With variables, you learn pointers to variables; with parameters, pointers to parameters; with functions: pointers to functions; with arrays, pointers in arrays; with structures, pointers to structures. In addition, for C++ you will learn pointers to objects, to class members, and derived objects. Such an approach provides an understanding of the many different ways pointers are used throughout the language. The text is arranged in five sections. The first section focuses on the basic structure of the language. Variables, functions, and expressions are carefully examined. The second section deals with arrays. Arrays form an exception in C. Unlike structures they are not data objects. They are completely managed by pointers. The third section describes data structures and file management. The chapter on data structures introduces basic concepts such as linked lists and trees. A special examination is made of recursion and how it operates with lists, trees, and b-trees. The chapters on file management discuss the different types of files with special emphasis on record files b-tree indexes. The fourth section provides an introduction to C++, covering classes and objects, their use with pointers, as well as operator overloading and inheritance. The fifth section covers additional topics greater detail such as the pre-processor and bitwise operations.

  • af Richard Petersen
    547,95 kr.

    This book is designed as an Ubuntu 22.04 LTS Server administration and reference source, covering the Ubuntu servers and their support applications. Server tools are covered as well as the underlying configuration files and system implementations. The emphasis is on what administrators will need to know to perform key server support and management tasks. Coverage of the systemd service management system is integrated into the book. Topics covered include software management, systemd service management, AppArmor security, OpenSSH, the Chrony time server, and Ubuntu cloud services. Key servers are examined, including Web, FTP, CUPS printing, NFS, and Samba Windows shares. Network support servers and applications covered include the Squid proxy server, the Domain Name System (BIND) server, DHCP, distributed network file systems, nftables firewalls, and cloud computing.The book is organized into five parts: getting started, services, shared resources, network support, and shells.Part 1 focuses on basic tasks such as installing the Ubuntu Live Server, configuring networking with Netplan, systemd-networkd, and NetworkManager, managing software from the Ubuntu Snap and APT repositories, and basic usage for the desktop and the command line interfaces. Part 2 examines Internet servers as well as how services are managed by systemd using unit files. Configuration and implementation of the Postfix mail server, the vsftpd FTP server, the Apache Web server, as well as news and database servers are covered in detail.Part 3 deals with servers that provide shared resources on a local network or the Internet. Services examined include the CUPS printing server, NFS Linux network file server, and Samba Windows file and printing server, clustering, and cloud computing services supported by Ubuntu.Part 4 covers servers that provide network support, like the Squid proxy server, the Bind Domain Name System (DNS) server, DHCP servers, and the nftables firewall along with the configuration firewall tools FirewallD and UFW. Key networking operations are also examined like IPv6 auto-configuration, TPC/IP networking, and network monitoring tools.Part 5 provides a review of shell commands, including those used for managing files, as well as shell scripts, variables, and configuration files. The Ubuntu Live Server only installs a command line interface, with no desktop. To manage your system and its files you will have to know the shell commands.

  • af Richard Petersen
    522,95 kr.

    This book covers the Ubuntu 22.04 LTS (Jammy Jellyfish) release, focusing on applications and administrative tools. The emphasis here is on what users will face when using Ubuntu, covering topics like installation, applications, software management for Snap and APT, the Ubuntu desktops (GNOME, MATE, and KDE), shell commands, network connections, and system administration tasks. There are four parts: Getting Started, Applications, Desktops, and Administration. Part 1 focuses on getting started, covering Ubuntu information and resources, using the Ubuntu Live DVD/USB drive, installing and setting up Ubuntu, upgrading Ubuntu, basic use of the desktop interface, and connecting to wired and wireless networks. Repositories and their use are covered in detail, along with the new Snap system for managing Snap packages. Ubuntu Snap package management with Ubuntu Software, the snap command, the Snap Store are examined, as well as APT package management with Gnome Software, the Synaptic Package Manager, and the apt and apt-get commands.Part 2 keys in on office, multimedia, mail, Internet, and social media applications. Part 3 covers the Ubuntu, Kubuntu, Ubuntu MATE, Xubuntu, and Lubuntu desktops. as well as the BASH shell. The Ubuntu desktop, which uses GNOME, is examined in detail. Part 4 deals with administration topics, first discussing system tools like the GNOME system monitor, the Disk Usage Analyzer, Seahorse, and Disk Utility. Then a detailed chapter on Ubuntu system administration tools is presented, covering tasks such as managing users and file systems, Bluetooth setup, network folder sharing, backups, and printing. The network connections chapter covers a variety of network tasks, including manual configuration of wired and wireless connections, and firewalls.

  • af Richard Petersen
    46,95 kr.

    Den danske præst og forfatter Richard Petersen deler ud af minder fra sin barndom i København, hvor han voksede op i en rummelig lejlighed med sin store familie ved Vesterport. Bogen byder på en række spændende beskrivelser af København, som det så ud i 1800-tallet, og både sjove og skræmmende minder fra ungdomslivet som præstestuderende.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    467,95 kr.

  • af Richard Petersen
    63,94 kr.

    Richard Petersens bog fra 1888 kigger hundrede år tilbage i tiden og laver et tværsnit over livet i Danmark i år 1788. Bogen lægger ikke vægt på bestemte begivenheder, men dykker ned i hverdagslivet hos de forskellige klasser og befolkningsgrupper, fortæller om selskabsliv og fritidsaktiviteter som udflugter og spadsereture, om tidsånden og de spirende nye tendenser, om kulturliv i form af poesi og teater samt om livet på universitetet, på gymnasiet og i skolen.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    93,95 kr.

    Historien om den store salmedigter og biskop over Fyn, Thomas Kingo, er en historie om, hvordan det selv i 1600-tallet var muligt ved flid, klogskab og held at hæve sig fra de laveste klasser og op til de øverste trin på rangstigen. Richard Petersens biografi om Thomas Kingo handler om opvæksten i små kår som væversøn i Slangerup i Nordsjælland og om den unge drengs store evner, som skaffede ham en studieplads ved universitetet i København, hvor pesten ved hans ankomst netop var brudt ud. Den handler desuden om, hvordan håndværkersønnen steg og steg i graderne, om det danske samfund, som det så ud i det 17. århundrede, og om de mange historiske personer, han mødte på sin vej.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    517,95 kr.

  • af Richard Petersen
    74,95 kr.

    Den danske præst og historiker Richard Petersen fortæller i bogen her fra 1890 om et af sine største forbilleder inden for den gejstlige verden. Den tyske forfatter Johann Heinrich Jung (1740-1817), som skrev under pseudonymet Heinrich Stilling, var en nær ven af Johann Wolfgang von Goethe, og hans bøger giver på smuk og ligefrem vis udtryk for den pietisme, som han blev kendt for i både sit hjemland og i resten af Europa. Richard Petersens beretning om Jung-Stillings liv og syn på kristendommen er en varm og hjertelig skildring af den store mand og dennes tanker om menneskets forhold til Gud og religion.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    74,95 kr.

    B.S. Ingemann er en af Danmarks fineste forfattere, og hans eventyrlige historier og skønne sprog har længe været en fornøjelse for både store og små læsere. I anledning af hundredåret for den store eventyrdigters fødselsdag udgav Richard Petersen en biografi om ham, som henvender sig til lægmand og ikke blot de litterære spidser. Bogen omhandler B.S. Ingemanns barndom og ungdom, hans dramatiske værker, udlandsrejser og den inspiration, hans bragte med sig hjem, samt hans spændende virke som forfatter.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    93,95 kr.

    Den dansk-norske naturfilosof Henrik Steffens (1773-1845) kan tage en stor del af æren for opblomstringen af romantikken, der i Danmark bliver kaldt guldalderen. Som så mange andre af den romantiske skole var han dybt fascineret af den franske revolution i 1789, der gav folk en forestilling om, at alt pludselig var muligt. Richard Petersen fortæller i bogen her fra 1881 om den store naturfilosofs dannelsesår på universitetet, hvordan han begyndte at gøre sig sine egne tanker om verden samt hans samspil med andre store filosoffer og tidens berømte kunstnere og digtere.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    74,95 kr.

    Den svenske forfatter Fredrika Bremer har både igennem sine talrige værker og sin insisteren på at leve et frit og begivenhedsrigt liv været en drivkraft og et forbillede i kvindekampen i Skandinavien i det 19. århundrede. Richard Petersens biografi om Fredrika Bremer fortæller om hendes virke som forfatter og de provokerende og dog suveræne værker, som hun stod på mål for. Bogen beskriver hendes mange rejser rundt i Europa, Palæstina og Nordamerika, hvor hun stiftede bekendtskab med nogle af tidens største tænkere og forfattere, samt hendes nyskabende tanker om en form for religion, der kan forene de forskellige grene af kristendommen og samtidig gøre plads til Sokrates, Buddha og andre store tænkere, som den traditionelle kristendom ikke havde noget til overs for.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • af Richard Petersen
    92,95 kr.

    Den tyske journalist og digter Matthias Claudius (1740-1815) var kendt for sine følsomme digte, der var skrevet i et mere jordnært og letforståeligt sprog, end digterne traditionelt havde brugt. Richard Petersens bog handler om den store digters spændende liv, men også om de historiske personer, han omgav sig med, som for eksempel digterne Johann Gottfried Herder og Gotthold Ephraim Lessing. Petersen fortæller desuden om Matthias Claudius’ oplevelser af den franske revolution i 1789, hans tid i København og virket som digter.Richard Petersen (1838-1905) var en dansk præst, forfatter og historiker, der udgav en lang række bøger om store skikkelser inden for litteraturens verden, kristendommen og historien. Richard Petersen var grundtvigianer, hvilket tydeligt kommer til udtryk i hans forfatterskab. Han er særligt kendt for sine biografier om Henrik Steffens, Frederik Barfoed, B.S. Ingemann og Jung-Stilling.

  • - Administration and Reference
    af Richard Petersen
    452,95 kr.

  • - Desktops and Administration
    af Richard Petersen
    423,95 kr.

  • - : Administration and Reference
    af Richard Petersen
    412,95 kr.

  • - Fedora 28 Edition
    af Richard Petersen
    504,95 kr.

    The major Fedora 28 desktop spins are covered in detail, including the Plasma desktop (KDE), Cinnamon, Mate-Compiz, LXDE, Xfce, and LXQT. This is your complete guide to using the Fedora 28 Desktop Linux release as your daily driver for multimedia, productivity, social networking, administrative tasks, and more.

Gør som tusindvis af andre bogelskere

Tilmeld dig nyhedsbrevet og få gode tilbud og inspiration til din næste læsning.