Dimas Maulana

Dimas Maulana

Developer

Welcome to my website! I am a developer with a current focus on React and Go. My experience encompasses both front-end and back-end development, enabling me to design and develop seamless and efficient applications.

SSHD Windows 10 Not Accepting Public Key

If you’re experiencing issues with SSHD on Windows 10 not accepting your public key, there are a few steps you can take to troubleshoot the problem. Follow the steps below to resolve the issue.

Step 1: Open the SSHD Configuration File

To begin, open the SSHD configuration file using a text editor. In this example, we’ll use the Bash shell and the vim editor. Open a command prompt and navigate to the following directory:

Sharing Docker Daemon From Windows to Local Network

To share the Docker Daemon running on a Windows machine with other devices on your local network, you can use the netsh command to perform port forwarding. This will allow you to access the Docker Daemon remotely using the machine’s IP address and the forwarded port. Here’s how you can do it:

  1. Open Command Prompt as Administrator: To execute the netsh command, you need administrative privileges. Right-click on the Command Prompt and choose “Run as administrator.”

Troubleshooting L2TP VPN Connection Issue on Windows 10

If you’re experiencing difficulties connecting to an L2TP VPN (Layer 2 Tunneling Protocol) on Windows 10, there are a few troubleshooting steps you can follow. This guide will walk you through the process of adding a registry key and ensuring the necessary protocols are allowed to establish a successful L2TP VPN connection.

Adding the Registry Key

To begin, you’ll need to add a registry key that can help resolve L2TP VPN connectivity issues. Follow the steps below:

How to Allow Root Login in Ubuntu 18.04

In Ubuntu 18.04, the root account is typically disabled for security reasons. However, there might be situations where you need to enable root login temporarily. Please note that enabling root login should be done with caution, and it’s recommended to only do so when absolutely necessary. Here’s a step-by-step guide on how to allow root login in Ubuntu 18.04:

Step 1: Set the Root Password Before enabling root login, you need to set a password for the root account. Open a terminal and run the following command:

Introduction to Rsync

rsync is a powerful and widely used command-line utility in Unix-like operating systems that facilitates efficient and reliable file synchronization and data transfer between directories or across different machines. It is particularly useful for remote backups, mirroring, and incremental transfers. The name “rsync” stands for “remote synchronization.”

Basic Syncing

Syncing Folder src into dest

To synchronize the contents of a local folder src into another local folder dest, you can use the following command:

Working With Tar Compressed Archives in Linux

In Linux, the tar command is commonly used for archiving and extracting files and directories. Tar archives can be compressed to save space using various compression algorithms like gzip (*.tar.gz) or bzip2 (*.tar.bz2). This guide will cover how to create, extract, and work with tar compressed archives in Linux.

Compressing Files and Directories with Tar

1. Create a Tar Archive

To create a tar archive of a folder, use the tar -cvpf command:

0%