Notes, summaries, assignments, exams, and problems for Technology

Sort by
Subject
Level

Windows Server 2016 Fundamentals: Storage, Networking, and Security

Posted by Anonymous and classified in Technology

Written on in English with a size of 3.56 KB

Windows Server 2016 Disk Storage Types: Basic vs. Dynamic

Windows Server 2016 supports two essential disk storage types: basic disks and dynamic disks. They differ significantly in how they manage partitions and volumes:

  • Basic Disks: Use traditional disk management techniques and contain primary partitions, extended partitions, and logical drives.
  • Dynamic Disks: Do not use traditional partitioning. Dynamic disks offer greater flexibility than basic disks, providing virtually no restriction on the number of volumes that can be created on a single disk.

Purpose and Function of a Subnet Mask

A subnet mask is a crucial component in networking used to divide an IP address into two distinct parts: the network portion and the host portion. Its primary... Continue reading "Windows Server 2016 Fundamentals: Storage, Networking, and Security" »

Distillation Column and Reactor Control Strategies

Classified in Technology

Written on in English with a size of 1.1 MB

Overhead Pressure Control in Distillation Columns

kAAAAASUVORK5CYII= FKQJzZmkEgPvrhy0XKlhV3K7I9goSEfJTChhoDkDUZDmlGfCMNARA1GQjpKZUMJAcwaiIM0pz4RhoCMGoiAdJTOhhIHmDLwASUYBLTpqOq4AAAAASUVORK5CYII=

+P3+N99888CBAwWl10hKQAkogWIJqEwXSu6zzz6rqqpauXLlQw899Nxzz91777133XWXz+crNL3GUwJKQAkURUBlulBs4XD4wQcfrBLXjh07Ck2s8ZSAElACxRJQmbZB7tChQ1Tpe+65JxAI2EisUZWAElACRRFQmbaBLRQKPfDAA1Dq7du320ipUZWAElACxRJQmbZH7uDBg1VVVXfffbff77eXUmMrASWgBIoioDJtD1soFLrvvvveeecde8k0thJQAkqgWAIq07bJnThxwuPx2E6mCZSAElACRRFQmS4KmyZSAkpACSwWgf8HDAMDAdOh2W4AAAAASUVORK5CYII=

Level in the Overhead Drum

h8I4qxFdh8iQAAAAABJRU5ErkJggg== OCCpVZUpWecAAAAASUVORK5CYII=

B3Nb+ohpYt03AAAAAElFTkSuQmCC

Column Bottom Level Control

x9bL7ItOibodAAAAABJRU5ErkJggg== AwXGKBUHNnGBAAAAAElFTkSuQmCC

Na6Ea7FA8PgAAAAASUVORK5CYII=

Concentration Measurement

Concentration measurement is usually replaced by temperature measurement due to its simplicity, speed, and reliability. To choose the best tray for temperature control, various criteria are applied. One common method is the slope criterion, which selects the tray exhibiting the largest temperature changes relative to the adjacent tray (excluding the first tray).

Distillation Column Flow Control

For a distillation column with a single liquid phase and a simple partial condenser where only inerts remain in the vapor phase, several flow control possibilities exist. These must adhere to the following rules:

  • Rule 1: Only
... Continue reading "Distillation Column and Reactor Control Strategies" »

Motorcycle Engineering and Performance Dynamics

Classified in Technology

Written on in English with a size of 4.86 KB

Motorcycle Chassis and Design Fundamentals

  • Bike–ground connection: Comprises 5 parts: the front wheel, rear wheel, fork, swingarm, and frame.
  • Chassis-Program: A tool used to analyze geometric changes in the motorbike.
  • Center of Gravity (CoG): Its optimal position depends on the motorbike's specific purpose.
  • Motorbike stiffness: A critical design feature for performance and handling.
  • Design process: Focuses on the engine, weight balance, and stiffness.

Stability and Gyroscopic Influence

  • Gyroscopic effect influence: Most significant at high speeds.
  • Engine part for stability: The crankshaft is the primary component affecting stability.
  • Trail: Negative trail must be avoided; a larger trail results in a bigger righting moment.
  • Trail increase: Occurs when
... Continue reading "Motorcycle Engineering and Performance Dynamics" »

Essential Linux and Windows Log Commands for Troubleshooting

Classified in Technology

Written on in English with a size of 3.49 KB

Terminal and Log Command Examples

grep -i system /etc/passwd
grep -i ubuntu /etc/passwd
grep -i '*ubuntu*' /etc/passwd
grep -i "sync$" /etc/passwd
grep -E 'info|warn' /var/log/*log* && history | tail -n 2
Windows
findstr "*error*" C:\Windows\Logs\CBS\CBS.log
Select-String -Path "C:\Windows\Logs\dism\dism.log" -Pattern "2024-04 Manager"
findstr "^2024-01 | Manager" C:\Windows\Logs\DISM\dism.log
findstr /S /I /N "failed" C:\Windows\Logs\*.log
Get-EventLog -List
Get-EventLog -LogName System -Newest 25 | Format-List
wevtutil qe System /c:200 /rd:true /f:text | findstr /i "kernel"
wevtutil qe System /q:"*[System[TimeCreated[@SystemTime>='2023-09-01T00:00:00.000Z']]]" /f:text | findstr /i /c:"ProviderName: Disk"

Disk and Mount Commands

fdisk
... Continue reading "Essential Linux and Windows Log Commands for Troubleshooting" »

Mastering Microsoft Access Field Creation and Data Types

Classified in Technology

Written on in English with a size of 3.35 KB

Mastering Microsoft Access Field Creation

Methods for Creating Fields in Access

There are two primary ways to create a field in Microsoft Access:

  1. Adding fields using a predefined template.
  2. Using an existing field copied from another table.

Access Field Templates Collection

Access includes a collection of field templates designed to significantly reduce the time required when setting up new fields.

Understanding Multi-Valued Fields in Access 2007

Multi-valued fields are suitable for specific scenarios, particularly when using Office Access 2007 to interact with information stored in Microsoft Windows SharePoint Services.

Defining Field Properties in Datasheet View

Field properties can be defined in the Datasheet View. Follow these steps:

  1. Open the table
... Continue reading "Mastering Microsoft Access Field Creation and Data Types" »

Centos 5.5

Classified in Technology

Written on in English with a size of 5.39 KB

#useradd nombredeusuario :: para crear usuarios

#passwd :: nombredelusuario

#groupadd :: nombredelgrupo :: (forma normal)

#groupadd -g 600 nombredelgrupo :: (guid sobre 650)

#userdel nombredelusuario :: para deletear usuarios

#groupdelnombredelgrupo :: borrar el grupo

#usermod -G nombredelgrupo nombredeusuario :: para asignar usuario a grupo.

opcion 2: editar archivo /etc/group -> grupo:x:600:usuarioqueseagregara

#nano /etc/shadow :: para poder ver los usuarios y poder bloquearlos

#passwd -l nombredeusuario :: para bloquear usuario

#passwd -u nombredeusuario :: para desbloquear usuario

#sudo passwd :: para cambiar la contraseña de root

# tail /etc/passwd :: paraver informacion de usuarios

#su nombredelotrousuario :: para iniciar sesion como el usuario... Continue reading "Centos 5.5" »

Ship Maneuverability and Evolution Capacity

Classified in Technology

Written on in English with a size of 2.24 KB

Maneuverability of a ship can be defined as the percentage of efficiency that allows the vessel to maintain a course or vary its bow, with the purpose of achieving a certain position with respect to its environment.

Defining Government Capacity

It is the property that the ship must have so that it can change course in the shortest possible time and space.

Maneuvers for Recovery Capacity

The Kempf Maneuver

The Kempf maneuver consists of the following actions:

  • When the yaw rate reaches a constant value, the rudder is placed at 20° to the opposite side.
  • When the yaw rate reaches a value identical to the previous one in the direction of the turn, the rudder is changed to the opposite side again.

Among the most important factors in this maneuver are:

  • Time
... Continue reading "Ship Maneuverability and Evolution Capacity" »

Palo Alto Networks: Core Concepts and Product Ecosystem

Classified in Technology

Written on in English with a size of 633.61 KB

Core Concepts of Palo Alto Networks

Strata

PA-Series: PA-220, PA-800, PA-3200, PA-5200, PA-7000

VM Series: VM-50, VM-100, VM-300, VM-500, VM-700

  • Amazon Web Services
  • Cisco ACI
  • Citrix NetScaler SDX
  • Google Cloud Platform
  • Kernel-based Virtual Machine (KVM)
  • Microsoft Azure and Microsoft Hyper-V
  • OpenStack
  • VMware ESXi, VMware NSX, and VMware vCloud Air

Panorama

  • Policy Management
  • Centralized Visibility
  • Network Security Insights
  • Automated Threat Response
  • Network Security Management
  • Enterprise-Level Reporting and Administration

Prisma (Cloud, SASE, SaaS, VM Series ML-Powered NGFWs)

  • Cloud Security - Delivers complete security across the development lifecycle on any cloud.
  • Prisma Cloud - Cloud Security Posture Management and Workload Protection (Uses API)
    • Alibaba Cloud
    • Amazon
... Continue reading "Palo Alto Networks: Core Concepts and Product Ecosystem" »

Computer Networks: Types and Definitions

Classified in Technology

Written on in English with a size of 2.73 KB

Computer Network and Its Types

A network refers to a collection of interconnected nodes or entities that can communicate and share information with each other. These nodes can be computers, devices, or even people. Networks are used to facilitate the exchange of data, resources, or services among the connected entities.

Types of Networks

There are several types of networks, including:

  • Local Area Network (LAN): LANs are typically limited to a small geographic area, such as a home, office, or campus. They are used for connecting devices within a relatively close proximity, often using Ethernet cables or Wi-Fi.
  • Wide Area Network (WAN): WANs cover larger geographical areas and connect LANs over long distances. The internet is the most extensive example
... Continue reading "Computer Networks: Types and Definitions" »

Synthetic Fibres and Plastics: Properties and Types

Classified in Technology

Written on in English with a size of 2.74 KB

I. Types of Fibres

There are two types of fibres:

  • Natural fibres: Obtained from natural sources (e.g., cotton, silk, wool).
  • Synthetic fibres: Man-made fibres (e.g., rayon, nylon, acrylic).

II. Understanding Polymers

A synthetic fibre is a chain of small units of chemical substances joined together. Many such single units combine to form a single unit called a polymer. The term polymer means "made of many units joined together."

III. Types of Synthetic Fibres

  • Rayon: Synthesized from wood pulp. It resembles silk, so it is also known as artificial silk. Rayon can be dyed in different colours and is much cheaper than silk.
  • Nylon: The first commercially synthesized fibre. It is made from coal, water, and air. Nylon is very strong and its fabric resembles
... Continue reading "Synthetic Fibres and Plastics: Properties and Types" »