Skip to main content

3rd Month

    It's very hard for me to begin write something. I think that's in my nature. In this post i will write what happened last three month in new job. Well from my previous post i wrote my expectations for first week. Lets continue. Past three months everything dramatically changed. Year 2020 show us another face of life.  Everyone knows new terminology COVID-19. That's root of changes. Quarantine, quarantine... While writing this post it still continues over the world. In that reason about 50 days we have HO. So, what changed in my life. Actually nothing ))). For person who adopted live in his own world. But during quarantine i study a lot for my carrier purpose. Another great think thanks to quarantine i learned how to properly cook. Even making soup from "axe".
   Lets move to the work. What to say i don't know. For past three month about workplace, system, management it's not bad. But one thing is worrying me that i don't have any tasks, work to do. Only learning. For hard work person it's very hard. You don't have specific learning path. So you moving like traveler without map. You learning trying learn everything which possible. Learning like this, has it's backwards. Because learning without implementing it's like dreams. From time to time forgetting. For hardening knowledge you need participate. Let's hope after quarantine finally we will work.
   So, that's end of this post and beginning point of others...

P.S. I'm not professional English speaker and writer. Just following my heart and brain.

Comments

Popular posts from this blog

Reset root pass in ESXi 5.5

    In this post i will show how to reset root password in ESXi 5.5. For this first we need any bootable linux distributor. In my example i used Ubuntu 16.04.     Boot from Ubuntu disk. Select try Ubuntu, wait for loading. After full loading open Terminal. Type fdisk -l for list all partitions hypervisor/system image is located on the first 250 MB partition (/dev/sda5) which contains the state.tgz file. Mount /dev/sda5 to /mnt sudo -s mount /dev/sda5 /mnt. Go to the /mnt cd /mnt . Copy state.tgz to /tmp folder cp state.tgz /tmp , cd /tmp. Unarchive state.tgz tar xzf state.tgz then   tar xzf local.tgz Go to the /etc directory in /tmp folder  cd etc/ . For deleting resetting password open shadow file with nano shadow  delete the password hash of ESXi root account. Close nano editor. Re add etc/ folder to local.tgz : tar czf local.tgz etc after it readd local.tgz to state.tgz: tar czf state.tgz local.tgz . Copy state.tgz mnt/ folder: cp state.tgz /mnt/ . umount /mnt 

Cheat Sheet

Bash: echo $? - exit status of last command (0 no error) ' - Single quote removes meaning special meaning of special character. find /qwe -type f -iname *.js -exec cp --parents -t /tmp/ {} + -- find all js files and copy with parent directory ystemctl set-default graphical.target (ls -l /lib/systemd/system/runlevel*) -- set runlevel echo <password> | sudo -S for i in t@01 st@02 ba@sta03;do ssh -o RequestTTY=true $i "sudo -l";done -- allow tty present VIM: :r! sed -n '16,812 p' < input_file.txt -- copy line range from input_file :1,10d -- delete line from 1 to 10 :se nu -- show line numbers Apache: Redirection in Apache (By default, the Redirect directive establishes a 302, or temporary, redirect.): URL:https://www.digitalocean.com/community/tutorials/how-to-create-temporary-and-permanent-redirects-with-apache-and-nginx <VirtualHost *:80> ServerName www.domain1.com Redirect 301 /oldlocation http://www.domain2.com/newlocation </VirtualHo