Learn Java and Programming through articles, code examples, and tutorials for developers of all levels.
How to use Strategy Design Pattern in Java? Example Tutorial
10 Examples Of du Command in Linux
Here, we shall be looking at another command in Linux. The” du” command. Before giving the examples you can use with it I will be explaining the du itself, What is being used for and When to use it, and How to use it
So Firstly, What is DU or What does the command mean?
The full meaning of du is Disk usage. This helps in planning and maintaining the file’s space. The command is used to keep track of any files or directories that are taking up too many spaces in the hard disk drive. Now we shall be taking the examples one after the other.
3 Examples of for loop in Linux and Bash Script [Tutorial]
10 ways to Quit/Exit from Vim Editor in Linux/UNIX? Examples
10 Example of ps -ef command in Linux and UNIX
10 Examples of df Command in Linux
Hello, In Today’s article we shall be talking about the df command in Linux. The objectives of this article are: What is the df command, and what does it mean? How is it used? I shall be providing 10 different examples or scenarios for it and when to use it
What does df mean?
The meaning of df in Linux is disk-free or disk file system. Which is used to display the file system in the likes of total storage space, available storage space and etc.
Df command in Linux is a command or syntax in Linux that you doing away with it is almost impossible
You may begin to wonder or ask Why or When do You need to use it?
How to use PreparedStatement in Java - JDBC Example Tutorial
How to Create and Start Multiple Threads in Java? - Example Tutorial
How to use wait, notify, and notifyAll in Java? Example Tutorial
How to Join and Merge Two ArrayLists in Java - Example Tutorial
What is Iterator in Java? Example
How to convert Java object to JSON String using Gson? Example Tutorial
Why String is Immutable or final in Java - 5 Reasons
Difference between Array vs ArrayList in Java
Difference between HashMap and ConcurrentHashMap in Java? Example
What is the difference between an HashMap and ConcurrentHashMap in Java is one of the common interview questions and knowing the answer is not just important for interviews but also for writing robust and high performance Java cocd. ConcurrentHashMap in Java is introduced as an alternative of Hashtable in Java, which is a synchronized collection class, that makes the main difference between HashMap and ConcurrentHashMap which is one is non-synchronized , non-thread safe and not for use in Concurrent multi-threaded environment while ConcurrentHashMap is a thread-safe collection and intended to be used as primary Map implementation especially for multi-threaded and Concurrent environment.