Commonly used command for Linux

Here is a blog to notes some commonly used Linux command of me, which will be continuously updated.
Disk
View the size and used size of your space
df -h
View the disks and blocks
lsblk
Search for a command to run...

Here is a blog to notes some commonly used Linux command of me, which will be continuously updated.
df -h
lsblk
No comments yet. Be the first to comment.
There are many useful tools in Linux to help us to explore the world. However, different from graphic tools, they are in fact some instructions in Linux, which motivates me to record some of them here, for sharing and my poor memory. strace Strace is...
Introduction In C#, there is a type named ValueType. Numeric types such as int, double are all derived from it. Sometimes we may want to compare two ValueType object (the two object are actually the same numeric type). In some conditions, though we c...

This is a blog recording little tricks I meet or use in C/C++. I will update this blog every time I meet a new trick. (If my memory is good enough to remember this blog😂) Use "R" to cancel escape of string. Use gsl::narrow to cast from one type to ...
Recently, in my open-source project Num.NET, a problem puzzled me. The problem I abstract my code as below: define.h template<typename T> class Methods{ public: T methodA(T inp); void methodB(vector<T> &inp, int c); } impl.cpp template<type...

Since 4th, January, I have worked in Microsoft as an intern for nearly two months. During the period, I really learned a lot from my colleague so that I want to record them here. Do exactly what the project supposes you to do The first lesson from Mi...
