Vim Editor

Well, recently i often work with docker and control config on server, i suffered a lot due to my weakness regards vim usage on linux. Turn out, these basic things prove significant as you’d like to pursue DevOps career. It would be great to improve on my vim skill by taking note down the essential of this powerful editor. Moreover, there is one tutor right in your Ubuntu terminal. Let’s get started and hope you learn something. [Read More]
vim  linux 

Archive Command

Quick note for compress files

There are many types of compress file, with each type we should have different command to interact with it. To find which archive type we are working with, use file command. $ file a.zip a.zip: Zip archive data, at least v1.0 to extract $ file b.tar b.tar: POSIX tar archive (GNU) $ file c.tar.gz c.tar.gz: gzip compressed data, last modified: Tue Aug 20 04:33:47 2019, from Unix Here are some most common types i’ve been working with recently. [Read More]