Main public logs
From mylearnings
Jump to navigationJump to search
Combined display of all available logs of mylearnings. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 03:26, 2 July 2025 Pristal talk contribs created page Core Dumps (Created page with "= What is a Core Dump ? = * A core dump is a snapshot of the programs memory mappings and state when it crashed. * A core dump can be used to analyze the reason for the crash. * A core can come from User space programs or even kernel. ::- Core get generated when the user space program receives certain signal like (For detail check **man -7 signal** * Kernel is having special mechanism for booting a secondary kernel and collect the core for primary kernal. ::- In linux th...")
- 13:11, 16 June 2025 Pristal talk contribs created page Commands Line Utilities (Created page with "= Process = * Find PID of a known program. <pre> pidof <application name> </pre> * Find all the direct and indirect child processes of a process. <pre> pstree -p <PID> </pre> * List all the files opened by a process with PID. <pre> lsof -p <PID> </pre> * Find details of a file descriptor corresponding to a PID. <pre> lsof -p <PID> -a -d <FD> </pre> ::- -a => Stands for 'AND' Operation. ::- -d => File descriptor for which we need to find details. * Find Parent (PPID)...")
- 12:52, 16 June 2025 Pristal talk contribs created page DataBases (Created page with "= Redis = = Portgress = = MariaDB =")
- 12:47, 16 June 2025 Pristal talk contribs created page Build Systems (Created page with "* Build System's Goals # Automate the compilation and linking of source files into executables. # Recompile only the changed portion of the source code, and the portions dependent on the changed code. # The build system should be a programming language that allows you to avoid redundant code. = CMAKE = = Makefile = = Bmake = = Automake & Autotools = = Cross Compilation =")
- 12:32, 16 June 2025 Pristal talk contribs created page Terminal Multiplexer (TMUX) (Created page with "* Open a tmux session in shared mode. <pre> tmux -S /tmp/<name> </pre> * Connect to a shared session. <pre> tmux -S /tmp/<name> attach * Detach from current session <pre> <prefix> + d </pre> * View all the tmux sessions running. <pre> tmux ls </pre> * Attach to a session. <pre> tmux attach -t <name/number> </pre> * Rename a tmux session. <pre> tmux rename-session -t <session name/number> <new name> </pre> * Start a new tmux session with name <pre> tmux new -s <sess...")
- 11:08, 16 June 2025 Pristal talk contribs created page File System (Created page with "* Check filesystem type. <pre> df -T <Path> </pre> * See details about a mount. <pre> findmnt -T <Path> </pre>")
- 11:05, 16 June 2025 Pristal talk contribs created page Explore Processes (Created page with "* Find PID of a known program. <pre> pidof <application name> </pre> * Find all the direct and indirect child processes of a process. <pre> pstree -p <PID> </pre> * List all the files opened by a process with PID. <pre> lsof -p <PID> </pre> * Find details of a file descriptor corresponding to a PID. <pre> lsof -p <PID> -a -d <FD> </pre> ::- -a => Stands for 'AND' Operation. ::- -d => File descriptor for which we need to find details. * Find Parent (PPID) of a process...")
- 09:48, 16 June 2025 Pristal talk contribs created page Formating Output (Created page with "<pre> <command> | uniq </pre> ::- Prints only unique line.")
- 04:43, 16 June 2025 162.158.216.160 talk created page Apache (Created page with "= Overview = * Apache2 server like Nginx, operates in Layer 7/Application Layer. It understands http, https...etc * It is the first webserver that was deployed over the web. * Apache2 is extended using modules. Actually module is a shared library. <pre> root@vector:/etc/apache2# a2query Usage: /usr/sbin/a2query -q -m [MODULE] -s [SITE] -c [CONF] -a -v -M -d -h -q suppress any output. Useful for invocation from scripts -m [MODULE] checks whether the mod...")
- 08:34, 18 May 2025 Pristal talk contribs created page Networking (Created page with "= NetCat Command = * nc = Dig Command = * dig = Nmap Command = = Curl Command = = Wget Command =")
- 08:20, 18 May 2025 Pristal talk contribs created page File System Navigation (Created page with "= pwd : Present Working Directory = = ls : List =")
- 15:00, 14 May 2025 MediaWiki default talk contribs created page Main Page