2023-2026 Cadence Compute Platform

2023.x-2026.x Cadence Compute Platform Roadmap 2025.x releasesx86_64 added Rocky 8.4+, Rocky 9, Alma 8.4+, Alma 9 IBM POWER added RHEL 9 ARM v8 added RHEL 9 2026.x releasessame as 2025....

How to Partition a New Disk Drive

0. Create virtual disk in machine BIOS.Choose the RAID type you want it to be, e.g. RAID0, RAID1, RAID10, RAID5. 1. Check existing partitionsAnd identify the new disk you want to format, e.g. /de...

LSF10.1 Installation

1. Software package12root@masterhost# tar xvf lsf10.1_lsfinstall_linux_x86_64.tarroot@masterhost# cd lsf10.1_lsfinstall 2. Edit install.config1234567root@masterhost# cat install.configLSF_TOP="/...

Vitamin Cheat Sheet

Vitamin A: Vision & Immunity | Carrots, Spinach Vitamin B1: Energy & Nerves | Whole Grains, Pork Vitamin B2: Metabolism | Milk, Eggs Vitamin B3: Skin Health | Poultry, Fish Vitamin B5: Hormon...

Calibre Platform Support - 2024

Platform Identifiers for Calibre Install Files and Runtime DirectoriesCalibre provides different executables that are optimized for different Linux distributions, and each has its own platform identif...

Install Linux Editor Atom

How to install1# rpm -ivh https://github.com/atom/atom/releases/download/v1.27.0/atom.x86_64.rpm Official websiteATOM - A hackable text editor for the 21st Century ...

Vim: Move Cursor With Command "f|F|t|T"

f命令移动到光标右边的指定字符上,例如,fx,会把移动到光标右边的第一个x字符上。F命令则反方向查找,也就是移动到光标左边的指定字符上。 t命令和f命令的区别在于,它移动到光标右边的指定字符之前。例如,tx会移动到光标右边第一个x字符的前面。T命令是t命令的反向版本,它移动到光标左边的指定字符之后。 这四个命令只在当前行中移动光标,光标不会跨越回车换行符。 可以在命令前面使用数字,表示倍数。例如...
12316