Blogs

Git basics

Install git in ubuntu

sudo apt-get install git 

Check git installation

git --version

Configure preferences

git config --global user.name "alejandrobernalcollazos"
git config --global user.email alejandro@alejandrobernalcollazos.com
git config --global core.editor vim
git config --global merge.tool kdiff3

In these configurations

Chapter 12. Filesystem Features : Attributes, Creating, Checking, Mounting

Objectives

  • Be familiar with concepts like inodes, directory files and extended attributes
  • Create and format filesystems
  • Check and fix error on filesystems
  • Mount and unmount filesystems

Inodes, directory files and extended attributes

Inodes

Its a data structure that stores information about a given file, such information includes

Pages

Subscribe to RSS - blogs