Page 690 of 967 FirstFirst ... 190590640680688689690691692700740790 ... LastLast
Results 6,891 to 6,900 of 9669

Thread: Video Tutorials Collection

  1. #6891
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    Stm32Fx Microcontroller Custom Bootloader Development



    Stm32Fx Microcontroller Custom Bootloader Development
    Last updated 12/2022
    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz
    Language: English | Size: 6.13 GB | Duration: 7h 31m

    Learn fundamentals of Bootloader Development for your ARM Cortex Mx based STM32Fx Microcontroller



    What you'll learn
    Write your own custom bootloader for your STM32Fx microcontroller and test
    Host Bootloader Communication implementation
    Custom Bootloader command packets
    Different boot modes of the STM32 Microcontroller
    Boot loader flash handling implementation : Sector Erase/Program/Mass erase
    Boot loader options bytes(OB) Program handling implementation
    Boot loader Flash sector protection status handling implementation
    Boot loader In application programming implementation (IAP)
    Vector table relocation of ARM cortex Mx processor

    Requirements
    STM32Fx based board is needed if you want to test the code developed
    Basic 'C' Programming Knowledge is required but not mandatory

    Description
    Get started with Micro-controller Bootloader Development. This course will be suitable for beginners in the domain of embedded systems and programming.This course is all about learning to develop a custom BootLoader for ARM CORTEX Mx powered STM32Fx microcontroller.In this course, I will guide you through a step-by-step procedures to develop your own BootLoader and we will explore many things related to BootLoader programming.The BootLoader we are going to develop in this course will have the following features1) It can do in-application programming(IAP). You can use the BootLoader to flash a given application binary2) Read microcontroller-specific data3) Flash related configurations like setting up read and write protections for different sectors4) Flash sector erase5) Mass erase of the user flash6) Read and display the protection status of the flash memory7) Jump to the specified address to execute the codeAlong with custom BootLoader development, you will also understand1) The different memory organization of a microcontroller2) Memory aliasing and different boot modes of STM323) How MCU boots after power-up4) Vector table mapping and vector table relocation use case of arm cortex mx processor.5) Difference between In-system programming(ISP) and in-application programming(IAP)6) Custom boot loader design flow chart7) Host and Boot loader communication method8) Implementation of different boot loader commandsYou can also extend this BootLoader by giving the following features once you complete the course1) Encrypt and Decrypt the firmware sent by the host using AES2) Over-the-air programming by interfacing WIFI or Zigbee ModulesHardware used in this course:In this course, STM32F446RE Nucleo board is used.If you have any other board based on the STM32 microcontroller then also you can use the codes developed in the course with no or minor changes.Software used:1) KEIL-MDK-5 for WINDOWS2) OpenSTM32 SystemWorkbench for (WINDOWS/LINUX/MAC OS)Learning order of FastBit Embedded Brain Academy Courses,If you are a beginner in the field of embedded systems, then you can take our courses in the below-mentioned order. This is just a recommendation from the instructor for beginners. 1) Microcontroller Embedded C Programming: absolute beginners(Embedded C)2) Embedded Systems Programming on ARM Cortex-M3/M4 Processor(ARM Cortex M4 Processor specific)3) Mastering Microcontroller with Embedded Driver Development(MCU1)4) Mastering Microcontroller: TIMERS, PWM, CAN, RTC,LOW POWER(MCU2)5) Mastering Microcontroller: STM32-LTDC, LCD-TFT, LVGL(MCU3)6) Embedded System Design using UML State Machines(State machine)7) Mastering RTOS: Hands-on FreeRTOS and STM32Fx with Debugging(RTOS)8) ARM Cortex M Microcontroller DMA Programming Demystified(DMA)9) STM32Fx Microcontroller Custom Bootloader Development(Bootloader)10) Embedded Linux Step by Step using Beaglebone Black(Linux)11) Linux device driver programming using Beaglebone Black(LDD1)

    Overview
    Section 1: Course Overview

    Lecture 1 About the instructor

    Lecture 2 Course Overview

    Lecture 3 Important Note

    Lecture 4 Source Code Repository

    Section 2: Introduction

    Lecture 5 What is Boot-Loader and Why it is needed ?

    Section 3: MCU memory, Reset Sequence and Boot configs

    Lecture 6 MCU-Embedded Memory Organization

    Lecture 7 Understanding Reset Sequence and memory Aliasing of the MCU

    Lecture 8 Boot Configurations of the STM32 MCU.

    Section 4: Development board used in our courses

    Lecture 9 Note for the students

    Lecture 10 About MCU Development board

    Lecture 11 STM32F4 Discovery and Nucleo : Board Details

    Lecture 12 ST-Link Driver Installation

    Lecture 13 ST Link Firmware Upgrade

    Section 5: KEIL-MDK-5 IDE setup for ARM Cortex M based MCUs

    Lecture 14 Note for the students

    Lecture 15 KEIL-MDK-5 Installation

    Lecture 16 KEIL-MDK-5 Installation Contd.

    Lecture 17 KEIL-MDK-5 Pack Installation

    Lecture 18 Locating Pack Installation files

    Lecture 19 Creating a KEIL Project

    Lecture 20 Creating a LED Toggling App using Board BSP APIs

    Lecture 21 Creating a LED Toggling App using Board BSP APIs-Nucleo

    Section 6: Installing OpenSTM32 System-Workbench

    Lecture 22 Downloading and Installing OpenSTM32 System-Workbench

    Lecture 23 Installing OpenSTM32 System-Workbench

    Section 7: STM32CubeMX

    Lecture 24 Note for the students

    Lecture 25 STM32CubeMX Installation

    Section 8: Exploring STM32 Native Bootloader

    Lecture 26 Activating ST's Bootloader Part-1

    Lecture 27 Activating ST's Bootloader Part-2

    Lecture 28 Activating ST's Bootloader Part-3

    Lecture 29 Activating ST's Bootloader Part-4

    Section 9: Custom Bootloader Communication with HOST

    Lecture 30 Bootloader Transport

    Lecture 31 Bootloader code placement

    Lecture 32 Bootloader Supported Commands

    Lecture 33 Host - Bootloader Communication

    Section 10: Boot-Loader Project Creation

    Lecture 34 Boot-Loader Project Creation

    Lecture 35 Bootloader Project Exploration Part-1

    Section 11: Boot-Loader UART Testing

    Lecture 36 Command UART testing

    Lecture 37 Debug UART Testing

    Section 12: Boot-loader Jumping to User Code

    Lecture 38 Boot-loader Jumping to User application Part-1

    Lecture 39 Boot-loader Jumping to User application Part-2

    Lecture 40 Boot-loader Jumping to User application Part-3

    Lecture 41 Flash Code Placement using OpenSTM32 System Workbench

    Lecture 42 Vector Table offset Register(VTOR) use case

    Lecture 43 Boot-loader Jumping to User application Part-4

    Section 13: Boot-loader Read Commands from Host

    Lecture 44 Boot-loader command format

    Lecture 45 Boot-loader read commands implementation

    Lecture 46 Command Handle Functions Implementation

    Section 14: Implementing BL_GET_VER Command

    Lecture 47 Boot-loader Command Handling Flow-Chart

    Lecture 48 BL_GET_VER Handle Function Implementation

    Lecture 49 Boot-Loader ACK/NACK Implementation

    Lecture 50 Boot-Loader Verify CRC

    Lecture 51 Sending BL_GET_VER_CMD Reply

    Lecture 52 BL_GET_VER_CMD Testing Part-1

    Lecture 53 Python Installation on Host

    Lecture 54 Python Pyserial module installation

    Lecture 55 BL_GET_VER_CMD Testing Part-2

    Lecture 56 BL_GET_VER_CMD Debugging

    Section 15: Implementing BL_GET_HELP_CMD

    Lecture 57 BL_GET_HELP_CMD Implementation and Testing

    Section 16: Implementing BL_GET_CID_CMD

    Lecture 58 BL_GET_CID_CMD Implementation and Testing

    Section 17: Implementing BL_GET_RDP_LEVEL_CMD

    Lecture 59 Understanding Flash Read Protection Levels

    Lecture 60 BL_GET_RDP_LEVEL Command Testing

    Section 18: Implementing BL_GET_GO_TO_ADDR_CMD

    Lecture 61 BL_GO_TO_ADDR Command Implementation

    Lecture 62 BL_GO_TO_ADDR Command Testing

    Section 19: Implementing BL_FLASH_ERASE_CMD

    Lecture 63 BL_FLASH_ERASE Command Implementation

    Lecture 64 BL_FLASH_ERASE Command Implementation contd.

    Lecture 65 Testing Flash Sector Erase

    Lecture 66 Testing Flash Mass Erase

    Section 20: Implementing BL_MEM_WRITE_CMD

    Lecture 67 BL_MEM_WRITE Commadn Implementation

    Lecture 68 BL_MEM_WRITE Command Testing

    Section 21: Options Bytes and Flash Sector Protection

    Lecture 69 Options Bytes Programming

    Lecture 70 Implementing Flash Sector Protection Commands

    Lecture 71 Summary of the commands

    Section 22: Exploring HOST Application

    Lecture 72 HOST application Source files and Details

    Lecture 73 Procedure to Add your own command

    Section 23: BONUS LECTURE

    Lecture 74 BONUS LECTURE

    Students in the field of Microcontroller and Embedded Systems,Professionals working in the field of Embedded systems

    Code:
    https://anonymz.com/?https://www.udemy.com/course/stm32f4-arm-cortex-mx-custom-bootloader-development/


    Code:
    https://rapidgator.net/file/64d07983588726bb70732729506c493a/STM32Fx_Microcontroller_Custom_Bootloader_Development.part1.rar
    https://rapidgator.net/file/fd7d5e04a95dcda4e8754d47aa241ad9/STM32Fx_Microcontroller_Custom_Bootloader_Development.part2.rar
    Code:
    https://k2s.cc/file/05323a3f2d21f/STM32Fx_Microcontroller_Custom_Bootloader_Development.part1.rar
    https://k2s.cc/file/ce44d2fadcefc/STM32Fx_Microcontroller_Custom_Bootloader_Development.part2.rar
    Code:
    https://nitroflare.com/view/D310E7E0745BF19/STM32Fx_Microcontroller_Custom_Bootloader_Development.part1.rar
    https://nitroflare.com/view/B59667B563E7D51/STM32Fx_Microcontroller_Custom_Bootloader_Development.part2.rar

  2. #6892
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    TOTAL: AWS Certified Database Specialty Exam Prep (DBS-C01)



    TOTAL: AWS Certified Database Specialty Exam Prep (DBS-C01)
    Last Updated 02/2021
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English + srt | Duration: 71 lectures (7h 54m) | Size: 7.8 GB



    Study for AWS Database - Specialty (DBS-C01) exam today! Learn how to work with databases on AWS



    What you'll learn
    The purpose of each AWS Database service
    All aspects of databases including design, migration, deployment, maintenance, security, monitoring, and disaster recovery
    Automation and orchestration of databases using the GUI and command-line interface
    Relational databases (RDS), in-memory databases (ElastiCache), key-value (NoSQL) databases (DynamoDB),
    Document databases (DocumentDB), graph databases (Neptune), time series databases (Timestream), and ledger databases (QLDB)
    Database Management Systems (DBMS)
    Database access language (SQL)

    Requirements
    AWS recommends a minimum of 5 years of experience with common database technologies
    AWS recommends at least 2 years of hands-on experience working on AWS
    AWS recommends experience and expertise working with on-premises and AWS Cloud-based relational and NoSQL databases
    You need to set up a free AWS account to practice your skills

    Description
    The TOTAL Seminars Team brings you one of our most popular Instructors, Tom Carpenter is the Chief Technical Officer at CWNP (Certified Wireless Network Professionals). He's been in the IT industry for 25+ years, written over 20 books on IT subjects, and is also heavily involved in objectives development and exam creation in the certification industry.

    Tom walks you through how Database Administrators (DBAs) move their databases to the cloud using AWS. It is helpful for anyone who deals with any aspect of databases in AWS.

    AWS has come out with a BRAND NEW certification exam called the AWS Certified Database - Specialty (DBS-C01). The exam was created specifically for those who are interested in the database aspects of AWS.

    Do you know how data has radically changed the landscape of everything in the cloud, the Internet, and your lives? If you've ever seen the "Customers also bought" tag on Amazon (that lead you to buy that super cool Bluetooth-enabled R2-D2), or used the databases in your company to better understand where the best places are to invest your profits, or simply used the contacts function of your phone to store all the important information about the people in your lives, you know how crucial data is. All these keep information in databases and most databases are housed in the AWS Cloud.

    Although this course is designed with Database Administrators (DBAs) in mind, it is helpful for anyone who deals with any aspect of databases in AWS. This exam covers everything from the AWS Relational Database Service (RDS) to NoSQL databases (DynamoDB) to the AWS Database Migration Tool. It focuses on various aspects, such as design, migration, deployment, maintenance, security, monitoring, and disaster recovery.

    FEATURES & BENEFITS

    ? Over 8 hours of content

    ? 9 downloadable PDFs with notes on every chapter

    ? 9 white paper PDFs suggested by AWS to study for the exam

    ? End-of-chapter quizzes to test your knowledge

    ? Q&A section where you can have your questions answered

    ? 30-day money-back guarantee

    ? Lifetime access

    ? Certificate of completion

    WHAT'S COVERED?

    ? AWS Relational Database Service (RDS) and Aurora

    ? AWS DynamoDB (document database)

    ? AWS Database Migration Tool (migrate your existing databases into the cloud)

    ? AWS Key Management Service (encryption to secure your data)

    ? Troubleshooting database connection issues

    ? AWS Neptune (graph database)

    ? AWS Redshift (data warehousing)

    The AWS Certified Database - Specialty exam domains covered are

    ? Domain 1: Workload-Specific Database Design 26%

    1.1 Select appropriate database services for specific types of data and workloads

    1.2 Determine strategies for disaster recovery and high availability

    1.3 Design database solutions for performance, compliance, and scalability

    1.4 Compare the costs of database solutions

    ? Domain 2: Deployment and Migration 20%

    2.1 Automate database solution deployments

    2.2 Determine data preparation and migration strategies

    2.3 Execute and validate data migration

    ? Domain 3: Management and Operations 18%

    3.1 Determine maintenance tasks and processes

    3.2 Determine backup and restore strategies

    3.3 Manage the operational environment of a database solution

    ? Domain 4: Monitoring and Troubleshooting 18%

    4.1 Determine monitoring and alerting strategies

    4.2 Troubleshoot and resolve common database issues

    4.3 Optimize database performance

    ? Domain 5: Database Security 18%

    5.1 Encrypt data at rest and in transit

    5.2 Evaluate auditing solutions

    5.3 Determine access control and authentication mechanisms

    5.4 Recognize potential security vulnerabilities within database solutions

    MORE ABOUT THE AWS CERTIFIED DATABASE - SPECIALTY EXAM

    ? Exam code: DBS-C01

    ? Exam voucher cost: $300 USD

    ? Exam languages: English, Japanese, Korean, and Simplified Chinese

    ? Exam format: Multiple-choice, multiple-answer

    ? Number of questions: 55-65 (estimate)

    ? Length of exam: 180 minutes

    ? Passing grade: Score is from 100-1000, passing grade of 750

    ? AWS certifications are valid for 3 years, after which you must recertify (you get a 50% off voucher for your recertification exam from AWS)

    How to take the exam

    ? Sign up for a free AWS Training and Certification account***

    ? Once logged in, select "Schedule New Exam"

    ? Exam can be taken at your local Pearson-VUE testing center and is given via computer

    ABOUT YOUR INSTRUCTOR

    Tom Carpenter is the Chief Technical Officer at CWNP (Certified Wireless Network Professionals). He's been in the IT industry for 25+ years, written over 20 books on IT subjects, and is also heavily involved in objectives development and exam creation in the certification industry. Tom uses AWS daily to run several business websites and operate test labs used for content creation and management, among other things. Tom's teaching style is casual; he wants you to have fun while you learn practical applications of AWS. Join our class now and let us know how you plan to use AWS in your personal or professional life!

    Who this course is for
    Anyone who wants to pass the AWS Certified Database - Specialty exam
    Anyone who is interested in AWS's database services and wants to learn more

    Code:
    https://anonymz.com/?https://www.udemy.com/course/total-aws-certified-database-specialty-exam-prep-dbs-c01/


    Code:
    https://rapidgator.net/file/0dc5c2595fbeaf1f3afb95425067595e/TOTAL_AWS_Certified_Database_Specialty_Exam_Prep_DBS-C01.part1.rar
    https://rapidgator.net/file/259095b7248428a1eb2328b2c4e5e621/TOTAL_AWS_Certified_Database_Specialty_Exam_Prep_DBS-C01.part2.rar
    Code:
    https://k2s.cc/file/ef8544888d495/TOTAL_AWS_Certified_Database_Specialty_Exam_Prep_DBS-C01.part1.rar
    https://k2s.cc/file/a427fef630e44/TOTAL_AWS_Certified_Database_Specialty_Exam_Prep_DBS-C01.part2.rar
    Code:
    https://nitroflare.com/view/56F97A4CDC478BB/TOTAL_AWS_Certified_Database_Specialty_Exam_Prep_DBS-C01.part1.rar
    https://nitroflare.com/view/72A7FE9D42AA4BF/TOTAL_AWS_Certified_Database_Specialty_Exam_Prep_DBS-C01.part2.rar

  3. #6893
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    Programming Siemens S7-1200 PLC & KTP 400 HMI device



    Programming Siemens S7-1200 PLC & KTP 400 HMI device
    Last updated 11/2022
    Created by Seyedreza Fattahzadeh
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English + srt | Duration: 44 Lectures ( 12h 36m ) | Size: 9.5 GB



    Become an excellent PLC code programmer



    What you'll learn
    You will learn programming Siemens S7-1200 PLC Hardware and HMI Designing from Scratch
    You will learn how to convert standard circuits to PLC Circuits
    You will Learn fundamentals commands of Siemens S7-1200 in TIA
    You will learn how to interface KDP 400 HIM display with S7-1200 and TIA PLCSIM S7-1200
    Students will perform industrial automation applications with Factory I/O
    You do not need to have hardware or software to practice working with those elements are provided in the videos

    Requirements
    Basic Fundamentals of Electronics and electricity
    Eagerness to learn how to program a typical PLC

    Description
    In this course, you will learn from scratch how to become a PLC code programmer. This course is specifically for people who want to start their training in Siemens SIMATIC S7-1200 PLC & and a typical HMI (Human-Machine Interface) device. We are using Siemens S7-1200 PLC and KTP 400 HMI along with Siemens TIA- Total Integrated Automation software for making all these tutorial videos. The videos are all high-quality video tutorials.We are teaching programming in Ladder Logic with a touch of FBD- Functional block Diagram. Later in the HMI section, we interfaced Siemens S7-1200 PLC with HMI to learn to monitor and control PLC parameters.Following is the pattern of the course:Introduction to Siemens SIMATIC S7-1200 PLC Hardware and wiring & & how it executes a Ladder Logic program?Introduction to TIA PORTAL virtual software and its configurationIntroduction to Siemens S7-1200 TIA Portal simulatorNext about thirty carefully designed lectures show you how to use TIA instructions properly with excellent meaningful tutorial examplesabout eight carefully designed lectures show you how to configure and design screens on the KTP400 HMI deviceIn most of the lectures, you will expose to the usage of Factory I/O Industrial Application Examples in a real 3D Dynamics environmentIntroduction to S7-1200 analog I/O signals and modules using the Factory I/O to demonstrate how Analog IO signals can be handledThe three last lectures show you what on/off and PID controllers are and how they can be programmed by the TIAAfter learning this course, you would be able to use TIA to program Siemens PLC and HMI in your project or industrial applications.

    Who this course is for
    Engineering Students
    Eagerness to learn how to program a typical PLC

    Code:
    http://anonymz.com/?https://www.udemy.com/course/programming-siemens-s7-1200-plc-ktp-400-hmi-device/


    Code:
    https://rapidgator.net/file/caa3dea40becb53c49254e421075f033/programming_Siemens_S7-1200_PLC__KTP_400_HMI_device.part1.rar
    https://rapidgator.net/file/9314e1c9511d2fec17f55fe0589b728f/programming_Siemens_S7-1200_PLC__KTP_400_HMI_device.part2.rar
    Code:
    https://k2s.cc/file/00dd12769f5f4/programming_Siemens_S7-1200_PLC__KTP_400_HMI_device.part1.rar
    https://k2s.cc/file/463c34c8a64f2/programming_Siemens_S7-1200_PLC__KTP_400_HMI_device.part2.rar
    Code:
    https://nitroflare.com/view/8553C6EEB434EA4/programming_Siemens_S7-1200_PLC__KTP_400_HMI_device.part1.rar
    https://nitroflare.com/view/EA8D115007B439A/programming_Siemens_S7-1200_PLC__KTP_400_HMI_device.part2.rar

  4. #6894
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    Keeping Cyber Simple!



    Keeping Cyber Simple!
    Published 08/2022
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English + srt | Duration: 21 lectures (5h 24m) | Size: 6.9 GB



    A "Keep It Simple" approach to Cybersecurity core principles and concepts



    What you'll learn
    Understanding Risk and Risk Management principles
    An analogy-based approach to Access Control
    A shallow-dive into Attacks & Countermeasures
    Core principles of Computer Hardware, Operating Systems, Virtualization and Cloud Computing from a security perspective
    A look into key cybersecurity Policy (NIST-Based)
    Exploring Key Cybersecurity Roles and Responsibilities
    A really hilarious Risk Management Framework (RMF) vignette (Buying a computer for my Parents)

    Requirements
    No previous skills, experience or tools required. Simply a willingness to learn and a great appetite for knowledge.

    Description
    This is a fun and probably a different type of cybersecurity course that you typically see in online venues.

    These lessons are designed for individuals with little to no experience in Technology or Cybersecurity. I meet so many intelligent individuals every day who would do great in Information Technology or Cybersecurity career fields. However, they are shell-shocked by all the geeky terminology and jargon we use.

    My goal in developing these series of courses is to use common analogies to explain more complex skills. Hence, the slogan you will see in these lessons "There is nothing New under the Sun"

    I employ several hilarious analogies and vignettes such as "Buying my parents a new computer" to show how the 6-step Risk Management Framework (RMF) is used to "Aida's Kitchen" which explains the inter-workings of computer hardware. Managing risk is something that every human on the plant does daily. Cybersecurity is not just a bunch of technical jargon; it is really a time-tested method of managing security risk.

    If you are looking for someone with an accent teaching a lot of high-tech jargon, this is NOT the course for you. However, if you are looking for a course to help you understand the core tenets of Cybersecurity, then I think you will enjoy the journey as we Keep Cyber Simple!

    Who this course is for
    These courses are designed for individuals with little to no experience in Technology or Cybersecurity.

    Code:
    https://anonymz.com/?https://www.udemy.com/course/keep_cyber_simple/


    Code:
    https://rapidgator.net/file/44d930c1f0ac1ba7ed8164429965e87c/Keeping_Cyber_Simple.part1.rar
    https://rapidgator.net/file/ba5ed3ab3c46cf90e24d8a2cbb462cfb/Keeping_Cyber_Simple.part2.rar
    Code:
    https://k2s.cc/file/1e6dae2ce6099/Keeping_Cyber_Simple.part1.rar
    https://k2s.cc/file/113a6faa1d2e0/Keeping_Cyber_Simple.part2.rar
    Code:
    https://nitroflare.com/view/F6C17263E7C67B5/Keeping_Cyber_Simple.part1.rar
    https://nitroflare.com/view/DC44FEACCE49817/Keeping_Cyber_Simple.part2.rar

  5. #6895
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    Cloud Academy - Docker Certified Associate (DCA) Exam Preparation



    Cloud Academy - Docker Certified Associate (DCA) Exam Preparation
    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch
    Difficulty: Beginner | Genre: eLearning | Language: English + vtt | Duration: 6h 51m | Size: 6.5 GB



    Specifically designed to help you prepare for the Docker Certified Associate (DCA) Certification, this preview Learning Path provides interactive content comprised of hands-on labs and video courses

    Specifically designed to help you prepare for the Docker Certified Associate (DCA) Certification, this preview Learning Path provides interactive content comprised of hands-on labs and video courses. This training content has been carefully created to help you study for this Docker certification.

    Learning Objectives
    The aim of the certification is to validate your knowledge across a number of different domains, which have been defined by Docker as being able to

    Run containerized applications from pre-existing images stored in a centralized registry
    Deploy images across the cluster
    Triage and resolve issue reports from stakeholders
    Standup up on Enterprise clusters with one UCP manager, one DTR replica, and one worker node
    Migrate traditional applications to containers
    Configure and troubleshoot Docker engine
    Perform general maintenance and configuration
    As a means of demonstrating this knowledge, you will be tested across 6 different domains, with each domain contributing to a total percentage of your overall score. These domains are broken down as

    Domain 1: Orchestration (25% of exam)
    Domain 2: Image Creation, Management, and Registry (20% of exam)
    Domain 3: Installation and Configuration (15% of exam)
    Domain 4: Networking (15% of exam)
    Domain 5: Security (15% of exam)
    Domain 6: Storage and Volumes (10% of exam)
    Intended Audience
    This learning path is suitable for those wanting to pass the Docker Certified Associate (DCA) certification exam.

    Prerequisites
    There are no prerequisites for this learning path. However, before taking the actual Docker Certified Associate (DCA) exam Docker recommends at least six months to one year of experience with Docker, including exposure to the Docker Enterprise Edition. The knowledge, skills and experience required at this level should also include

    Container security
    Experience with at least one cloud provider
    Configuration management tools
    Linux and/or Windows Server

    [/url]


    Code:
    https://rapidgator.net/file/b9631e23afef186499d5a0a26aa52d3d/Docker_Certified_Associate_DCA_Exam_Preparation.part1.rar
    https://rapidgator.net/file/d0ddad4ccaedd3806a68d24e6b937482/Docker_Certified_Associate_DCA_Exam_Preparation.part2.rar
    Code:
    https://k2s.cc/file/2591fc6658b06/Docker_Certified_Associate_DCA_Exam_Preparation.part1.rar
    https://k2s.cc/file/e44bb8fb0443b/Docker_Certified_Associate_DCA_Exam_Preparation.part2.rar
    Code:
    https://nitroflare.com/view/B794B2C6500E77D/Docker_Certified_Associate_DCA_Exam_Preparation.part1.rar
    https://nitroflare.com/view/7F9CCE2007D7169/Docker_Certified_Associate_DCA_Exam_Preparation.part2.rar

  6. #6896
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    ITProTV - CompTIA Network+ (N10-008)



    ITProTV - CompTIA Network+ (N10-008)
    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English | Duration: 21h 39m | Size: 14.2 GB

    Network concepts, technology and troubleshooting

    In this course, the viewer will learn the following, design and implement functional networks as well as configuring, managing, and maintaining essential network devices. They will also look at various network devices such as routers and switches, as well as identifying benefits and drawbacks of existing network configurations. They will also look at common network security, standards, and protocols as well as troubleshooting common network issues.

    Homepage
    Code:
    https://anonymz.com/?https://www.itpro.tv/courses/comptia/comptia-network-n10008/


    Code:
    https://rapidgator.net/file/b27bb284076cdc6910dbd8fa33f0f227/CompTIA_Network__N10-008.part1.rar
    https://rapidgator.net/file/d95b2447524779284827d3f0253ef6f8/CompTIA_Network__N10-008.part2.rar
    https://rapidgator.net/file/37915e73caf42dc06e08bee8e1a621aa/CompTIA_Network__N10-008.part3.rar
    Code:
    https://k2s.cc/file/61fdf38d4027e/CompTIA_Network__N10-008.part1.rar
    https://k2s.cc/file/a953e4ec72e4b/CompTIA_Network__N10-008.part2.rar
    https://k2s.cc/file/8a3f40ea5fe95/CompTIA_Network__N10-008.part3.rar
    Code:
    https://nitroflare.com/view/DBDB841BB615A73/CompTIA_Network__N10-008.part1.rar
    https://nitroflare.com/view/4D0EB14D557EFD3/CompTIA_Network__N10-008.part2.rar
    https://nitroflare.com/view/D589A3F474F9894/CompTIA_Network__N10-008.part3.rar

  7. #6897
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    CBTNuggets - Palo Alto Networks Certified Network Security Engineer - PCNSE



    CBTNuggets - Palo Alto Networks Certified Network Security Engineer - PCNSE
    Released 07/2021
    MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English | Duration: 113 Lessons (15h 5m) | Size: 6.8 GB



    This intermediate Palo Alto PCNSE training prepares learners to take the PCNSE exam, which is the one required exam to earn the Palo Alto Networks Certified Network Security Engineer (PCNSE) certification

    The Palo Alto Certified Network Security Engineer (PCNSE) is Palo Alto's highest level of certification for security professionals working on Palo Alto's Security Operating Platform. Best attempted with years of experience, the certification requires deep knowledge of designing, deploying, configuring, maintaining and troubleshooting nearly all Palo Alto platform implementations. When an organization needs a next-generation firewall deployed while maintaining the access and availability of the rest of their platform, they need a PCNSE. Security professionals aren't the only ones who can benefit from this training, though: customers, partners, systems engineers, systems integrators and support engineers can all benefit from understanding how the proper maintenance of firewalls affects the entire network.

    For supervisors, this PCNSE training can be used for PCNSE exam prep, on-boarding new security engineers, or as part of a team training plan.

    PCNSE: What You Need to Know
    For any security engineer using this training for exam preparation, our Palo Alto Networks Certified Network Security Engineer (PCNSE) course maps to the Palo Alto PCNSE exam objectives, and covers topics such as

    Planning, managing, deploying and configuring next-generation firewalls
    Designing firewall implementations that meet business requirements
    Identifying planning considerations unique to public, hybrid and cloud environments
    Navigating the protocols and advanced security tools
    Interpreting security data, and maintaining firewall software
    Maintaining high availability
    Troubleshooting and optimizing traffic and routing
    Who Should Take PCNSE Training?
    This PCNSE training is considered engineer-level Palo Alto training, which means it was designed for security engineers. This Palo Alto software and appliances skills course is designed for security engineers with three to five years of experience with security appliances.

    New or aspiring security engineers. The Palo Alto Certified Network Security Engineer certification represents deep knowledge of and familiarity with next-generation firewalls and their interactions with a Palo Alto Security Operating Platform to keep enterprise networks moving fast but completely securely. New security engineers will probably have a lot of familiarity with firewalls and network security, but with this training, you'll learn to implement security measures that never interfere with network speeds or availability.

    Experienced security engineers. If you're an experienced security engineer, a PCNSE certificate is like a currency backed by your abilities to develop infrastructure, mitigate threats and prevent successful cyberattacks in rapidly evolving environments. It vouches for your ability to design, deploy, configure, maintain and troubleshoot the vast majority of Palo Alto Networks Operating Platform implementations, and with it you have the chance to move into elevated positions in engineering firms, security industries, even ISP networks. With this training, you'll be ready to earn your PCNSE and go wherever your career leads.

    Code:
    https://anonymz.com/?https://www.cbtnuggets.com/it-training/palo-alto/certified-network-security-engineer


    Code:
    https://rapidgator.net/file/0da9aac8498be49a5bf612eb7773ce18/Palo_Alto_Networks_Certified_Network_Security_Engineer_-_PCNSE.part1.rar
    https://rapidgator.net/file/87f77c6ff69046adc7eafaf0ab9af6af/Palo_Alto_Networks_Certified_Network_Security_Engineer_-_PCNSE.part2.rar
    Code:
    https://k2s.cc/file/f0b181b42b691/Palo_Alto_Networks_Certified_Network_Security_Engineer_-_PCNSE.part1.rar
    https://k2s.cc/file/0d4cfaf3403cb/Palo_Alto_Networks_Certified_Network_Security_Engineer_-_PCNSE.part2.rar

  8. #6898
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    Certified Blockchain Expert CBE prep course



    Certified Blockchain Expert CBE prep course
    Published 07/2022
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English + srt | Duration: 50 lectures (11h 37m) | Size: 5.1 GB



    Blockchain use cases, code walk through, and market opportunities



    What you'll learn
    Proving your Blockchain skills and understanding across multiple industries and use cases
    Gain an in-depth understanding of blockchain technologies and how they are implemented
    Understand the guiding principles and standards used in modern blockchains
    Master the core concepts of Blockchain technology to solve large-scale problems
    Be able to articulate the opportunities that Blockchain technologies offer to extend services to traditionally underserved populations

    Requirements
    There are no pre-requisites to take this course.

    Description
    The Certified Blockchain Expert is a certification offered by the Blockchain Council that demonstrates mastery of an overall understanding of blockchain technologies and their uses in the real world. This course is my own study notes for this certification with a focus on what is needed to pass this certification. This is a comprehensive curriculum that follows the Certified Blockchain Expert syllabus and study program from the Blockchain Council.

    The current use and abilities of blockchain technologies represent a game-changing set of technologies and abilities that has a deep social and political impact on society. This course is for anyone who wants to learn about enterprise-level blockchains, how they work, and what business opportunities are out there for entrepreneurs or simply people who are interested in the technology and its uses.

    This training will walk the student through all the common aspects of current blockchain technologies. From component level and network configuration examples to how design and architecture influence business processes, this course is a great overview of where we are, and in some cases where we are going with blockchain systems. Students at the end of this course will be able to discuss both technology and business processes in a practical way, supporting the companies they work with.

    Students will be able to match business needs to effective blockchain solutions, with a focus on decentralization and global interoperability. This certification and the study process are for anyone who wants to learn about enterprise-level blockchains and how they can be used across multiple sectors.

    This course is for

    This course is for anyone who wants to learn about effective blockchain solutions at the enterprise level across multiple industries.

    There are no pre-requisites to take this course.

    Who this course is for
    This course is for anyone who wants to learn about effective blockchain solutions at the enterprise level across multiple industries.

    Code:
    https://anonymz.com/?https://www.udemy.com/course/certified-blockchain-expert-cbe-prep-course/


    Code:
    https://rapidgator.net/file/338fa976b44d12400fe1f0dd67a40b57/Certified_Blockchain_Expert_CBE_prep_course.rar
    Code:
    https://k2s.cc/file/22667ff9b89b0/Certified_Blockchain_Expert_CBE_prep_course.rar
    Code:
    https://nitroflare.com/view/F11850BF53F0BE6/Certified_Blockchain_Expert_CBE_prep_course.rar

  9. #6899
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    A To Z Microsoft Windows Server 2019/2022 Administration



    A To Z Microsoft Windows Server 2019/2022 Administration
    Last updated 10/2022
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz
    Language: English | Size: 11.83 GB | Duration: 26h 37m

    Official course of Windows Server 2019/2022 administration with industrial labs scenarios, slides, articles & questions.



    What you'll learn
    Learn the concepts and perform hands on activities needed to master Windows Server 2019/2022
    Learn using hands on simulations how Windows Server 2019/2022 is administered!
    Gain a tremendous amount of knowledge involving Windows Server 2019/2022 administrator
    Learn how to set up your own test lab for practicing the concepts!

    Requirements
    Willingness to put in the time and practice the steps shown in the course

    Description
    About this courseWelcome to the Windows Server 2019/2022 Administration course, which is part of a set of three courses that cover Windows Server administration and transitioning to cloud-only and hybrid models. This course focuses on Windows Server 2019/2022 administration, when servers are deployed on-premises. Course WS-012T: Windows Server 2019/2022 Hybrid and Azure IaaS covers the use of Microsoft Azure in managing server workloads in hybrid environments and helping secure virtual machines that are running on Windows Server 2019/2022. Course WS-013T: Azure Stack HCI covers the running of virtual workloads on Microsoft platforms at medium to large scale by using software-defined datacenters and hyperconverged principles.We really hope you'll agree, this training is way more than the average course on Udemy!Have access to the following:Training from an instructor of over 25 years who has trained thousands of people and also a Microsoft Certified TrainerLecture that explains the concepts in an easy to learn method for someone that is just starting out with this materialInstructor led hands on and simulations to practice that can be followed even if you have little to no experienceCourse introduction . About this course . ■■Module 1 Windows Server administration . Overview of Windows Server administration principles and tools . Introducing Windows Server 2019 . Overview of Windows Server Core . Module 01 lab and review . ■■Module 2 Identity services in Windows Server . Overview of AD DS . Deploying Windows Server domain controllers .Overview of Azure AD . Implementing Group Policy . Overview of AD CS . Module 02 lab and review . ■■Module 3 Network infrastructure services in Windows Server . Deploying and managing DHCP . Deploying and managing DNS services . Deploying and managing IPAM . Module 03 lab and review .■■Module 4 File servers and storage management in Windows Server . Volumes and file systems in Windows Server . Implementing sharing in Windows Server . Implementing Storage Spaces in Windows Server . Implementing Data Deduplication .Implementing iSCSI . Deploying DFS . Module 04 lab and review . ■■Module 5 Hyper-V virtualization and containers in Windows Server . Hyper-V in Windows Server .Configuring VMs . Securing virtualization in Windows Server . Containers in Windows Server . Overview of Kubernetes .Module 05 lab and review . ■■Module 6 High availability in Windows Server .Planning for failover clustering implementation .Creating and configuring failover clusters . Overview of stretch clusters . High availability and disaster recovery solutions with Hyper-V VMs . Module 06 lab and review . ■■Module 7 Disaster recovery in Windows Server . Hyper-V Replica . Backup and restore infrastructure in Windows Server .Module 07 lab and review . ■■Module 8 Windows Server security . Credentials and privileged access protection in Windows Server . Hardening Windows Server . Just Enough Administration in Windows Server . Securing and analyzing SMB traffic . Windows Server Update Management . Module 08 lab and review .■■Module 9 RDS in Windows Server . Overview of RDS . Configuring a session-based desktop deployment . Overview of personal and pooled virtual desktops . Module 09 lab and review . ■■Module 10 Remote Access and web services in Windows Server .Overview of RAS in Windows Server .Implementing VPNs .Implementing NPS .Implementing Always On VPN . Implementing Web Server in Windows Server . Module 10 lab and review . ■■Module 11 Server and performance monitoring in Windows Server . Overview of Windows Server monitoring tools .Using Performance Monitor . Monitoring event logs for troubleshooting .Module 11 lab and review . ■■Module 12 Upgrade and migration in Windows Server . AD DS migration .Storage Migration Service . Windows Server Migration Tools . Module 12 lab and review .■■TOPICS COVERED INCLUDING HANDS ON LECTURE AND PRACTICE TUTORIALS

    Overview
    Section 1: Module 0: Server 2019/2022

    Lecture 1 Introduction

    Lecture 2 About this course

    Lecture 3 Topics

    Lecture 4 Win 8.1, 10, 11 ISO Download

    Lecture 5 Win 2019, 2022 ISO Download

    Section 2: Build your network quick tips

    Lecture 6 Quick tips & Topology download

    Lecture 7 Server 2019 ISO

    Lecture 8 Virtualization , Virtual switch concept

    Lecture 9 Virtual Switch creation

    Lecture 10 AD, DNS, DHCP brief

    Lecture 11 1st DC

    Lecture 12 DHCP

    Lecture 13 FSMO

    Lecture 14 Joining domain - 3 methods

    Section 3: Module 1 Windows Server administration

    Lecture 15 Topics

    Lecture 16 Module 1 slides

    Section 4: HD req, OS Licenses

    Lecture 17 Hardware, OS and Licenses

    Lecture 18 PC vs Server

    Lecture 19 OS licenses and Hardware scenarios

    Lecture 20 Bonus: PC and Server hardware build

    Lecture 21 Bonus: SAN vs NAS and Simulators

    Section 5: Domain and Forest function level, Global catalogue

    Lecture 22 FFL, DFL

    Lecture 23 GC

    Section 6: MDT (Microsoft Deployment Tool)

    Lecture 24 MDT Managing Deployment Tool preparation

    Lecture 25 Deploying a Windows 10 image using MDT

    Section 7: PowerShell administrating remote servers

    Lecture 26 PowerShell remote limits

    Lecture 27 PowerShell advance techniques

    Section 8: WAC Windows Admin Center

    Lecture 28 WAC concept

    Lecture 29 WAC installation

    Lecture 30 WAC troubleshooting

    Section 9: Install and Configure Server Core

    Lecture 31 ICT for Core server

    Lecture 32 Performing remote management

    Lecture 33 Core server as Domain controller

    Section 10: Module 2 Identity services in Windows Server

    Lecture 34 Topics

    Lecture 35 Module 2 slides

    Lecture 36 Module 2 review

    Section 11: Active Directory Domain Services (AD DS) & Domain Controllers (DCs)

    Lecture 37 Overview of Labs

    Lecture 38 Powershell to Remotely Promote a 2nd Domain Controller- PART 1

    Lecture 39 Remotely Promoting a Second Domain Controller using PowerShell- PART 2

    Lecture 40 Check Health and connectivity of Domain Controllers

    Lecture 41 BPA - Best Practices Analyzer

    Lecture 42 Impact of FSMO Roles

    Lecture 43 Cloning a Domain Controller

    Lecture 44 How to Demote Cloned Domain Controller

    Lecture 45 Relegate/Demote Secondary Domain Controller

    Section 12: AD DS Objects

    Lecture 46 User Template and nested groups

    Lecture 47 How to reset computer account

    Lecture 48 Delegating administration for OUs - Part1

    Lecture 49 Delegating administration for OUs - Part2

    Lecture 50 PowerShell Scripts for creating AD DS objects

    Section 13: ADDS Infrastructure Management

    Lecture 51 Fix routing

    Lecture 52 Trust relationship theory

    Lecture 53 Conditional forwarders

    Lecture 54 Implementing Forest trusts

    Lecture 55 Multi sites vs Multi domains

    Lecture 56 Creation of child domains in AD DS

    Section 14: ADDS sites and replication

    Lecture 57 Creating different sites and subnets

    Lecture 58 Monitor Site replication using Powershell

    Section 15: Implementing Group Policy

    Lecture 59 Overview of GPO

    Lecture 60 Your 1st GPO policy deployment

    Lecture 61 Deploy Remote Management tools through GPO

    Lecture 62 Order of Precedence

    Lecture 63 Precedence - Another example

    Lecture 64 Configure Loopback Processing

    Lecture 65 Group Policy Modeling & Result (Concept building)

    Lecture 66 Modeling and RSoP tools

    Lecture 67 WMI Filter

    Lecture 68 Examine Group policy Events

    Section 16: Securing AD DS

    Lecture 69 Introduction to security settings

    Lecture 70 Implementing security using PSO

    Lecture 71 Restricted Administrators on Member Servers

    Lecture 72 Implement Administrative Auditing

    Lecture 73 What is RODC ?

    Lecture 74 Deploy and configure RODC

    Lecture 75 Service Vs Process

    Lecture 76 Create Service Account

    Section 17: Microsoft Azure AD Sync with AD DS

    Lecture 77 Overview of Labs in this section

    Lecture 78 Create Office 365 & Azure Accounts

    Lecture 79 Azure AD Connect- Connecting your Domain with Azure

    Lecture 80 Directory synchronization to Azure AD

    Lecture 81 Stop Notifications

    Lecture 82 Office 365

    Section 18: Active Directory Certification Services (AD CS)

    Lecture 83 Introduction to Certification Authority

    Lecture 84 Create checkpoint for this Lab

    Lecture 85 Overview of Labs

    Lecture 86 Install and configure AD CS

    Lecture 87 Install and configure AD CS - Part II (Create new snapshots)

    Lecture 88 Deploying an enterprise subordinate CA

    Lecture 89 CRL

    Section 19: Module 3 Network infrastructure services in Windows Server

    Lecture 90 Topics

    Lecture 91 Module 3 slides

    Section 20: Dynamic Host Configuration Protocol (DHCP)

    Lecture 92 DHCP Failover

    Lecture 93 DHCP Relay Agent

    Section 21: Domain Name System (DNS)

    Lecture 94 Overview of DNS server

    Lecture 95 Working with Host file

    Lecture 96 AD and DNS Integration

    Lecture 97 Primary and secondary zones

    Lecture 98 Adding child domains

    Lecture 99 Forward Lookup Zones - Zone replication in DNS

    Lecture 100 Reverse Lookup Zone

    Lecture 101 Forwarders and CF

    Lecture 102 Stub Zone

    Lecture 103 PowerShell Commands

    Lecture 104 Monitoring and Analyzing DNS - BPA

    Lecture 105 Record types

    Section 22: IPAM - IP Address Management

    Lecture 106 Installing & Configuring IPAM server feature

    Lecture 107 IP Address Block

    Section 23: Module 4 File servers and storage management in Windows Server

    Lecture 108 Topics

    Lecture 109 Module 4 slides

    Section 24: Configuring Local Storage

    Lecture 110 Create and Manage Volumes using PowerShell and GUI

    Lecture 111 Resizing volumes using Diskpart

    Lecture 112 VHD Part I

    Lecture 113 VHD Part II

    Section 25: Enterprise Storage Solutions

    Lecture 114 Creation of iSCSI Disks

    Lecture 115 Configure MPIO

    Lecture 116 SMB & NFS Share on iSCSI storage

    Section 26: Creation of Storage Pool

    Lecture 117 Storage Pool creation

    Lecture 118 Troubleshooting a faulty HDD in Storage pool

    Lecture 119 Storage Tiering

    Lecture 120 Data Deduplication

    Section 27: Implementing Networking, Distributed File System (DFS)

    Lecture 121 Prepare your network

    Lecture 122 DFS, Redirection , Troubleshoot Part - 1

    Lecture 123 DFS, Redirection , Troubleshoot Part - 2

    Lecture 124 Disk Quota

    Lecture 125 Installing DFS

    Lecture 126 DFS Namespace and replication

    Lecture 127 Fix GPO redirection Policy

    Lecture 128 FSRM

    Section 28: Module 5 Hyper-V virtualization and containers in Windows Server

    Lecture 129 Topics

    Lecture 130 Module 5 slides

    Section 29: Hyper-V

    Lecture 131 Concept of nested virtualization

    Lecture 132 Dockers & containers

    Section 30: Module 6 High availability in Windows Server

    Lecture 133 Topics

    Lecture 134 Module 6 slides

    Section 31: Failover Clustering

    Lecture 135 Prepare your network

    Lecture 136 Network Connectivity Test

    Lecture 137 Install File server and Hyper-V role on cluster nodes

    Lecture 138 Connect cluster nodes to iSCSI storage

    Lecture 139 Install FOC feature

    Lecture 140 Add the file-server role to Failover Cluster

    Lecture 141 Testing the high availability

    Section 32: Fail over Clustering for Hyper-V

    Lecture 142 Prepare your network

    Lecture 143 Hyper-V inside FOC & Live Migration

    Lecture 144 Migrate Hyper-V to Fail over Cluster "Storage Migration"

    Section 33: Module 7 Disaster recovery in Windows Server

    Lecture 145 Topics

    Lecture 146 Module 7 slides

    Section 34: Advanced Hyper-V networking features- Nested Virtualization

    Lecture 147 Installing Hyper-V inside VMware

    Lecture 148 Create virtual switches

    Lecture 149 Use Hyper-V and VMWare Virtual switches

    Lecture 150 Prepare for Live Migration

    Lecture 151 Performing Live Migration

    Lecture 152 Live Migration using PowerShell

    Lecture 153 Create Hyper- V Replica

    Lecture 154 Hyper-V Replica - Planned Failover

    Lecture 155 NIC Teaming

    Section 35: Backup and Restore

    Lecture 156 Backup in brief

    Lecture 157 Windows backup

    Lecture 158 AD, Certificate and DHCP backup

    Section 36: Module 8 Windows Server security

    Lecture 159 Topics

    Lecture 160 Module 8 slides

    Section 37: JEA (Just Enough Administration)

    Lecture 161 What is JEA

    Lecture 162 JEA - Prepare lab - creare JSA role file

    Lecture 163 JEA, edit psrc file

    Lecture 164 JEA, pssc file

    Section 38: Windows System Update Services (WSUS)

    Lecture 165 Install the WSUS server role and perform initial configuration

    Lecture 166 Let us discuss WSUS options in detail

    Lecture 167 WSUS-SSL

    Lecture 168 SSL Trusted Self-Signed Certificate

    Section 39: Module 9 RDS in Windows Server

    Lecture 169 Topics

    Lecture 170 Module 9 slides

    Lecture 171 RDS in brief

    Lecture 172 Implementing RDS - Installation and session configuration

    Lecture 173 Implementing RDS - User profile disk configuration

    Lecture 174 Implementing RDS - Fixing IIS

    Lecture 175 Implementing RDS - RDP Session

    Lecture 176 Implementing RDS - Configure RemoteApp collection settings

    Section 40: RDS - Remote Access in Windows server 2019/2022

    Lecture 177 Web Application Proxy - Prepare your Infrastructure

    Lecture 178 Web Application Proxy - Add Certificates

    Lecture 179 Web Application Proxy- ADFS

    Lecture 180 Configure WAP

    Lecture 181 Final Test

    Section 41: Module 10 Remote Access and web services in Windows Server

    Lecture 182 Topics

    Lecture 183 Module 10 slides

    Section 42: Virtual Private Network (VPN)

    Lecture 184 Installing VPN

    Lecture 185 Configuring VPN

    Lecture 186 NPS (Network Policy Server)

    Lecture 187 Let us establish VPN connection

    Lecture 188 CMAK

    Lecture 189 Radius Server

    Lecture 190 VPN Security - SSL Certificate

    Lecture 191 SSL Connection

    Section 43: Module 11 Server and performance monitoring in Windows Server

    Lecture 192 Topics

    Lecture 193 Module 11 slides

    Lecture 194 Module 11 review

    Section 44: Monitoring tools

    Lecture 195 Sneak peek into Task Manager

    Lecture 196 Event log, Computer management tools

    Lecture 197 Data Collector Set

    Section 45: Module 12 Upgrade and migration in Windows Server

    Lecture 198 Topics

    Lecture 199 Module 12 slides

    Lecture 200 Upgrade Win Server 2016 --> 2019

    Section 46: Modules practice test

    IT people interested in learning a tremendous amount about Windows Server 2022 administration!

    Code:
    https://anonymz.com/?https://www.udemy.com/course/ws-011t00-microsoft-windows-server-20192022-administrator/


    Code:
    https://rapidgator.net/file/667b3de41d8fa52959abd39d8ea0bdfc/A_to_Z_Microsoft_windows_server_20192022_Administration.part1.rar
    https://rapidgator.net/file/84443cdd202a61eceeefc9f6348be538/A_to_Z_Microsoft_windows_server_20192022_Administration.part2.rar
    https://rapidgator.net/file/e8250c6557bd31c77452de2a0a69f592/A_to_Z_Microsoft_windows_server_20192022_Administration.part3.rar
    Code:
    https://k2s.cc/file/de69dd232608c/A_to_Z_Microsoft_windows_server_20192022_Administration.part1.rar
    https://k2s.cc/file/4d5103aeba216/A_to_Z_Microsoft_windows_server_20192022_Administration.part2.rar
    https://k2s.cc/file/65662d0689f7d/A_to_Z_Microsoft_windows_server_20192022_Administration.part3.rar
    Code:
    https://nitroflare.com/view/8F45DCAB6771B15/A_to_Z_Microsoft_windows_server_20192022_Administration.part1.rar
    https://nitroflare.com/view/94BB5B10B279CBD/A_to_Z_Microsoft_windows_server_20192022_Administration.part2.rar
    https://nitroflare.com/view/4C8377B633A6897/A_to_Z_Microsoft_windows_server_20192022_Administration.part3.rar

  10. #6900
    Super Moderator
    Join Date
    May 2019
    Posts
    204,170
    Thanks
    1
    Thanked 39 Times in 38 Posts

    Learn Linux Daily!



    Learn Linux Daily!
    Last Updated 07/2022
    MP4 | Video: h264, 1280x720 | Audio: AAC, 44.1 KHz, 2 Ch
    Genre: eLearning | Language: English + srt | Duration: 127 lectures (62h 15m) | Size: 27.3 GB



    Learn everyday Linux with just one bite at a time!



    What you'll learn
    Learn everyday Linux commands from the scratch!
    Operate a Linux computer entirely from the command line!
    Complete understanding of Linux and fill in any existing knowledge gaps!
    You will comprehend the principles of the Linux operating system by the end of this course and be able to use that knowledge in a useful and practical way.

    Requirements
    This course is targeted primarily for beginners only, so no prior Linux knowledge is essential.
    A computer with Internet.

    Description
    Learn the Linux command line from scratch. The course starts with a deep dive into technical terms like ls (list), cd (change directory), paths (directory structure), symbolic links (ln). It's important to understand the context and the why's around the command line - which is covered in detail.

    This awesome daily Linux course will help you advance your skills regardless of whether you are a total beginner or have some expertise with fundamental instructions. One of the few abilities that cuts beyond the traditional boundaries between web development, data science, machine learning, or any other digital subject is command-line proficiency. Knowing how to use the command-line will be useful if you use a computer on a regular basis. The commands you learn will alter how you interact with your machine and provide you with entirely new workflows and approaches.

    Speciallity: Linux basic commands (July 2022). This course focus on the basic Linux commands with detailed explanation videos. Each Linux command is explained with various parameters so that learners can use the command in many practical scenarios.

    Some images/ contents used in this course are under license: Creative Commons Attribution licence (reuse allowed), presented by Lane Schwartz at the Illinois University. We adapted the material, added more supporting files, and quizzes.

    Who this course is for
    Anyone interested in becoming a Linux command line user.
    Professionals who should study Linux to improve their productivity at work.

    Code:
    https://anonymz.com/?https://www.udemy.com/course/learn-linux-daily/


    Code:
    https://rapidgator.net/file/485a3b287844d6d70960630bf8e2810d/Learn_Linux_Daily.part1.rar
    https://rapidgator.net/file/1d31e342b0ca1ca735c11a422100e620/Learn_Linux_Daily.part2.rar
    https://rapidgator.net/file/41fa591e25e37d469d0ffb5d0d58b6e9/Learn_Linux_Daily.part3.rar
    https://rapidgator.net/file/6396f2d7cb59bfb9548da0580c936b38/Learn_Linux_Daily.part4.rar
    https://rapidgator.net/file/215ee33d3a30905e1e6d96e1ea188f3c/Learn_Linux_Daily.part5.rar
    https://rapidgator.net/file/ed4778ba631fe8e32d79cc2fd886493a/Learn_Linux_Daily.part6.rar
    Code:
    https://k2s.cc/file/f22474fb5e7c7/Learn_Linux_Daily.part1.rar
    https://k2s.cc/file/1e80f0a09faac/Learn_Linux_Daily.part2.rar
    https://k2s.cc/file/2976274060b04/Learn_Linux_Daily.part3.rar
    https://k2s.cc/file/9c1aba23383b2/Learn_Linux_Daily.part4.rar
    https://k2s.cc/file/2fd5aaea13eec/Learn_Linux_Daily.part5.rar
    https://k2s.cc/file/b6ca14f6e670e/Learn_Linux_Daily.part6.rar
    Code:
    https://nitroflare.com/view/5B590858A5E1967/Learn_Linux_Daily.part1.rar
    https://nitroflare.com/view/94D84ABA3BF88B5/Learn_Linux_Daily.part2.rar
    https://nitroflare.com/view/223B370E8C35D57/Learn_Linux_Daily.part3.rar
    https://nitroflare.com/view/730E5175FA4BE02/Learn_Linux_Daily.part4.rar
    https://nitroflare.com/view/75F0C91DC8CBDC7/Learn_Linux_Daily.part5.rar
    https://nitroflare.com/view/6DE0CDC1C54833C/Learn_Linux_Daily.part6.rar

Page 690 of 967 FirstFirst ... 190590640680688689690691692700740790 ... LastLast

Thread Information

Users Browsing this Thread

There are currently 2 users browsing this thread. (1 members and 1 guests)

  1. johndoeth

Similar Threads

  1. Lusty Chicks in Sexy Videos - Mixed Collection
    By sampi9 in forum General Porn Videos
    Replies: 5225
    Last Post: 06-24-2025, 04:25 AM
  2. Pissing tolet Videos / Spycam Collection
    By piligriimmilii in forum Themed XXX Videos
    Replies: 5280
    Last Post: 02-09-2021, 07:05 PM
  3. Gumroad: 3dEx - Tutorial Collection
    By Ajkula in forum Video Tutorials
    Replies: 0
    Last Post: 09-19-2020, 12:08 PM
  4. Hot Teen Porn Videos | New collection
    By zyzyk in forum Themed XXX Videos
    Replies: 112
    Last Post: 09-11-2020, 03:37 PM
  5. Best Old Man Fucking Teen Girl Video XXXX Collection
    By maikuro13 in forum Themed XXX Videos
    Replies: 2034
    Last Post: 03-21-2020, 05:36 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •