Search
Translate / Traduci
-
Available even in U.S.A. Support Gioorgi Editorial Board
June 2023 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Gioorgi EverGreen
Tag Archives: unix
Ubuntu 20 LTS failed me (only for servers install…:)
On 2023 Ubuntu 18 LTS support will end, so I started to evaluate the next LTS release, Ubuntu 20.
Posted in English Content, Software
Tagged debian, unix
Comments Off on Ubuntu 20 LTS failed me (only for servers install…:)
Bash TCP conection feature
Bash support tcp connection out of the box :) So you can write something like #!/bin/bash webhost="gioorgi.com" exec 5<>/dev/tcp/$webhost/80 echo -e "GET / HTTP/1.1\r\nHost: $webhost\r\nContent-Length: 0\r\n\r" >&5 # get reply: HTTP/1.1 301 Moved Permanently^M cat <&5
Evolution of Service Architecture
Assembly: the only way In principle there was only one: assembly machine language. Hardware and software engineer was a one-role. The guy who was able to project a chip, was the one who was able to program it. Then Fortan … Continue reading
Posted in English Content, IT Featured
Tagged concurrency, horizontal scaling, k8s, SOA, unix
Comments Off on Evolution of Service Architecture
dos2unix for poor basic unix
Do you have cygwin base install right? So no dos2unix…you can convert a windows file to unix format with a small tr command like tr -d '\15\32' < winfile.txt > unixfile.txt I prefer the awk way of life: [bash] awk … Continue reading
Posted in English Content, Knowledgebase
Tagged awk, cygwin, unix
Comments Off on dos2unix for poor basic unix
RaspberryPi 2 Model B SD Life Extender
“The most dangerous phrase in the language is, We’ve always done it this way” – Grace Hopper I am a very happy owner of a RaspberryPi Model B 2, a quad core ARMv7 computation unit for a price between 45 … Continue reading
Posted in IT Featured, Knowledgebase
Tagged maker, raspberrypi, unix
Comments Off on RaspberryPi 2 Model B SD Life Extender
Debian perfect work environment
Working in a big company, my work laptop came with MS-Windows7 Enterprise installed. But as you imagine, Unix is my preferred desktop environment. So let’s how to configure a perfect Debian Linux for a old wolf consultant like me. You … Continue reading
Posted in English Content, IT Featured, Software, Unix
Tagged ibm, it works on my machine, linux, oracle, unix, virtual box, virtualization
Comments Off on Debian perfect work environment
Bash secret powers
Bash scripting has evolved a lot in the last ten years. I get used to relay on bash for all normal “data domination” tasks (like file system refactorings, database extraction and reporting and so on) and switching to python/ruby/perl when … Continue reading