Found 1437 Articles for Linux

Docker Container Network Namespace Is Invisible

Vishesh Kumar
Updated on 21-Nov-2022 09:50:49

558 Views

This article will look at a problem with the network namespace file in a Docker container. We'll examine why the network namespace file is invisible to the ip netns ls command. Before moving ahead, let's have a brief overview of Docker, Containers and Network Namespace Containerization Containerization is similar to virtualization, in which an application and all its dependencies and libraries are packaged into a single container; it can run in any computing environment. When the OS kernel and all necessary libraries and dependencies are included in the container, anyone working on the application can use only the container to ... Read More

cURL Command Without Using Cache

Vishesh Kumar
Updated on 21-Nov-2022 09:45:02

1K+ Views

Introduction cURL (Client URL) is a command-line tool. It allows data to be transferred to or from a server without requiring user interaction by utilising the supported libcurl library. cURL can also be used to troubleshoot network connections. In some cases, we may need to send requests that bypass the cache and generate a new response from the server. Caching can occur on the client side (browser cache) or the server side. When using the cURL command, remember that it is only an HTTP client and does not cache any requests on the client side. As a result, any caching ... Read More

Creating a Hex Dump of a File

Vishesh Kumar
Updated on 21-Nov-2022 09:42:30

1K+ Views

Introduction Hexdump shows the binary file contents in hexadecimal, decimal, octal, or ASCII form. It is an inspection tool that is also useful for programming, reverse engineering, and data recovery. It represents the content of a file in hexadecimal form. The various tools we can use to generate a file's hex dump will be covered in this article. We will learn to create a hex dump of a file. To utilise as a model for this article, let's generate an ASCII text file. $ cat >> example.txt This is our sample text in the file. We will convert it ... Read More

Convert Hex to ASCII Characters in the Linux Shell

Vishesh Kumar
Updated on 21-Nov-2022 09:27:21

8K+ Views

Introduction If a numbering system is represented in base 16 then it is considered to be hexadecimal. In this article we will understand to convert Hex to ASCII in the Linux Shell. The hexadecimal system uses a combination of digits and alphabetic characters, and it looks like this −0 1 2 3 4 5 6 7 8 9 A B C D E F Large digital systems are best suited for a hexadecimal numbering system since it can store and express long binary data. Because a total of 16 symbols (both digital and alphabetic, ranging from 0 to F) ... Read More

What is the difference between Gitlab and GitHub?

Muthu Annamalai Venkatachalam
Updated on 11-Oct-2022 12:45:47

178 Views

Introduction GitHub and GitLab are both open-source platforms that use the Git system for version control. Because of this, it is crucial that you select the right tool for your team. This blog aims to resolve all your project puzzles and explain the differences and similarities between GitHub and GitLab. So you can choose them accordingly What is GitHub? The geek world raves about GitHub all the time, but most people are still unaware of what GitHub actually is. In short, GitHub is a web service that helps professionals track and manage their code, as well as store and manage ... Read More

What is the Difference between Git Vs Subversion?

Muthu Annamalai Venkatachalam
Updated on 11-Oct-2022 12:43:23

226 Views

Introduction It is likely you have heard of Version Control Systems (VCS), or source control if you write or track code for a project. A Version Control System serves primarily as a host and a tool for tracking how a project develops. With VCSs, developers are able to compare and track changes between files, track commits, make proposals, view the history of projects, and revert to previous versions. Software teams and developers need a good VCS to implement DevOps, continuous delivery and maintain productivity. Git, SVN, Mercurial, and Perforce are a few of the most popular version control systems. You ... Read More

What is the difference between BitBucket and GitHub?

Muthu Annamalai Venkatachalam
Updated on 11-Oct-2022 12:40:12

202 Views

Introduction The right repository hosting service is critical to the success of a development project. The hosting of your code is crucial to your productivity, and it plays a key role in your work. Since repository hosting services affect development team productivity, choosing the right one can be challenging. The hosting of your code is crucial to your productivity, and it plays a key role in your work. Since repository hosting services affect development team productivity, choosing the right one can be challenging. Git repositories are often located remotely, unlike when working on personal projects. While there are numerous ways ... Read More

Difference between GNU and Unix

Pradeep Kumar
Updated on 21-Jul-2022 12:25:12

979 Views

Even though the majority of us are accustomed to using Windows as our primary operating system, it is important for us to at least be familiar with other operating systems such as Unix, Linux, and others. This does not imply that Windows is the only operating system that has been used globally; rather, it indicates that other systems also take a larger proportion in terms of utilisation. The end functionality, which is using the computers to make our tasks easier, is the same regardless of the operating system that we might choose.Read through this article to find out more about ... Read More

How to Find Out File Types in Linux

Mukul Latiyan
Updated on 19-Jul-2022 15:03:50

3K+ Views

When it comes to Linux operating system, everything in general can be considered as a file. In UNIX, in total, there are seven standard file types −FIFO specialBlock specialCharacter specialSocketRegularDirectorySymbolic linkWhen it comes to Files, these can be mainly categorized into the following categories −Regular FilesDirectory FilesSpecial FilesThe simplest way to find out what a particular file is in an operating system is by looking at what kind of extension that particular file has. The extensions can be '.txt', '.py', '.go', etc. If a particular file does not have any extension in Linux, then we basically call that file as ... Read More

How to Repeat Your Last Command in Linux?

Mukul Latiyan
Updated on 19-Jul-2022 12:41:58

6K+ Views

Linux terminal allows us to execute a variety of commands and sometimes it so happens that we find ourselves in a scenario where we might want to use a certain command more than once. There are many occurrences where we would want to repeat the command that we just ran. In Linux, this can be done with the help of different commands, and in this tutorial, we will explore all such commands with the help of different examples. For reference and simplicity, I will run a single command, say 'ls -ltr' and then use the different methods to search what ... Read More

Advertisements