Kali Linux

Kali Linux is a Debian-derived Linux distribution designed for digital forensics and penetration testing. It’s maintained and funded by Offensive Security.
www.kali.org

windows 10 2018 insider wallpaper - Mount Windows and Linux floppies 💾

Mount Windows and Linux floppies 💾

To alternate between mounting a Linux-formatted (ext2) floppy disk and a Windows-formatted (vfat) floppy disk: Create a directory like /mnt/winfloppyAs root, pico /etc/fstabEnter the following into fstab: /dev/fd0 /mnt/floppy ext2...

linux - Cannot mount 💿 CD-ROM

Cannot mount 💿 CD-ROM

In order, try these solutions:

As root, type:

/sbin/depmod -ae

As root, type (replace “2.4.7-10” with your kernel number):

insmod /lib/modules/2.4.7-10/kernel/drivers/cdrom/cdrom.o

linux - Memory information

Memory information

Run at the command line:

cat /proc/meminfo = memory usage information

free = how much memory is currently unused

windows 10 2018 insider wallpaper - Ports

Ports

Parallel ports

Windows uses lpt1, lpt2, & lpt3.Linux uses /dev/lp0, /dev/lp1, & /dev/lp2.

Serial ports

Windows uses com1, com2, & so on.Linux uses /dev/ttyS0, /dev/ttyS1, & so on.

linux - Serve an 💿 ISO image over a network

Serve an 💿 ISO image over a network

Let’s say you want to serve an ISO image of Red Hat 7.3 over a network so that others can mount and use it. To accomplish this goal, do the following: mkdir -p /pub/redhat/os dd if=/dev/cdrom of=/pub/redhat/cd1.iso mount -o loop...