Search found 943 matches

by cah
Fri Apr 12, 2024 1:21 pm
Forum: Technology / 科技交流
Topic: Removal of the current directory (".") from @INC in Perl 5.26.0
Replies: 0
Views: 7971

Removal of the current directory (".") from @INC in Perl 5.26.0

I ran into an issue and found starting version 5.26.0, the current directory (".") had been removed from @INC. All files in require line assuming current directory being included in @INC will fail. This line will fail because it assumes current directory is included in @INV: require "...
by cah
Sun Mar 10, 2024 1:44 am
Forum: Technology / 科技交流
Topic: Sendmail changes after switching from Frontier to Spectrum
Replies: 0
Views: 5002

Sendmail changes after switching from Frontier to Spectrum

Due to price increase by Frontier, I decided to switch to Spectrum for lower price ($39.99/month for 1 Gbps download). Today (03/09/2024), the technician came to connect the internet feed to the cable modem. The Ethernet cable was swapped from ONT box to cable modem's only ethernet port and the exis...
by cah
Sun Feb 25, 2024 12:33 am
Forum: Technology / 科技交流
Topic: SSD can't be detected on DELL Precision 7520 laptop
Replies: 1
Views: 2372

PCIe NVME M2 SSD on DELL Precision T7500

I bought a PCIe 4 adapter and a Western Digital WD_BLACK 1TB SN770 NVMe Internal Gaming SSD Solid State Drive - Gen4 PCIe, M.2 2280, Up to 5,150 MB/s - WDS100T3X0E for Dell Precision T7500 workstation to prepare a Ubuntu for Da-Yi. Finally got a chance to put everything together. I first try to plac...
by cah
Wed Feb 21, 2024 2:11 pm
Forum: Technology / 科技交流
Topic: Color 'ls' and 'grep'
Replies: 0
Views: 5293

Color 'ls' and 'grep'

Newer Linux servers provide colors for some commands such as 'ls' and 'grep'. By default, there's no color for ls. One can use --color=auto or --color-always to show different colors. The colors are defined in /etc: DIR_COLORS DIR_COLORS.256color DIR_COLORS.lightbgcolor GREP_COLORS One can perhaps m...
by cah
Thu Feb 08, 2024 3:58 pm
Forum: Technology / 科技交流
Topic: Update Rocky 8.7 to 8.9
Replies: 0
Views: 5487

Update Rocky 8.7 to 8.9

dnf check-update dnf update After this, /etc/os-release shows version 8.9 but 'uname-a' still shows '4.18.0-425.3.1.el8. Reboot the server and the kernel became 4.18.0-513.11.1.el8_9. All functions seemed to work fine except web server is showing a testing page. Digging deeper and found /usr/lib/sy...
by cah
Thu Feb 08, 2024 12:18 am
Forum: Technology / 科技交流
Topic: Upgrade Rocky Linux 8 to 9
Replies: 0
Views: 5320

Upgrade Rocky Linux 8 to 9

by cah
Wed Jan 24, 2024 3:35 pm
Forum: Technology / 科技交流
Topic: Generate encrypted passwords using openssl
Replies: 0
Views: 5621

Generate encrypted passwords using openssl

It is convenient to generate encrypted passwords from command line without prompt. Here is a useful command to use openssl to generate MD5 passwords. echo '<PWD>' | openssl passwd -1 -1 MD5-based password algorithm -apr1 MD5-based password algorithm, Apache variant Example: echo 'testpwd' | openssl ...
by cah
Mon Jan 08, 2024 11:27 pm
Forum: Technology / 科技交流
Topic: How to stop supervise a child's account in Google Family Link?
Replies: 0
Views: 5759

How to stop supervise a child's account in Google Family Link?

Searching for a solution to stop supervising a child in Google Family Link but it was very frustrating. The stop supervision was unavailable so I couldn't follow Google's steps. Found a post in Google account help that helped solve the issue. https://support.google.com/accounts/thread/133107660/fami...
by cah
Wed Jan 03, 2024 1:25 am
Forum: Technology / 科技交流
Topic: Finding Checksum values in Windows 10
Replies: 0
Views: 5508

Finding Checksum values in Windows 10

On Unix, there are commands available to check checksums of files. On Windows, 'certutil' is the command to use. Ex. C:\>certutil -hashfile Rocky-9.3-x86_64-minimal.iso SHA256 SHA256 hash of Rocky-9.3-x86_64-minimal.iso: eef8d26018f4fcc0dc101c468f65cbf588f2184900c556f243802e9698e56729 CertUtil: -has...
by cah
Tue Jan 02, 2024 1:25 pm
Forum: Technology / 科技交流
Topic: diskpart to help clean up USB drives
Replies: 0
Views: 5644

diskpart to help clean up USB drives

In my past experience, DELL created recover images on USB drives and limited the use of 16 GB USB drives to just 8 GB and I couldn't get the USB drives to their full capacity.

'diskpart' is the tool to help remove all partitions and reclaim all space.