Uniquely existing number for all the files in linux/unix filesystem.
The first number on the left indicates the inode number. -i
flag is used to get the inode number
Note: The Inode doesn't contain file content, instead it has a pointer to that data.
Ref:
A process which has finished the execution but still has entry in the process table to report to its parent process is known as a zombie process.
You can’t kill a zombie process because it’s already dead. It won’t respond to any signals because it’s been removed from memory—there’s nowhere to send a SIGKILL signal. You can try sending the SIGCHLD signal to the parent process, but if it didn’t work when the child process terminated, it’s unlikely to work now, either.
The only reliable solution is to kill the parent process. When it’s terminated, its child processes are inherited by the init process, which is the first process to run in a Linux system (its process ID is 1).
NOTE: Zombies Aren’t Scary … … unless they’re in a massive horde. A few aren’t anything to worry about and a simple reboot will wipe them out.
Samba is an extremely useful networking tool for anyone who has both Windows and Unix systems on his network. Running on a Unix system, it allows Windows to share files and printers on the Unix host, and it also allows Unix users to access resources shared by Windows systems.
Samba is a suite of Unix applications that speak the Server Message Block (SMB) protocol. Microsoft Windows operating systems and the OS/2 operating system use SMB to perform client-server networking for file and printer sharing and associated operations. By supporting this protocol, Samba enables computers running Unix to get in on the action, communicating with the same networking protocol as Microsoft Windows and appearing as another Windows system on the network from the perspective of a Windows client.
TLB (Translation Lookaside Buffer)
`pbcopy` Use `pbcopy` with pipe for copying the output of the previous command. e.g.cat abc.txt | pbcopy
Ref: