This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Linux Server Hardening Script for AlmaLinux and Ubuntu | |
# Author: DevOps Expert | |
# Version: 1.0 | |
set -euo pipefail | |
# Colors for output | |
RED='\033[0;31m' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dnf update -y | |
adduser your_username && passwd your_username # create and change password | |
usermod -aG wheel your_username | |
dnf groupinstall "Server with GUI" -y | |
systemctl set-default graphical.target |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Cài đặt | |
sudo apt-get install fcitx-unikey | |
# Config cho hệ thống dùng fcitx thay cho ibus. | |
# Nếu sau này muốn đổi lại dùng ibus thì chạy tương tự. | |
im-config -n fcitx | |
# Nếu bạn dùng Ubuntu 14.04 hoặc một distro dựa trên | |
# bản đó thì phải cài thủ công một file nữa do gói | |
# cài đặt của repo bị thiếu. Các bản sau không bị. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "project-name", | |
"description": "Template for static sites", | |
"version": "1.0.0", | |
"homepage": "http://www.project-name.com", | |
"author": { | |
"name": "Adam Reis", | |
"url": "http://adam.reis.nz" | |
}, | |
"license": "UNLICENSED", |