Arch Linux Installation

Total Page:16

File Type:pdf, Size:1020Kb

Arch Linux Installation (DELL)ARCH LINUX INSTALLATION INFORMATION Current installed version archlinux-2014.05.01, Arch Linux is also run on the Raspberry Pi:s but way easier to install. Check out the Raspberry Pi installation document for that. Text in Bold Courier New is either something on the screen you’ll see in text or something you should type in. This guide is mainly for the Dell Dimension 9200 we use in the room, but everything could be adapted to your own computer. Just check your hard drive space and which driver you should use for your graphic card. DOWNLOAD Get latest version from: https://www.archlinux.org/download/ Create a bootable USB drive, recommended program for that is USBWriter, since it’s just to open USBWrite, chose the .iso-file (the file you downloaded from Arch Linux’s site) and see that you have the USB plugged in and that the program finds it, then click Start. Easy as pie. http://sourceforge.net/projects/usbwriter/ Keyboard Arch Linux will have the English layout so here’s a picture in case you need it. There’s also a way of temporary switching the keyboard layout but not going to bring that up here. (DELL)ARCH LINUX INSTALLATION INSTALLATION Now that you have your USB ready, plug it in and let’s boot and install Arch Linux. You should get something like the picture below, choose “Boot Arch Linux (x86_64)”. If you don’t get it your boot order settings are most likely not set to have USB drive boot first (pressing F12 during boot will get you a boot order list, or F2 to go into BIOS settings, F12 usually works and there you can select USB Device). Hard drive setup 1. Okay let’s start with the hard drive setup, start with typing: 2. cgdisk /dev/sda a. If the disk doesn’t have free space only, chose one of the partitions at a time and select Delete. When you’re left with 1 partition with “(free space)” chose Write and type yes to the question. Once you have free space go to the next step. 3. Now you should have 1 disk with ~149GB of free space. Now we’ll setup the boot partition. The steps below will be listed like questions on your screen “First sector…” -> press Enter, means just press enter when this shows up. And when it says “type: 1007KiB”, you type “1007KiB”and not “1007” and so on. Just take it slow and follow this guide word by word and you shouldn’t have any problems! 4. The disk should already be selected since it’s the only disk, now let’s create the boot: a. Select New and press Enter. b. First sector -> press Enter c. Size in sector -> type: 1007KiB -> press Enter d. Hex Code of GUID… ->type: ef02 -> press Enter e. Enter a partition name -> press Enter (DELL)ARCH LINUX INSTALLATION 5. Create the root a. Select the free space (the big “free space”), then… b. Select New and press Enter c. First sector -> press Enter d. Size in sector -> type: 20GB -> press Enter (20GB is for the root catalogue) e. Hex Code of GUID -> press Enter f. Enter partition name -> press Enter 6. Creating the swap a. Select free space (the big “free space”), then… b. Select New and press Enter c. First sector -> press Enter d. Size in sector -> type: 2GB -> press Enter (Or if you want larger, go ahead) e. Hex Code of GUID -> press Enter f. Enter partition name -> type: swap -> press Enter 7. Creating the home a. Select free space (the big “free space”), then b. Select New and press Enter c. First sector -> press Enter d. Size in sector -> type: 120GB -> press Enter (or the leftovers) e. Hex Code of GUID -> press Enter f. Enter partition name -> type: home -> press Enter 8. Select Write which will ask you to confirm the changes. Type: yes and when it’s done, select Quit. 9. If you want to see the structure type: lsblk, but we should have at least have 4 parts of sda, where: a. sda1 – (BIOS Boot) b. sda2 – (ROOT) c. sda3 – (SWAP) d. sda4 – (HOME) File system setup Now we’re going to format the partitions for an ext4 file system 1. ROOT and HOME a. mkfs.ext4 /dev/sda2 b. mkfs.ext4 /dev/sda4 2. SWAP a. mkswap /dev/sda3 b. swapon /dev/sda3 3. Type: lsblk /dev/sda to see if changes are correct. (DELL)ARCH LINUX INSTALLATION Base system installation Now we’ll need to mount root and then create the home directory. 1. mount /dev/sda2 /mnt 2. mkdir /mnt/home 3. mount /dev/sda4 /mnt/home Edit the mirror list If you’re lucky you might have to skip this, but that’s no way to solve a problem. So open up the mirror list file: nano /etc/pacman.d/mirrorlist and you’ll find tons of servers. You can pick any HIGH scored server you’d like, but I picked the Swedish one at the time and it worked for this. Move this server to the top of the list like this: Installing base packages 1. Type: pacstrap –i /mnt base base-devel 2. Select the default=all by pressing Enter Configure fstab NOTE! The command you’ll type here should only be written once, even if there are issues. It can screw things up Badly. Type: genfstab –U –p /mnt >> /mnt/etc/fstab Now to check if it is OK type: nano /mnt/etc/fstab where you should spot your root and home mounted. Next type arch-chroot /mnt Language/Location/Time Zone settings 1. To get up a file to set the language a. Type: nano /etc/locale.gen b. Uncomment the language you want – en_US.UTF-8 UTF-8 c. Now type: locale-gen d. Then type: echo LANG=en_US.UTF8 > /etc/locale.conf e. And then type: export LANG=en_US.UTF-8 2. For the time zone settings for our local time, “Helsinki time” follow these steps a. ln –s /usr/share/zoneinfo/Europe/Helsinki > /etc/localtime b. Change the time to UTC -> type: hwclock -–systohc -–utc (DELL)ARCH LINUX INSTALLATION 3. EXTRA! If you want to change the hostname (standard name is localhost) you can type this: echo THE_HOSTNAME_YOU_WANT > /etc/hostname a. Ex: echo pingu.ha.it > /etc/hostname Repositories 1. Type nano /etc/pacman.conf 2. Uncomment the [multilib]Include = /etc/pacman.d/mirrorlist repo -> and then press Ctrl+X -> Y -> press Enter 3. Update the repos by typing: pacman -Sy Create user 1. Set root password -> type passwd a. It will ask you to enter a root password -> set it as root 2. Then create a user 3. useradd –m –g users –G wheel,storage,power –s /bin/bash USER_NAME a. (Where USER_NAME is what you want.) 4. Change password -> type: passwd USER_NAME 5. Get sudo -> pacman –S sudo 6. pacman –Ss sudo 7. Give sudo privileges to user a. EDITOR=nano visudo i. Uncomment/remove the “#” before: %wheel ALL=(ALL) ALL 8. Also install auto completion of names on packages: a. pacman –S bash-completion Install the boot loader 1. pacman –S grub 2. grub-install -–target=i386-pc –-recheck /dev/sda 3. To have grub check for more OS:s, install prober -> pacman –S os-prober 4. grub-mkconfig –o /boot/grub/grub.cfg 5. To keep the internet connection after reboots: a. systemctl enable dhcpd.service b. systemctl start dhcpcd.service 6. Now we’re done with configuration of Arch Linux so we’ll reboot and start installing graphic drivers and such things. 7. To finish of the installation a. exit b. umount –R /mnt c. reboot d. REMOVE THE USB! (DELL)ARCH LINUX INSTALLATION Installing X/Graphic card drivers You can login as root to follow steps below, else you may also login as the user you created, but then you’ll have to use sudo when it will say permission denied and so on. So login as root for the convenience. 1. pacman –S xorg-server xorg-server-utils xorg-xinit 2. pacman –S mesa 3. Now we need to specify the graphic card’s drivers. Our Dell use 8000 series -> 4. pacman –S nvidia 5. REBOOT! 6. Login as root again 7. (Extra if you use this guide for a laptop) a. Install this for touch-pad and so on: pacman –S xf86-input-synaptics 8. pacman –S xorg-twm xorg-xclock xterm 9. Let’s check if X is working -> type: startx 10. If you get some fancy windows opened up, it works. Close of the windows by picking the first or the window to the left and type ‘exit’ and hit Enter. Installing KDE 1. pacman –S kde 2. (it will take a while, in case you get lots of errors of fetching files for webpages like ERROR 404, you should cancel it and recheck your mirror list setup like we did previously) 3. When it’s installed type a. systemctl enable kdm.service b. systemctl start kdm.service LAPTOP extra In case you want to setup a wireless manager for your laptop run this: 1. pacman –S kdeplasma-applets-plasma-nm 2. systemctl enable NetworkManager 3. systemctl start NetworkManager 4. Problems with the network? a. systemctl disable dhcpcd.service Audio sudo pacman –S alsa-utils pulseaudio kdemultimedia-kmix ARCH LINUX INSTALLED! That’s it! Now you should have a base Arch Linux installation. The next part will be instructions to get some programs installed, or adjustments you need to do. Like the keyboard layout is probably in ENG at the moment.
Recommended publications
  • Spack Tutorial on AWS
    Spack Tutorial on AWS The most recent version of these slides can be found at: July 28-29, 2020 https://spack-tutorial.readthedocs.io LLNL-PRES-806064 This work was performed under the auspices of the U.S. Department of Energy by Lawrence Livermore National Laboratory under contract DE-AC52-07NA27344. Lawrence Livermore National Security, LLC Tutorial Materials Download the latest version of slides and handouts at: spack-tutorial.readthedocs.io For more: § Spack website: spack.io § Spack GitHub repository: github.com/spack/spack § Spack Reference Documentation: spack.readthedocs.io Q&A on Slack: spackpm.herokuapp.com Tutorial materials: spack-tutorial.readthedocs.io 2 LLNL-PRES-806064 Software complexity in HPC is growing glm suite-sparse yaml-cpp metis cmake ncurses parmetis pkgconf nalu hwloc libxml2 xz bzip2 openssl boost trilinos superlu openblas netlib-scalapack mumps openmpi zlib netcdf hdf5 matio m4 libsigsegv parallel-netcdf Nalu: Generalized Unstructured Massively Parallel Low Mach Flow Q&A on Slack: spackpm.herokuapp.com Tutorial materials: spack-tutorial.readthedocs.io 3 LLNL-PRES-806064 Software complexity in HPC is growing adol-c automake autoconf perl glm suite-sparse yaml-cpp metis cmake ncurses gmp libtool parmetis pkgconf m4 libsigsegv nalu hwloc libxml2 xz bzip2 openssl p4est pkgconf boost hwloc libxml2 trilinos superlu openblas xz netlib-scalapack netcdf-cxx netcdf mumps openmpi zlib netcdf hdf5 nanoflann matio m4 libsigsegv parallel-netcdf matio hdf5 Nalu: Generalized Unstructured Massively Parallel Low Mach Flow sundials
    [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]
  • Free Gnu Linux Distributions
    Free gnu linux distributions The Free Software Foundation is not responsible for other web sites, or how up-to-date their information is. This page lists the GNU/Linux distributions that are ​Linux and GNU · ​Why we don't endorse some · ​GNU Guix. We recommend that you use a free GNU/Linux system distribution, one that does not include proprietary software at all. That way you can be sure that you are. Canaima GNU/Linux is a distribution made by Venezuela's government to distribute Debian's Social Contract states the goal of making Debian entirely free. The FSF is proud to announce the newest addition to our list of fully free GNU/Linux distributions, adding its first ever small system distribution. Trisquel, Kongoni, and the other GNU/Linux system distributions on the FSF's list only include and only propose free software. They reject. The FSF's list consists of ready-to-use full GNU/Linux systems whose developers have made a commitment to follow the Guidelines for Free. GNU Linux-libre is a project to maintain and publish % Free distributions of Linux, suitable for use in Free System Distributions, removing. A "live" distribution is a Linux distribution that can be booted The portability of installation-free distributions makes them Puppy Linux, Devil-Linux, SuperGamer, SliTaz GNU/Linux. They only list GNU/Linux distributions that follow the GNU FSDG (Free System Distribution Guidelines). That the software (as well as the. Trisquel GNU/Linux is a fully free operating system for home users, small making the distro more reliable through quicker and more traceable updates.
    [Show full text]
  • GNU/Linux for Beginners
    What is Linux? Awesome Applications Linux Manuals: Linux is an independent Unix-like operating system Debian Handbook that can be freely modified and redistributed. It works Debian Users' Manuals on all major 32-bit and 64-bit computer hardware Arch Linux platforms and is an implementation of the POSIX Linux Handbook specification with which all true versions of Unix UbuntuHandbook comply. Linux uses no code from proprietary Unix Making Installation Media: sources, and much of the software available for Linux After downloading the .img or .iso file, install to and is developed by the Free Software Foundation's GNU then boot from USB flash drive . Or b urn the .img project. The result of efforts by thousands of or .iso file to disc. Burning is NOT just copying. programmers coordinating via the Internet, Linux is Linux applications (apps) focus on doing one job well MS Windows® installation tools: now recognized as one of the most stable and flexible RaWrite operating systems available at any price. with communications between applications implemented using well-defined public protocols and balenaEtcher file formats. This modular design has a number of Rufus What Systems Run Linux? advantages, including flexibility, simplicity, and U niversal USB Installer Desktops and Laptops stability. A particular application can be replaced by U N etbootin Linux graphical interfaces such as GNOME or KDE any equivalent which follows the same rules. can replace Mac OS and Windows on the workstation Linux/Unix or Similar installation tools: for most users' needs. Runs on all major PC hardware The resulting freedom of choice leads to friendly The dd command line program.
    [Show full text]
  • Reproducible Builds Summit II
    Reproducible Builds Summit II December 13-15, 2016. Berlin, Germany Aspiration, 2973 16th Street, Suite 300, San Francisco, CA 94103 Phone: (415) 839-6456 • [email protected] • aspirationtech.org Table of Contents Introduction....................................................................................................................................5 Summary.......................................................................................................................................6 State of the field............................................................................................................................7 Notable outcomes following the first Reproducible Builds Summit..........................................7 Additional progress by the reproducible builds community......................................................7 Current work in progress.........................................................................................................10 Upcoming efforts, now in planning stage................................................................................10 Event overview............................................................................................................................12 Goals.......................................................................................................................................12 Event program........................................................................................................................12 Projects participating
    [Show full text]
  • Build Your Own Distro Tired of the Run-Of-The-Mill Stuff on Distrowatch? Why Not Heed Mayank Sharma and Create the Perfect Operating System for You?
    Build your own distro Tired of the run-of-the-mill stuff on Distrowatch? Why not heed Mayank Sharma and create the perfect operating system for you? few issues ago, [LXF171, 50 making it your own – by removing apps and Now traditional wisdom says that creating Distros Tested], we looked at drivers that you don’t need and adding the your own Linux system is a rather difficult the best Linux distributions for ones you do. You’ll also probably change the thing to do and shouldn’t be attempted by A all kinds of users. There were factory-fitted artwork that says more about anyone other than Linux veterans. distros that were designed with ease of use the distro vendor than you. We begin the feature with graphical point- in mind, some focused on productivity, Sure that’s one way to go about it. and-click tools. Yes, you read that right. All it while others catered to specialised use You tweak and customise the distro to suit takes is a couple of clicks to craft your very cases, such as security and privacy your requirements. But wouldn’t it be really own flavour of Linux that you can pass to conscious users. But we can guarantee great if you just create your very own, custom friends and family. We’ve got tools that’ll help that there wasn’t a distro designed Linux distribution? you create and distribute customised spins specifically and entirely for you! based on Ubuntu, Fedora and While most Linux users make do OpenSUSE – the three mainstream with one of the mainstream distros out “We’ve got tools that’ll Linux distributions that house there, there’s always something or the help you create and thousands of open source software in other that’s missing.
    [Show full text]
  • Arch Linux Risc OS While Raspbian Has the Difference with the Been Created to Try Risc OS Is That It Is Small to Shield Users from and Fast
    08/07/2014 14:44 Raspberry Pi User Guide.indd 1 08/07/2014 14:43 rPi_manual.indd 37 7/8/14 10:58 AM CONTENTS Unpack the box 3 Operating Systems 4 Installation 6 Loading the O/S 7 Raspbian 8 Command line: Learn the ropes 10 Packages: How do they work? 16 OpenElec 20 Camera controller 22 Sending output 26 Minecraft Pi 30 Postscript 32 Raspberry Pi User Guide.indd 2 08/07/2014 14:43 CONTENTS Unpack the box Inside the box you will find the Raspberry Pi board, a 5V Power Supply (optional) and a 16 GB microSD card. Unpack the box 3 Depending on which bundle you might have purchased you might Operating Systems 4 also receive a case or other accessories. Feel free to put those items Installation 6 together prior to starting up your Pi. The Pi requires 5V 2.4A power so if you did not purchase a power supply you will need to locate Loading the O/S 7 one that has a Micro USB tip on the end. Many smartphone and tablets use Micro USB charging cables, those will work just fine. Raspbian 8 Command line: Learn the ropes 10 Packages: How do they work? 16 OpenElec 20 Camera controller 22 Sending output 26 Minecraft Pi 30 Postscript 32 Raspberry Pi is a trademark of the Raspberry Pi Foundation. Parts of this manual are reproduced from ‘Raspberry Pi Beyond the Manual’ and is copyright of or licensed by Future Publishing Limited (a Future plc group company), UK 2013. All rights reserved.
    [Show full text]
  • Spack Package Repositories
    Managing HPC Software Complexity with Spack Full-day Tutorial 1st Workshop on NSF and DOE High Performance Computing Tools July 10, 2019 The most recent version of these slides can be found at: https://spack.readthedocs.io/en/latest/tutorial.html Eugene, Oregon LLNL-PRES-806064 This work was performed under the auspices of the U.S. Department of Energy by Lawrence Livermore National Laboratory under contract DE-AC52-07NA27344. github.com/spack/spack Lawrence Livermore National Security, LLC Tutorial Materials Materials: Download the latest version of slides and handouts at: bit.ly/spack-tutorial Slides and hands-on scripts are in the “Tutorial” Section of the docs. § Spack GitHub repository: http://github.com/spack/spack § Spack Documentation: http://spack.readthedocs.io Tweet at us! @spackpm 2 LLNL-PRES-806064 github.com/spack/spack Tutorial Presenters Todd Gamblin Greg Becker 3 LLNL-PRES-806064 github.com/spack/spack Software complexity in HPC is growing glm suite-sparse yaml-cpp metis cmake ncurses parmetis pkgconf nalu hwloc libxml2 xz bzip2 openssl boost trilinos superlu openblas netlib-scalapack mumps openmpi zlib netcdf hdf5 matio m4 libsigsegv parallel-netcdf Nalu: Generalized Unstructured Massively Parallel Low Mach Flow 4 LLNL-PRES-806064 github.com/spack/spack Software complexity in HPC is growing adol-c automake autoconf perl glm suite-sparse yaml-cpp metis cmake ncurses gmp libtool parmetis pkgconf m4 libsigsegv nalu hwloc libxml2 xz bzip2 openssl p4est pkgconf boost hwloc libxml2 trilinos superlu openblas xz netlib-scalapack
    [Show full text]
  • On Package Freshness in Linux Distributions
    On Package Freshness in Linux Distributions Damien Legay Alexandre Decan Tom Mens Software Engineering Department Software Engineering Department Software Engineering Department University of Mons University of Mons University of Mons Mons, Belgium Mons, Belgium Mons, Belgium [email protected] [email protected] [email protected] Abstract—The open-source Linux operating system is available bug fixes and security patches. On the other hand, these through a wide variety of distributions, each containing a collec- new versions risk introducing breaking changes, new bugs, tion of installable software packages. It can be important to keep security vulnerabilities, incompatibilities or co-installability these packages as fresh as possible to benefit from new features, bug fixes and security patches. However, not all distributions issues wherein packages cannot be installed without creating place the same emphasis on package freshness. We conducted a conflicts with some other packages [3], [4]. Specifically for survey in the first half of 2020 with 170 Linux users to gauge Debian, Claes et al. estimated that the number of packages their perception of package freshness in the distributions they being incompatible with at least one other package varies employ, the value they place on package freshness and the reasons between 15% and 25% [5]. Distribution maintainers thus have why they do so, and the methods they use to update packages. The results of this survey reveal that, for the aforementioned to go through the very time-consuming process of assessing reasons, keeping packages up to date is an important concern to new package versions for these risks.
    [Show full text]
  • Adding GNU/Hurd Support to GNU Guix Porting GNU Guix to a New Platform
    Adding GNU/Hurd support to GNU Guix Porting GNU Guix to a new platform Manolis Ragkousis [email protected] FOSDEM 30 January 2016 What is distro bootstrapping? Simply speaking ➢ Bootstrapping refers to the process of getting the distribution built “from nothing”. But how does the first package gets built? How is it usually done? ➢ Distros, like Debian or Arch Linux, use whatever is already present in the system. ➢ There’s no clear notion of “bootstrap binaries”. ➢ It's hard to track down the origins of a port (and reproduce it). Bootstrapping Guix Guix relies on a clearly defined set of pre-built binaries ●Guile ●GCC ●Binutils ●Libc ●Bootstrap binaries (Bourne shell, Coreutils, Awk, Finutils, sed and grep) Bootstrapping is complete when we have a full tool chain that does not depend on the pre-built bootstrap tools Bootstrapping the toolchain Porting to a new Platform 1) Cross-build the bootstrap binaries: guix build –-target=i585-pc-gnu bootstrap-binaries 2) “Inject” the bootstrap binaries in the package DAG for that platform. (the (gnu packages bootstrap) module) 3) Build Guix on a running OS of that platform and be done!! Well it wasn't so simple.. What's special about the Hurd ● The Hurd is a collection of servers that run on top of the Mach microkernel. ● These servers implement features that are normally implemented by the kernel. ● Through glibc the same standard interfaces known from other UNIX- like systems are provided, so usually, compiling higher level programs is essentially transparent. Building the bootstrap binaries. Produce the system specific static binaries.
    [Show full text]
  • Which Linux Distribution? Difficulty in Choosing?
    Which Linux distribution? Difficulty in choosing? Ver 190916 www.ubuntutor.com Twitter @LaoYa14 Contents Page Contents 3 That's enough 4 At first 5 At first little about Linux world 6 Quick start guide for choosing the right distro for beginners 7 Basic information 8 ”Linux tree” 9 Basic information 10 Questions on the web site 11 Distros 12 App store 13 Ubuntu 16.04 and 18.04 14 Ubuntu MATE 15 Lubuntu 16 Ubuntu Budgie 17 Kubuntu 18 Xubuntu 19 Linux Mint 20 Zorin 21 MX Linux 22 Pepermint 23 Deepin 24 Arch Linux 25 Manjaro 26 Ubuntu Kylin 27 Ubuntu Studio 28 Kali Linux 29 Edubuntu 30 Desktop environments for Linux 31 File manager NEMO 32 File manager NAUTILUS 33 Installing Ubuntu live USB (test drive) That's enough When laptop is old and there is Windows XP, what to do? You can install Ubuntu Mate on your old laptop and keep at the same time Windows XP too, if you like XP. Or you can buy a tiny new laptop about 200-300 €/$ and change Windows 10 to Ubuntu. It works! I have made both about three years ago, and I haven't used Windows since then. My own laptop is cheap HP Stream 4 MB/32 GB. When I was studying Ubuntu, I noticed that simple beginner's guide books were not available. So, I did a guide book. I also created a website and named it www.ubuntutor.com. It currently includes Ubuntu 16.04 and 18.04 tutorials. And this guide is third one.
    [Show full text]
  • Sage Installation Guide Release 9.4
    Sage Installation Guide Release 9.4 The Sage Development Team Aug 24, 2021 CONTENTS 1 Linux package managers 3 2 Install from Pre-built Binaries5 2.1 Download Guide.............................................5 2.2 Linux...................................................5 2.3 macOS..................................................6 2.4 Microsoft Windows (Cygwin)......................................6 3 Install from conda-forge 7 4 Install from Source Code 9 4.1 Supported platforms...........................................9 4.2 Prerequisites............................................... 10 4.3 Additional software........................................... 18 4.4 Step-by-step installation procedure.................................... 20 4.5 Make targets............................................... 25 4.6 Environment variables.......................................... 25 4.7 Installation in a Multiuser Environment................................. 30 5 Launching SageMath 33 5.1 Using a Jupyter Notebook remotely................................... 33 5.2 WSL Post-installation steps....................................... 34 5.3 Setting up SageMath as a Jupyter kernel in an existing Jupyter notebook or JupyterLab installation.. 35 6 Troubleshooting 37 Index 39 i ii Sage Installation Guide, Release 9.4 You can install SageMath either from a package manager, a pre-built binary tarball or from its sources. Installing SageMath from your distribution package manager is the preferred and fastest solution (dependencies will be automatically taken care of and SageMath will be using your system Python). It is the case at least for the following GNU/Linux distributions: Debian version >= 9, Ubuntu version >= 18.04, Arch Linux, and NixOS. If you are in this situation, see Linux package managers. If your operating system does not provide SageMath, you can also use a pre-built binary. See the section Install from Pre-built Binaries. Or you could install the sage package from the conda-forge project.
    [Show full text]