A set of requirements for active Operations, Administration, and Maintenance (OAM) for Service Function Chaining (SFC) in a network is
nikitonsky: Everything is a Video Call if you are brave enough
Chapman Adventure Playground in the Gathering Place, Tulsa, Oklahoma (© Susan Vineyard/Alamy)
nikitonsky: Once you have a good thing, stop.
Alam-Pedja Nature Reserve, Estonia (© Sven Zacek/Minden Pictures)
Polar bear mother and cubs, Churchill, Manitoba, Canada (© Thorsten Milse/Getty Images)
nikitonsky: It became the norm to show irrelevant search results when you run out of relevant ones. I guess the thinking goes “better show something than nothing”.
Bad River in Copper Falls State Park, Wisconsin (© Big Joe/Getty Images)
Mozilla has just launched the AI Guide, a collaborative hub for developers to join forces, inspire each other, and lead the way in groundbreaking generative AI advancements. The AI Guide’s initial focus begins with language models and the aim is to…
An actual but where did my Linux memory go command;
This program
(repositories) came in handy while
helping someone resolve an problem. Want to
see memory usage and shared memory, perhaps
sorted by swap?
smem -s swap -kta
smem --sort swap --abbreviate --totals --autosize
What about on other categories running a --sort
?
swap (amount of swap space consumed ignoring sharing)
command (process command line)
maps (total mappings count)
name (process name)
pid (process id #)
user (process owner)
pss (proportional set size including sharing)
rss (resident set size ignoring sharing)
uss (unique set size)
vss (virtual set size; total virtual memory mapped)
Bonus: A filesystem usage command to catch
/tmp/
and tmpfs
(temporary file storage) abusers;
df -h | grep tmpfs
df --human-readable | grep tmpfs