linux - A short tutorial about the 🔍 find command

A short tutorial about the 🔍 find command

I recently wrote a letter to my congressperson. I don’t remember the name of the file, but I created it less than 7 days ago, it was smaller than 100k, and it contained the work ‘Nesto’. How would I use locate to find this file...

linux - Make an 💿 ISO image

Make an 💿 ISO image

To make an ISO from your CD/DVD, place the media in your drive but do not mount it. If it automounts, unmount it. dd if=/dev/dvd of=dvd.iso # for dvd dd if=/dev/cdrom of=cd.iso # for cdrom dd if=/dev/scd0 of=cd.iso # if cdrom is scsi To make an ISO...

windows 10 2018 insider wallpaper - ⚠️ Error message: conflicting credentials

⚠️ Error message: conflicting credentials

After you’ve set up Samba, when you try to connect to your Samba share from a Windows machine, you might get this error: “The credentials supplied conflict with an existing set of credentials.” Ths occurs because you’ve...

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...