Categories
Articles Firewall

Samba Installation and User Authorization on Ubuntu 24.04

Samba Installation and User Authorization on Ubuntu 24.04

This document provides a step-by-step guide for installing and configuring the Samba service on an Ubuntu 24.04 server, including granting a user access to a specific shared directory (e.g., for storing 5651 logs).

1. System Update and Required Packages

sudo apt update && sudo apt upgrade -y
sudo apt install samba -y

2. Create the Shared Directory

sudo mkdir -p /srv/samba/share5651
sudo chown root:root /srv/samba/share5651
sudo chmod 755 /srv/samba/share5651

3. Create the Samba User

sudo adduser berqlog
sudo smbpasswd -a berqlog

Note: Ensure the password is set for both the system and Samba. ...  READ MORE ❯❯❯

Categories
Articles Azure

Azure VM: Resolving the c0000034 Fatal Error

Azure VM: Resolving the c0000034 Fatal Error

One of the critical issues you may encounter when working with Azure Virtual Machines (VMs) is the “c0000034” fatal error. This error typically occurs in Windows operating systems and is usually caused by a corrupt registry hive. The Windows registry is a critical database that stores configuration settings and options for the OS and installed applications. If the registry becomes corrupt, it can prevent the system from booting, leading to serious errors. ...  READ MORE ❯❯❯

Categories
Articles

On Writing: Pen and Computer in the Shadow of Technology

Image by Freepik

“Söz uçar, yazı kalır.” This proverb is a piece of wisdom that emphasizes the importance and permanence of writing. As technology rapidly evolves and digitalization becomes increasingly prevalent in our lives, the role and function of writing are also undergoing transformation. So, what is the relationship between pen and computer in the shadow of this change?

Advantages of the Computer: ...  READ MORE ❯❯❯

Categories
Articles Azure

What is Azure Identity and Access Management (AIM)?

Image by creativearton Freepik

With the proliferation of cloud computing, organizations need robust and secure solutions for identity and access management (IAM). Azure Identity and Access Management (AIM) is a platform that enables you to manage access and identities to your Azure resources. AIM unifies various Azure IAM services such as Azure RBAC, Azure AD, and Azure MFA into a single platform.Key Features of AIM:

  • Centralized identity management: AIM provides a single identity store for all your Azure resources.
  • Easy access management: AIM lets you easily manage access to Azure resources with Azure RBAC.
  • Enhanced security: AIM helps you protect your Azure resources from unauthorized access with Azure AD and Azure MFA.
  • Compliance: AIM helps you control access controls and meet compliance requirements.

AIM Use Cases: ...  READ MORE ❯❯❯

Categories
Articles Azure

Detailed Review of Azure ARM

Azure Resource Manager (ARM) is one of the cornerstones of Microsoft Azure and a powerful tool that simplifies infrastructure management. In this section, we will explore the functions, benefits and use cases of ARM in more detail. ...  READ MORE ❯❯❯