Update tech_docs/linux/arch_deploy.md
This commit is contained in:
@@ -367,4 +367,36 @@ If you want a minimal desktop environment, consider installing Xorg and a lightw
|
||||
- **Regular Updates**: Regularly update your system using `sudo pacman -Syu`.
|
||||
- **Backup**: Regularly back up important data.
|
||||
|
||||
This setup guide provides a secure, minimal, and opinionated configuration for Arch Linux with a fun space-themed scheme. Adjustments can be made based on your specific needs and preferences.
|
||||
This setup guide provides a secure, minimal, and opinionated configuration for Arch Linux with a fun space-themed scheme. Adjustments can be made based on your specific needs and preferences.
|
||||
|
||||
---
|
||||
|
||||
Sure, let's refactor that section to use UTC as the timezone. This is a common choice for servers and can simplify time management, especially in multi-timezone environments.
|
||||
|
||||
### Refactored Section for Setting Timezone to UTC
|
||||
|
||||
```bash
|
||||
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||
hwclock --systohc
|
||||
```
|
||||
|
||||
### Updated Step-by-Step Guide with UTC Timezone
|
||||
|
||||
#### Step 6: Set Locale and Timezone
|
||||
1. **Set locale**:
|
||||
- Edit `/etc/locale.gen` to uncomment your locale (e.g., `en_US.UTF-8`):
|
||||
```bash
|
||||
vim /etc/locale.gen
|
||||
```
|
||||
- Generate the locale:
|
||||
```bash
|
||||
locale-gen
|
||||
```
|
||||
|
||||
2. **Set timezone to UTC**:
|
||||
```bash
|
||||
ln -sf /usr/share/zoneinfo/UTC /etc/localtime
|
||||
hwclock --systohc
|
||||
```
|
||||
|
||||
This change ensures that your system uses Coordinated Universal Time (UTC) as the timezone. This is particularly useful for servers and systems that need to interact with other systems across different timezones.
|
||||
Reference in New Issue
Block a user