Emma Shy

@ezsmile08
0 Followers
12 Following
32 Posts

Let me get this straight...

Students getting relief from onerous debt is unconstitutional.

But justices secretly getting hundreds of thousands or even millions of dollars in gifts, vacations, and free housing and education for their family members is just fine.

Hello?

Critique of Keller's poor apologetics
-- The Reason for God (Tim Keller Talks at Google response) --
(from Paulogia)
https://www.youtube.com/watch?v=IwbQTf7XH_g
The Reason for God (Tim Keller Talks at Google response)

YouTube

Here is how you list all physically installed network cards in #Linux connected to the PCI bus:

sudo hwinfo --short --netcard
sudo lshw -C network -short
sudo inxi -N
sudo lspci | grep -Ei 'eth|network|ethernet|wireless|wifi'

See https://www.cyberciti.biz/faq/linux-list-network-interfaces-names-command/ for other examples.

I think I will change my title from "Linux sysadmin" to "Prompt engineering". My prompts are simple tho:
```bash

man -k word
man {command}
info {command}

```

Please don't tell anyone about my secrets. 🤣

Had a friendly kitty visitor on my front step this afternoon.

#cat #calicocat

Open terminal and type the following on #Linux to print your BIOS version and other info:
```
for d in system-manufacturer system-product-name bios-release-date bios-version
do
echo "${d^} : " $(sudo dmidecode -s ${d})
done
```
See https://www.cyberciti.biz/faq/check-bios-version-linux/ for more info. #sysadmin #debian #linuxmint #centos #ubuntu
Linux Find Out BIOS Version Using a Command Line Option - nixCraft

Explains how to find out Linux laptop or workstation / PC or server BIOS version without rebooting the machine using command line shell prompt.