2024年4月25日星期四

[LINUX]Install CentOS on VMWare can not enable network connection

 Tested install CentOS7 on an old VMWare with ESXi 5.5.

After change VM resource memory more than 2 GB, installed CentOS7 successfully.

But anyway, I can not get the network work.

I checked any possible reason, including but not limited to VM resource, VM network, Device on CentOS, etc., everything is working fine. But CentOS will have no network.

BTW, configure on CentOS also setup properly like below: (let's suppose that you have the interface as enp0s3 with the static ip 192.168.1.11/24)

nmcli d  ## to check which interface you are using.

nmcli c modify enp0s3 ipv4.address 192.168.1.11/24  ## setup ip

nmcli c modify enp0s3 ipv4.gateway 192.168.1.1 ## setup default gateway 

nmcli c modify enp0s3 ipv4.method manual  ## static ip

It will change [BOOTPROTO=dhcp→none]

sudo systemctl restart networkmanager

Does it seem fine?

No, there is a very important thing.

You have to enable the network interface first via below:

nmcli c m enp0s3 connection.autoconnect yes 

It will change [ONBOOT=no→yes], or the interface will not work as you expected. 


You may also need below step to confirm the network to see if it can working fine.

Show network configuration.

nmcli d show enp0s3

Edit host file to obtain your host name with your ip.

192.168.1.1 your_router_name #router

192.168.1.11 your_hostname #

Confirm [/etc/resov.conf], it should show something as below:

nameserver 192.168.1.1

Then ping local and remote URL to see if the DNS can resolve the domain name and get ICMP traffic from them. 

 

[MacOS]Add auto log function to terminal.app

Boring with Mac terminal color of white and black?

Ok, you can change the theme.

I like the homebrew theme, but it has too bright color for text.

OK, that is not my point.

For some reason, I need to add a function for terminal.app on Mac to record the command and screen output as what I can see.

You can go to the menu, [Terminal] -> [Configuration] -> Click the theme you are using [Shell]. Then you will see a startup shell command input.

 now=`date +%Y%m%d%H%M%S`;logpath=~/scriptlogs/script_${now}.txt;script ${logpath}

Just copy and paste above. It will add auto execute script when terminal.app start up and execute it with script command of unix.

You also can change the following path to where you want to keep your log. "~/scriptlogs/"  

Then check the execute in shell. You need shutdown terminal.app and start it again.

Now you have an auto log for Mac terminal.app.

But most people will ignore one thing...

If you try to execute the command [cat the log] in the terminal.app, you will get into a loop...and a fast increased size log file till your system crash. 

Because the screen out put will be written to log imediately and it was also shown as standard output then it will be recorded to log again and again. 


2024年4月24日星期三

[CentOS]When trying to install CentOS stream on VMware, it got [kernal error] error

Just want to try new CentOS stream, so reopen the VMware machine.

It is running on a very old ESXi 5.5 via a vSphere center 5.5 from about 10 years ago.

After mounted the OS, it showed below [Kernal panic] error.


Considered it is a very old system, then I tested CentOS7. Same error occurred.

So it should be a something else.

Noticed that I created the VM machine based on ESXi default configuration. It was set the memory as 384MB as a template for CentOS 4/5/6 or any Linux version. That is it.

CentOS 7 run in a necessary requirement at least 1GB memory. Sorry, no any official document link, just got advices from many sites...

In fact, I set it as 512MB, it is also running.

2024年4月18日星期四

[LinkedIn]How to enable #OpenToWork Tag in LinkedIn

This is nothing related to technic, just for the feature of LinkedIn.

It is really hard to find it....

 

To enable the #OpenToWork feature:

  1. Click the Me icon at the top of your LinkedIn homepage.
  2. Click View profile.
  3. Click the Open to button.
  4. Click Finding a new job.
  5. Provide the requested information in the pop-up window that appears. ...
  6. Click Add to profile.

2024年4月16日星期二

[YAMAHA Router]The difference between YAMAHA Router RTX1210 and RTX1220

Have a request to compare YAMAHA Router RTX1210 and RTX1220.
For some meaning, it is a best replacement of CISCO Router which always need high price maintenance contract.

According to YAMAHA site, only below changed.
Not so much improvement.
But in auction with price, they have about 40,000 difference...

So if I should refresh the hardware, it is a problem...

項目RTX1220RTX1210
希望小売価格(税抜)118,000円125,000円
認証番号D20-0252001/M20-0021CD14-0216001/M14-0011
JANコード49 57812 67103 349 57812 57644 4
ISDN S/Tポート非搭載1ポート(終端抵抗ON/OFF可能)
対応回線およびサービス網ISDN(BRI)非対応対応
高速デジタル専用線(64kbit/s, 128kbit/s)非対応対応
WANプロトコルPPP非対応対応
MP非対応対応
QoS機能(制御方式)CBQ非対応対応
WFQ非対応対応
認証機能ISDN識別着信非対応対応
バックアップ機能ISDNへのバックアップ非対応対応
設定手段ISDN回線経由のリモートセットアップ非対応対応
その他機能BOD(MP, BACP)非対応対応
リモートアクセスサーバー非対応対応
コールバック(無課金独自方式, Windows標準方式)非対応対応
状態表示ランプISDN[L1/B1, B2]非搭載搭載
付属品CD-ROM(1枚:[PDF]取扱説明書, コマンドリファレンス, 設定例集, [ソフトウェア]RT-FileGuard, MD5SUM)なしあり
最大1年間無償のYNOライセンスありなし
ファームウェアRev.15.04系Rev.14.01系
 

2024年4月15日星期一

[Python]Use Python to send form data to page

 Consider to request a form URL to get the site accept the data.

import requests # Define the form data form_data = { 'name': 'G X', 'email': 'gx@gx.com' } # Send a POST request with the form data response = requests.post('http://gx.com/submit', data=form_data) # Check if the request was successful (status code 200) if response.status_code == 200: print('Form submitted successfully') else: print('Failed to submit the form')


But actually, it won't work for the site I had expected.

Because the site will use a one-time serial session id to identify the request. need to update.

Yes, you are right. this is a tips for company timecard registration automation. 

 

2024年4月13日星期六

Cloud Service Comparison Cheat Sheet

 Just got one sheet for comparison 4 cloud services difference.


Hope can help someone, including me.