Fading Coder

One Final Commit for the Last Sprint

Setting up Digital IC Environment: vcs2018, verdi2018

Following the guide: Setting Up Your Own Digital IC EDA Enviroment (Part 3): Installing EDA Tools (vcs2018, verdi2018, etc.) and Running Your First Project - scl keygen - CSDN Blog Installation documentation and corresponding video tutorial are available. However, my system uses Ubuntu 18.04 (instal...

Configuring and Deploying Windows Subsystem for Linux on Windows 10

The Windows Subsystem for Linux (WSL) provides a compatibility layer for running native Linux ELF64 binaries directly on Windows 10. This integration allows developers to utilize Linux command-line tools and applications without the overhead of a traditional virtual machine. Activating Developer Mod...

Setting Up Tabby Terminal on Ubuntu: Context Menu and Mouse HID Configuration

Tabby Terminal Keyboard Shortcuts Clipboard Operations Action Shortcut Copy Ctrl+Shift+C Paste Ctrl+Shift+V or Shift+Insert Select All Ctrl+Shift+A Find Ctrl+Shift+F Smart Copy/Interrupt Ctrl+C Cursor Navigation Action Shorctut Line Start Home Line End End Previous Word Ctrl+Left Next Word Ctrl+Righ...

Setting Up Vue CLI on Ubuntu

Installing Node.js Download the latest LTS vertion from the official Node.js website. Choose the Linux binaries archive, then extract it. Move the extracted folder to the software installation directory: mv node-v14.17.1-linux-x64 /usr/local/soft/ Create symbolic links for node and npm: ln -s /usr/l...

Firewall Rule Management Across CentOS and Ubuntu Environments

Network traffic filtering on RHEL-based distributions is handled by firewalld, which organizes rules into zones and requires explicit synchronization between permanent and runtime configurations. Verify the daemon's current state: systemctl is-active firewalld Initialize the service and configure it...

Deploying a LAMP Stack on Ubuntu Server

Establishing Remote Access and Privileged Users Connect to the target machine via SSH using your terminal: ssh <username>@<server_ip_address> # Example: ssh admin@10.0.0.55 Operating directly as the root user is discouraged. Create a dedicated administrative account and grant it elevated...

Docker Installation on Ubuntu and Essential Commands Guide

Installing Docker on Ubuntu Updating apt package index sudo apt-get update Installing dependencies for HTTPS-based repositories sudo apt-get install \ apt-transport-https \ ca-certificates \ curl \ software-properties-common Adding Docker's official GPG key curl -fsSL https://download.docker.com/lin...

Complete Guide to Installing and Uninstalling MySQL on Ubuntu and Windows

Uninstalling MySQL on Ubuntu First, remove MySQL packages: sudo apt-get remove mysql-* Then clean up residual configuration files: dpkg -l | grep ^rc | awk '{print $2}' | sudo xargs dpkg -P A dialog may appear; select "Yes" to confirm. Installing MySQL on Ubuntu You can install MySQL using...

Comprehensive Ubuntu System Administration and Configuration Guide

Setting Up Chinese Input Suport Language Pack Installation To enable localized support, install the necessary language packages: sudo apt update sudo apt install language-pack-zh-hans Alternatively, access the GUI Settings menu, navigate to Region & Language, and select Install/Remove Languages....

Installing NVIDIA GPU Drivers on Ubuntu

Identify Your GPU Open a terminal and run one of the following commands: lspci | grep -i vga # or lspci | grep -i nvidia The output will include your GPU model. For example: 01:00.0 VGA compatible controller: NVIDIA Corporation TU116 [GeForce GTX 1660 SUPER] (rev a1) Download the Correct Driver Visi...