Btrfs and Rollback How It Works and How to Avoid Pitfalls
|
|
|
- May Walters
- 10 years ago
- Views:
Transcription
1 Btrfs and Rollback How It Works and How to Avoid Pitfalls Thorsten Kukuk Senior Architect SUSE Linux Enterprise Server
2 rm -rf /? I will be discussing what is needed for rollback: Btrfs / Copy-on-Write / Subvolumes Rollback on opensuse/suse Linux Enterprise Grub2 and rollback Caveats and risks Cleanup of snapshots Managing subvolumes 2
3 Btrfs / Subvolumes Not like a LVM logical volume Are hierarchical Can be accessed in two ways: From the parent subvolume (like a directory) Separate mounted filesystem (using subvol/subvolid) Every btrfs filesystem has a default, top-level subvolume with id 5 Snapshots are subvolumes, which shares its data with other subvolumes (snapshots) Only subvolumes can be the source for snapshots 3
4 Btrfs / CoW Copy on Write (CoW) general purpose file system Trees for Data Metadata Snapshots Every snapshot is again a subvolume Can be mounted and accessed like every other subvolume Snapshots can be created read-only 4
5 Btrfs / Copy-on-Write (1/4) Source A B C D E 5
6 Btrfs / Copy-on-Write (2/4) Source Snapshot A B C D E 6
7 Btrfs / Copy-on-Write (3/4) Source Snapshot A B C D E 7
8 Btrfs / Copy-on-Write (4/4) Source Snapshot A B C D E C^2 8
9 Btrfs Snapshots and Diskusage How much disk space does a snapshot need? The answer nobody likes: It depends! Initial snapshot: few Bytes for Metadata Growing over time when original data changes At the end: same amount as original data Worst case: Lot of snapshots and no common blocks between them. 9
10 Why?
11 But... what happens, if the kernel does not boot? 11
12 Btrfs on opensuse / SUSE Linux Enterprise Default root filesystem for root partition (incl. /boot) Advantage: rollback including kernel Bootloader can boot from btrfs Rollback per subvolume Rollback integrated into bootloader No consistent snapshots cross partition boundaries No automatic snapshots per cron for root filesystem 12
13 Full System Rollback
14 Rollback per Subvolume (1/2) How it works Instead of the original subvolume, the snapshot is mounted with the options subvol=<name> Remember: snapshots are subvolumes btrfs subvolume set-default... for permanent assignments Implemented in Snapper as rollback 14
15 Rollback per Subvolume (2/2) Benefits atomic operation Very fast Disadvantages Additional complexity Requires explicit mounting of subvolumes Subvolumes can prevent snapshots from being deleted Disk space leaks Initial installation needs to be done into an extra subvolume 15
16 Reboot Later Mode Administrator is in a current read-write filesystem, but wants to rollback snapper list to view and select a snapshot Call snapper rollback <number>, which will: Create a new read-only snapshot of the currently running system Create a new read-write snapshot of the snapshot <number>, linearly after the just recently created read-only snapshot setdefault to the new read-write snapshot Then reboot 16
17 Reboot Now Mode Boot into an existing read-only snapshot Text console and some services should work Because most data is in writeable subvolumes To continue to work in this snapshot, call snapper rollback. This will: Create a new read-only snapshot of the old read-write one Create a new read-write snapshot of the current read-only one All linearly after the last existing snapshot setdefault to the new read-write snapshot Then reboot 17
18 User View on Snapshot History
19 Snapshot / Rollback User View on Snapshot History (1) ro ro ro ro curr. rw 19
20 Snapshot / Rollback User View on Snapshot History (2) ro ro ro ro curr. rw ro ro-clone 1 20
21 Snapshot / Rollback User View on Snapshot History (3) rw-clone = Rollback btrfs subvol 2 set-default 3 ro ro ro ro old rw ro new rw ro-clone 1 21
22 Snapshot / Rollback User View on Snapshot History (4) New Snapshots ro ro ro 3 ro 4 old rw new ro 5 rw 4 ro 6 Diffs are possible 22
23 Snapshot / Rollback User View on Snapshot History (5) Condensed view What happens, if we rollback again? ro 3 ro 4 ro 5 ro 6 Curr. rw Caveat: this does not reflect 1:1 what happens technically. 23
24 User View On grub2 Interface
25 Snapper Headers Type: [ Pre Post Single ] #: Nr of snapshot Pre #: if type is Post the matching Pre nr. Date: timestamp Cleanup: cleanup algorithm for this snapshot Description: A fitting description of the snapshot (free text) Userdata: key=value pairs to record all sorts of useful information about the snapshot in an easily parsable format 25
26 Important Snapshots Snapshots are marked as important ( * ), if a package affecting the boot process is updated: kernel dracut glibc systemd udev You can configure that in /etc/snapper/zypp-plugin.conf 26
27 Modify grub2 menu The text in the grub2 menu can be set by the admin: snapper modify --userdata="bootloader=foo bar" [number] [number] = number of the snapshot 27
28 28
29 29
30 30
31 31
32 32
33 Caveats and Risks
34 Snapshotting / Challenges Consistent system / atomic We cannot do that cross partition boundaries Kernel and initrd / initramfs = /boot /boot not as extra partition Different stages of bootloader needs to match Exclude /boot/grub2/<grub2 arch> from snapshot Grub2 configuration is part of the snapshot new grub2 needs to be able to read old configs 34
35 Data and Rollback I made a rollback, but what happens with my new data??? 35
36 System Integrity and Compliance Don't allow to roll back certain log-files, databases etc. Solution: subvolumes instead of directories for /boot/grub2/* /opt /srv /tmp /usr/local /var/crash /var/lib/{mailman,named,pgsql,mysql} /var/log /var/opt /var/spool /var/tmp 36
37 What Can Be Broken After a Rollback? /home/<user> exists but no entry in /etc/passwd /opt can contain Add-Ons but dependencies are no longer fulfilled /srv can contain web applications but wrong php/ruby on rails version installed Database was not in a subvolume or extra partition all data after creating the snapshot for rollback is lost Copy modified data from snapshot of old root subvolume into new root subvolume 37
38 Cleanup of snapshots
39 Automatic Cleanup of Snapshots Old snapshots are automatically deleted Depending on Cleanup field (snapper list) Cron job once a day Snapshots containing subvolumes cannot be deleted Have one subvolume and create all other subvolumes in it Root snapshots/subvolumes are excluded Even old ones after rollback Prevent deletion by accident 39
40 Automatic Cleanup of Snapshots Timeline Snapshots Disabled by default for root partition First snapshot of the last 10 days/months/years are kept Installation Snapshots/Administration Snapshots New snapshot when calling YaST or zypper Last 10 important snapshots are kept Last 10 regular snapshots are kept 40
41 Managing Subvolumes
42 Handling of Subvolumes Subvolumes are automatically mounted with their parent volume Past: Only the root subvolume in /etc/fstab Now: All subvolumes are listed in /etc/fstab Why? After rollback, old subvolumes are not part of the new parent subvolume! 42
43 How to Create a Subvolume Move old directory (/path/name) away Mount original root and create subvolume: Mount /dev/sda2 -o subvol=@ /mnt btrfs subvolume create /mnt/path/name umount /mnt Add new subvolume to /etc/fstab and mount it: echo /dev/sda2 /path/name btrfs subvol=@/path/name 0 0 >> /etc/fstab mkdir /path/name mount /path/name Move old data back into new subvolume 43
44 How to Delete a Subvolume Create temporary directory /path/name.tmp Copy data into this directory Delete subvolume: btrfs subvolume delete /path/name Remove /path/name from /etc/fstab Move temporary directory to original name: mv /path/name.tmp /path/name 44
45 Sources
46 Upstream Sources and Patches (1/2) Grub2 Patches are needed (Not everything accepted upstream, from grub2-btrfs-01-add-ability-to-boot-from-subvolumes.patch grub2-btrfs-02-export-subvolume-envvars.patch grub2-btrfs-03-follow_default.patch grub2-btrfs-04-grub2-install.patch grub2-btrfs-05-grub2-mkconfig.patch grub2-btrfs-06-subvol-mount.patch grub2-snapper-plugin.sh 46
47 Upstream Sources and Patches (2/2) Snapper Version or greater No patches needed ftp://ftp.suse.com/pub/projects/snapper/ 47
48 Missing Answer rm -rf / Is it now safe? 48
49 Missing Answer rm -rf / Is it now safe? No! 49
50 Missing Answer rm -rf / Is it now safe? No! Why not? It will not stop on subvolumes. 50
51 Questions? Thank you. 51
52 52
53 Unpublished Work of SUSE LLC. All Rights Reserved. This work is an unpublished work and contains confidential, proprietary and trade secret information of SUSE LLC. Access to this work is restricted to SUSE employees who have a need to know to perform tasks within the scope of their assignments. No part of this work may be practiced, performed, copied, distributed, revised, modified, translated, abridged, condensed, expanded, collected, or adapted without the prior written consent of SUSE. Any use or exploitation of this work without authorization could subject the perpetrator to criminal and civil liability. General Disclaimer This document is not to be construed as a promise by any participating company to develop, deliver, or market a product. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. SUSE makes no representations or warranties with respect to the contents of this document, and specifically disclaims any express or implied warranties of merchantability or fitness for any particular purpose. The development, release, and timing of features or functionality described for SUSE products remains at the sole discretion of SUSE. Further, SUSE reserves the right to revise this document and to make changes to its content, at any time, without obligation to notify any person or entity of such revisions or changes. All SUSE marks referenced in this presentation are trademarks or registered trademarks of Novell, Inc. in the United States and other countries. All third-party trademarks are the property of their respective owners.
Using btrfs Snapshots for Full System Rollback
Using btrfs Snapshots for Full System Rollback Matthias G. Eckermann Senior Product Manager [email protected] Enterprise End User Summit, New York, June 2014 2014-06-20 15:44 UTC Why this? Minimizing Downtime
Relax-and-Recover. Johannes Meixner. on SUSE Linux Enterprise 12. <[email protected]>
Relax-and-Recover on SUSE Linux Enterprise 12 Johannes Meixner Topics What is Relax-and-Recover? What means disaster recovery here? How does disaster recovery work? How does Relax-and-Recover
Challenges Implementing a Generic Backup-Restore API for Linux
Challenges Implementing a Generic Backup-Restore API for Linux Matthias G. Eckermann Senior Product Manager [email protected] Vault, Boston, March 2015 2015-03-12 13:45 UTC Picture: "Escribano" by Jean Le Tavernier
rear for corporate use Ralf Dannert Systems Engineer SUSE Linux GmbH
rear for corporate use Ralf Dannert Systems Engineer SUSE Linux GmbH 23.Sept 2014 2 Agenda Overview Disaster Recovery Relax-and-Recover (rear) rear in SLE12(btrfs subvolumes) Demo rear-suse 3 Disaster
Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction
Installing, Tuning, and Deploying Oracle Database on SUSE Linux Enterprise Server 12 Technical Introduction Arun Singh Sr. Technical Manager [email protected] Agenda 2 Introduction SUSE Components Oracle
Advanced Systems Management with Machinery
Advanced Systems Management with Machinery Andreas Jaeger Thomas Göttlicher Senior Product Manager [email protected] Software Engineer [email protected] Who Are We? Andreas Jaeger Product Manager Thomas
Public Cloud. Build, Use, Manage. Robert Schweikert. Public Cloud Architect [email protected]
Public Cloud Build, Use, Manage Robert Schweikert Public Cloud Architect [email protected] Public Cloud Build, Use, Manage Introduction About me Disclaimers Build vs. Ready made What do I... Now what?
SUSE Customer Center Roadmap
SUSE Customer Center Roadmap Simona Arsene Product Manager Services Artem Chernikov Engineer Cloud & System Management Agenda SCC Today Live Demo of SCC Registration Process New features 2 1 Nov 2012 Alpha
High Availability Storage
High Availability Storage High Availability Extensions Goldwyn Rodrigues High Availability Storage Engineer SUSE High Availability Extensions Highly available services for mission critical systems Integrated
Operating System Security Hardening for SAP HANA
Operating System Security Hardening for SAP HANA Peter Schinagl Technical Architect Global SAP Alliance [email protected] Markus Gürtler Architect & Technical Manager SAP Linux Lab [email protected] Corporate
Implementing Linux Authentication and Authorisation Using SSSD
Implementing Linux Authentication and Authorisation Using SSSD Lawrence Kearney Enterprise Service and Integration Specialist Technology Transfer Partnership (TTP) [email protected] Mark Robinson
SUSE Enterprise Storage Highly Scalable Software Defined Storage. Gábor Nyers Sales Engineer @SUSE [email protected]
SUSE Enterprise Storage Highly Scalable Software Defined Storage Gábor Nyers Sales Engineer @SUSE [email protected] Setting the Stage Enterprise Data Capacity Utilization 1-3% 15-20% 20-25% Tier 0 Ultra
SUSE Linux uutuudet - kuulumiset SUSECon:sta
SUSE Linux uutuudet - kuulumiset SUSECon:sta Olli Tuominen Technology Specialist [email protected] 2 SUSECon 13 4 days, 95 Sessions Keynotes, Breakout Sessions,Technology Showcase Case Studies, Technical
Running SAP HANA One on SoftLayer Bare Metal with SUSE Linux Enterprise Server CAS19256
Running SAP HANA One on SoftLayer Bare Metal with SUSE Linux Enterprise Server CAS19256 Brad DesAulniers Senior Software Engineer [email protected] @cb_brad Ryan Hodgin Senior IT Architect [email protected]
We are watching SUSE
We are watching SUSE Monitoring at SUSE and in SUSE Linux Enterprise Server 12 Martin Čaj Linux System Administrator Prague Czech Republic [email protected] Joachim Werner Senior Product Manager Nürnberg Germany
Ceph Distributed Storage for the Cloud An update of enterprise use-cases at BMW
Ceph Distributed Storage for the Cloud An update of enterprise use-cases at BMW Andreas Pöschl, BMW Senior Solutions Architect [email protected] Michael Vonderbecke, BMW Solutions Architect [email protected]
Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP
Using SUSE Cloud to Orchestrate Multiple Hypervisors and Storage at ADP Agenda ADP Cloud Vision and Requirements Introduction to SUSE Cloud Overview Whats New VMWare intergration HyperV intergration ADP
Big Data, SAP HANA. SUSE Linux Enterprise Server for SAP Applications. Kim Aaltonen [email protected]
Big Data, SAP HANA SUSE Linux Enterprise Server for SAP Applications Kim Aaltonen [email protected] 2 Agenda 3 Big Data SAP HANA Optimized Linux for SAP Why SUSE for SAP? Summary 4 5 Big Data What
kgraft Live patching of the Linux kernel
kgraft Live patching of the Linux kernel Vojtěch Pavlík Director SUSE Labs [email protected] Why live patching? Common tiers of change management: 1. Incident response (we're down, actively exploited )
Workflow und Identity Management - Genehmigungsprozesse, Role Mining, Role Design und Compliance Management
Workflow und Identity Management - Genehmigungsprozesse, Role Mining, Role Design und Compliance Management Stefan Stiehl Senior Technology Sales Specialist Identity Security Management [email protected]
Configuration Management in SUSE Manager 3
Configuration Management in SUSE Manager 3 TUT20515 Klaus Kämpf Product Owner, SUSE Manager [email protected] Agenda 2 SUSE Manager 3 themes About Configuration Management Choosing the right stack Getting
Software Defined Everything
Software Defined Everything, s, Containers, and Storage Pete Chadwick Senior Product Manager [email protected] Joachim Werner Senior Product Manager [email protected] Data Center History - 1970s One (big)
SUSE Linux Enterprise 12 Security Certifications
SUSE Linux Enterprise 12 Security Certifications Common Criteria, FIPS, PCI DSS, DISA STIG,... What's All This About? Thomas Biege Team Lead Maintenance/Security [email protected] 2 Evaluation Validation
How To Make A Cloud Work For You
OpenStack Deep Dive Alan Clark OpenStack, Chairman of the Board Director, SUSE [email protected] Community Size Q2 2014 ECOSYSTEM SIZE (Members + Sponsors + Supporters) 390 Companies Members: 26 Sponsors:
HO15982 Deploy OpenStack. The SUSE OpenStack Cloud Experience. Alejandro Bonilla. Michael Echavarria. Cameron Seader. Sales Engineer cs@suse.
HO15982 Deploy OpenStack The SUSE OpenStack Cloud Experience Alejandro Bonilla Sales Engineer [email protected] Michael Echavarria Sales Engineer [email protected] Cameron Seader Sales Engineer [email protected]
Storage Administration Guide. SUSE Linux Enterprise Server 12 SP1
Storage Administration Guide SUSE Linux Enterprise Server 12 SP1 Storage Administration Guide SUSE Linux Enterprise Server 12 SP1 Provides information about how to manage storage devices on a SUSE Linux
Build Platform as a Service (PaaS) with SUSE Studio, WSO2 Middleware, and EC2 Chris Haddad
Build Platform as a Service (PaaS) with SUSE Studio, WSO2 Middleware, and EC2 Chris Haddad VP, Platform Evangelism WSO2 [email protected] Section Break Text Here (32pt) Cloudy Goals Improve efficiency and
Kangaroot SUSE TechUpdate Interoperability SUSE Linux Enterprise and Windows
Kangaroot SUSE TechUpdate Interoperability SUSE Linux Enterprise and Windows Gábor Nyers Systems Engineer @SUSE [email protected] Agenda 14:00 Kangaroot Update SUSE Update Data Center Interoperability the
Using SUSE Linux Enterprise to "Focus In" on Retail Optical Sales
Using SUSE Linux Enterprise to "Focus In" on Retail Optical Sales Patrick Mullin Scott Steele Senior Technical Specialist SUSE Consulting [email protected] Point of Sale Manager National Vision, Inc. [email protected]
SUSE OpenStack Cloud 4 Private Cloud Platform based on OpenStack. Gábor Nyers Sales Engineer @SUSE [email protected]
SUSE OpenStack Cloud 4 Private Cloud Platform based on OpenStack Gábor Nyers Sales Engineer @SUSE [email protected] Introductory video ChalkTalk: SUSE OpenStack Cloud 2 Stetting the Stage for SUSE OpenStack
Wicked A Network Manager Olaf Kirch
Wicked A Network Manager Olaf Kirch Director SUSE Linux Enterprise [email protected] 2 Agenda Why Wicked!? What we want to achieve What Wicked can do today/tomorrow Architecture Wicked little intro Why Wicked!?
DevOps and SUSE From check-in to deployment
DevOps and SUSE From check-in to deployment Rodolfo Bejarano SUSE Systems Engineer [email protected] Rick Ashford SUSE Systems Engineer [email protected] 2 Agenda 3 Introductions Development
Data Center Automation with SUSE Manager Federal Deployment Agency Bundesagentur für Arbeit Data Center Automation Project
Data Center Automation with SUSE Manager Federal Deployment Agency Bundesagentur für Arbeit Data Center Automation Project Ralf Bueker DSE Bundesagentur für Arbeit [email protected] What is a DSE? DSE means
SUSE Linux Enterprise 12 Security Certifications Common Criteria, EAL, FIPS, PCI DSS,... What's All This About?
SUSE Linux Enterprise 12 Security Certifications Common Criteria, EAL, FIPS, PCI DSS,... What's All This About? Matthias G. Eckermann Senior Product Manager SUSE Linux Enterprise [email protected] Agenda Evaluation
Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) 1. Gather information about current system.
Setup software RAID1 array on running CentOS 6.3 using mdadm. (Multiple Device Administrator) All commands run from terminal as super user. Default CentOS 6.3 installation with two hard drives, /dev/sda
Oracle Products on SUSE Linux Enterprise Server 11
Oracle Products on SUSE Linux Enterprise Server 11 Technical Introduction Arun Singh Sr. Technical Manager [email protected] Agenda Introduction SUSE Products Oracle Products Road Map Question and Answer
Linux w chmurze publicznej SUSE na platformie Microsoft Azure
Linux w chmurze publicznej SUSE na platformie Microsoft Azure Grzegorz Piotrowski Solution Architect C2O C EH, ISO27001-2, ITIL SM, PMI P2, MCT CCEE Virtualization MCSE Private Cloud VCA Cloud [email protected]
SUSE Storage. FUT7537 Software Defined Storage Introduction and Roadmap: Getting your tentacles around data growth. Larry Morris
SUSE FUT7537 Software Defined Introduction and Roadmap: Getting your tentacles around data growth Larry Morris Sr. Product Manager [email protected] AGENDA Enterprise Market SUSE Product SUSE Solutions
How To Manage Your Volume On Linux 2.5.5 (Evms) 2.4.5 On A Windows Box (Amd64) On A Raspberry Powerbook (Amd32) On An Ubuntu Box (Aes) On Linux
www.suse.com/documentation Storage Administration Guide SUSE Linux Enterprise Server 10 SP3/SP4 March 6, 2011 Legal Notices Novell, Inc. makes no representations or warranties with respect to the contents
How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open
How an Open Source Cloud Will Help Keep Your Cloud Strategy Options Open Simon Briggs Technology Specialist [email protected] Open Source = openmind 3 Protect Investment & Work Together 4 Cloud Definitions
TUT19344 Managing RH/CentOS with SUSE Manager
TUT19344 Managing RH/CentOS with SUSE Manager Don Vosburg Systems Engineer [email protected] Gokhan Cetinkaya Systems Engineer [email protected] Agenda SUSE Manager overview SUSE Manager and non-suse
TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla
TUT5605: Deploying an elastic Hadoop cluster Alejandro Bonilla Sales Engineer [email protected] Agenda Overview Manual Deployment Orchestration Generic workload autoscaling Sahara Dedicated for Hadoop
Securing Your System: Security Hardening Techniques for SUSE Linux Enterprise Server
Securing Your System: Security Hardening Techniques for SUSE Linux Enterprise Server Marcus Meissner Software Engineer SUSE Craig Gardner Software Engineer SUSE Roman Drahtmueller Software Engineer SUSE
Open Source High Availability Writing Resource Agents for your own services. Lars Marowsky-Brée Team Lead SUSE Labs [email protected]
Open Source High Availability Writing Resource Agents for your own services Lars Marowsky-Brée Team Lead SUSE Labs [email protected] Agenda Introduction Resource Agents in context Basic Resource Agents (+ code)
<Insert Picture Here> Btrfs Filesystem
Btrfs Filesystem Chris Mason Btrfs Goals General purpose filesystem that scales to very large storage Feature focused, providing features other Linux filesystems cannot Administration
Deploying Hadoop with Manager
Deploying Hadoop with Manager SUSE Big Data Made Easier Peter Linnell / Sales Engineer [email protected] Alejandro Bonilla / Sales Engineer [email protected] 2 Hadoop Core Components 3 Typical Hadoop Distribution
High Availability and Disaster Recovery for SAP HANA with SUSE Linux Enterprise Server for SAP Applications
High Availability and Disaster Recovery for SAP HANA with SUSE Linux Enterprise Server for SAP Applications Uwe Heinz Product Manager SAP [email protected] Fabian Herschel Senior Architect SAP LinuxLab
CAS18543 Migration from a Windows Environment to a SUSE Linux Enterprise based Infrastructure Liberty Christian School
CAS18543 Migration from a Windows Environment to a SUSE Linux Enterprise based Infrastructure Liberty Christian School Don Vosburg Systems Engineer [email protected] [email protected] Who is
SUSE Cloud 5 Private Cloud based on OpenStack
SUSE Cloud 5 Private Cloud based on OpenStack Michał Jura Senior Software Engineer Linux HA/Cloud Developer [email protected] 2 New solutions emerge: Infrastructure-as-Service Cloud = 3 SUSE Cloud Why OpenStack?
SUSE Linux Enterprise Server 11 SP4
SUSE Linux Enterprise Server 11 SP4 www.suse.com May 12, 2015 Storage Administration Guide Storage Administration Guide Legal Notices Copyright 2006 2015 SUSE Linux GmbH. and contributors. All rights reserved.
SUSE Virtualization Technologies Roadmap
SUSE Virtualization Technologies Roadmap Michal Svec Senior Product Manager [email protected] Jason Douglas Senior Engineering Manager [email protected] Agenda Virtualization @SUSE Enhancements in XEN/KVM
HO5604 Deploying MongoDB. A Scalable, Distributed Database with SUSE Cloud. Alejandro Bonilla. Sales Engineer [email protected]
HO5604 Deploying MongoDB A Scalable, Distributed Database with SUSE Cloud Alejandro Bonilla Sales Engineer [email protected] Agenda SUSE Cloud Overview What is MongoDB? 2 Getting familiar with the Cloud
Customizing Boot Media for Linux* Direct Boot
White Paper Bruce Liao Platform Application Engineer Intel Corporation Customizing Boot Media for Linux* Direct Boot October 2013 329747-001 Executive Summary This white paper introduces the traditional
Wicked Trip into Wicked Network Management
Wicked Trip into Wicked Network Management Matthias G. Eckermann Senior Product Manager [email protected] LinuxCon 2013 NA 2013-09-12 15:40 UTC Some Words of Encouragement There is a theory which states, that
File Management Suite. Novell. Intelligently Manage File Storage for Maximum Business Benefit. Sophia Germanides Sophia.germanides@novell.
File Management Suite Novell Intelligently Manage File Storage for Maximum Business Benefit Sophia Germanides [email protected] David Condrey [email protected] Agenda Customer Challenges
How SUSE Is Helping You Rock The Public Cloud
How SUSE Is Helping You Rock The Public Cloud James Mason Robert Schweikert Technical Architect, Public Cloud [email protected] Public Cloud Architect [email protected] Topics 2 A very quick and brief Public
Yosemite Server Backup Installation Guide
Yosemite Server Backup Installation Guide Part number: First edition: October, 2010 Legal and notice information Copyright 2004, 2012 Barracuda Networks, Inc. Under copyright laws, the contents of this
TUT8155 Best Practices: Linux High Availability with VMware Virtual Machines
TUT8155 Best Practices: Linux High Availability with VMware Virtual Machines Jeff Lindholm SUSE Sr. Systems Engineer [email protected] Agenda SUSE Linux Enterprise High Availability Extension 12 Level
Securing Your System: Security Hardening Techniques for SUSE Linux Enterprise Server 12
Securing Your System: Security Hardening Techniques for SUSE Linux Enterprise Server 12 Craig Gardner Software Engineer SUSE [email protected] Overview What? and Why? New for SUSE Linux Enterprise
Novell Collaboration Vibe OnPrem
Novell Collaboration Vibe OnPrem Evergreen Preview Corne Groesbeek Open Horizons Tracy Smith Product Manager [email protected] Collaboration Solutions Collaboration solutions from Novell help enterprise
Introducing Director 11
Introducing Director 11 Agenda Director 11 Introduction Mobile Certificate Manager - CA Import - Mobile Device Management (MDM) Integration - New Certificate Types - User Certificate Mapping - Single-
Novell Identity Manager Resource Kit
AUTHORIZED DOCUMENTATION Installation Guide for SUSE Linux Enterprise Server 10 SP2 Novell Identity Manager Resource Kit 1.2 August 17, 2009 www.novell.com Identity Manager Resource Kit 1.2 Installation
Restoring a Suse Linux Enterprise Server 9 64 Bit on Dissimilar Hardware with CBMR for Linux 1.02
Cristie Bare Machine Recovery Restoring a Suse Linux Enterprise Server 9 64 Bit on Dissimilar Hardware with CBMR for Linux 1.02 This documentation shows how to restore or migrate a Linux system on dissimilar
Creating a Cray System Management Workstation (SMW) Bootable Backup Drive
Creating a Cray System Management Workstation (SMW) Bootable Backup Drive This technical note provides the procedures to create a System Management Workstation (SMW) bootable backup drive. The purpose
ORACLE OPS CENTER: PROVISIONING AND PATCH AUTOMATION PACK
ORACLE OPS CENTER: PROVISIONING AND PATCH AUTOMATION PACK KEY FEATURES PROVISION FROM BARE- METAL TO PRODUCTION QUICKLY AND EFFICIENTLY Controlled discovery with active control of your hardware Automatically
Linux Filesystem Comparisons
Linux Filesystem Comparisons Jerry Feldman Boston Linux and Unix Presentation prepared in LibreOffice Impress Boston Linux and Unix 12/17/2014 Background My Background. I've worked as a computer programmer/software
Oracle VM Server Recovery Guide. Version 8.2
Oracle VM Server Recovery Guide Version 8.2 Oracle VM Server for x86 Recovery Guide The purpose of this document is to provide the steps necessary to perform system recovery of an Oracle VM Server for
Using Encrypted File Systems with Caché 5.0
Using Encrypted File Systems with Caché 5.0 Version 5.0.17 30 June 2005 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using Encrypted File Systems with Caché 5.0 InterSystems
EXPLORING LINUX KERNEL: THE EASY WAY!
EXPLORING LINUX KERNEL: THE EASY WAY! By: Ahmed Bilal Numan 1 PROBLEM Explore linux kernel TCP/IP stack Solution Try to understand relative kernel code Available text Run kernel in virtualized environment
Oracle Linux 7: System Administration Ed 1 NEW
Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 40291196 Oracle Linux 7: System Administration Ed 1 NEW Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training
NI Real-Time Hypervisor for Windows
QUICK START GUIDE NI Real-Time Hypervisor Version 2.1 The NI Real-Time Hypervisor provides a platform you can use to develop and run LabVIEW and LabVIEW Real-Time applications simultaneously on a single
Abstract. Microsoft Corporation Published: August 2009
Linux Integration Components Version 2 for Hyper-V (Windows Server 2008, Windows Server 2008 R2, Microsoft Hyper-V Server 2008, and Microsoft Hyper-V Server 2008 R2) Readme Microsoft Corporation Published:
Private Server and Physical Server Backup and Restoration:
Technical Document Series Number 014 Private Server and Physical Server Backup and Restoration: A Technical Guide for ISP/HSP Administrator Covers Ensim ServerXchange 2.5 and Earlier Date: September 25,
Leveraging Wikis to Manage SCP Documentation TWiki Use @ Novell Technical Services
Leveraging Wikis to Manage SCP Documentation TWiki Use @ Novell Technical Services Max Walker Manager, Novell Services [email protected] 30 May 2008 Agenda SCP at Novell Services Global Documentation
RSA Security Analytics Netflow Collection Configuration Guide
RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks
Based on Geo Clustering for SUSE Linux Enterprise Server High Availability Extension
CAS7318 A Geo Redundant Cloud VoIP Service Based on Geo Clustering for SUSE Linux Enterprise Server High Availability Extension Brett Buckingham Managing Director, silhouette Research and Development Broadview
SUSE Virtualization Technologies Roadmap
SUSE Virtualization Technologies Roadmap Michal Svec Mike Latimer Senior Product Manager [email protected] Senior Engineering Manager [email protected] Agenda Virtualization @SUSE Enhancements in XEN/KVM
IBM Endpoint Manager Version 9.2. Patch Management for SUSE Linux Enterprise User's Guide
IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide IBM Endpoint Manager Version 9.2 Patch Management for SUSE Linux Enterprise User's Guide Note Before using this
NIST ITL July 2012 CA Compromise
NIST ITL July 2012 CA Compromise Prepared for: Intelligent People [email protected] 1 NIST ITL Bulletin on CA Compromise http://csrc.nist.gov/publications/nistbul/july-2012_itl-bulletin.pdf These
How To Set Up Software Raid In Linux 6.2.2 (Amd64)
Software RAID on Red Hat Enterprise Linux v6 Installation, Migration and Recovery November 2010 Ashokan Vellimalai Raghavendra Biligiri Dell Enterprise Operating Systems THIS WHITE PAPER IS FOR INFORMATIONAL
Acronis Backup & Recovery 10 Server for Linux. Quick Start Guide
Acronis Backup & Recovery 10 Server for Linux Quick Start Guide Table of contents 1 Supported operating systems...3 2 What you need to get started...3 3 Installing and starting to use the product...3 3.1
ZYPP common package and patch management for SUSE Linux. Duncan Mac-Vicar P. Software Engineer, YaST
ZYPP common package and patch management for SUSE Linux Duncan Mac-Vicar P. Software Engineer, YaST Agenda ZYPP Package management How was it done before ZYPP ZYPP features What is new? The future 2 Package
RSA Security Analytics Netflow Collection Configuration Guide
RSA Security Analytics Netflow Collection Configuration Guide Copyright 2010-2015 RSA, the Security Division of EMC. All rights reserved. Trademarks RSA, the RSA Logo and EMC are either registered trademarks
How To Migrate To Redhat Enterprise Linux 4
Migrating to Red Hat Enterprise Linux 4: Upgrading to the latest Red Hat release By Donald Fischer Abstract Red Hat Enterprise Linux subscribers may choose to deploy any of the supported versions of the
SUSE Manager in the Public Cloud. SUSE Manager Server in the Public Cloud
SUSE Manager in the Public Cloud SUSE Manager Server in the Public Cloud Contents 1 Instance Requirements... 2 2 Setup... 3 3 Registration of Cloned Systems... 6 SUSE Manager delivers best-in-class Linux
Firebird on Linux. Author: Philippe Makowski IBPhoenix Email: [email protected] Licence: Public Documentation License Date: 2011-11-22
Author: Philippe Makowski IBPhoenix Email: [email protected] Licence: Public Documentation License Date: 2011-11-22 How to install Project packages rpm tar.gz Distributions packages Build from sources
Of Pets and Cattle and Hearts
Of Pets and Cattle and Hearts The SUSE Systems Management Story Joachim Werner Senior Product Manager, SUSE [email protected] Who am I? 2 SUSE and Linux Workloads in the Enterprise SUSE Studio Datacenter Private
TECHNICAL HOWTO. Imaging Linux systems with hardware changes. author: [email protected]
TECHNICAL HOWTO Imaging Linux systems with hardware changes using Mondo Rescue Last modified: author: [email protected] ABSTRACT This document describes the process to create and deploy system
Novell SUSE Linux Enterprise Virtual Machine Driver Pack
SLES 10 Virtual Machine Drivers for Windows on Xen Novell SUSE Linux Enterprise Virtual Machine Driver Pack 10 September 10, 2007 SUSE DRIVERS FOR WINDOWS* ON XEN* www.novell.com Legal Notices Novell,
w1r3 Network Documentation
w1r3 Network Documentation Release 1.0 w1r3 Network June 08, 2014 Contents 1 Infrastructure 3 1.1 Team orientation............................................. 3 1.2 Accounts.................................................
RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide
RocketRAID 174x SATA Controller Ubuntu Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on November 13, 2008 Table of Contents 1 Overview...1
