Linux Mint adalah distro Linux yang user-friendly dan cocok untuk pemula. Mari pelajari cara menggunakannya.
Apa itu Linux Mint?
Keunggulan Linux Mint
- Tampilan mirip Windows (familiar)
- Berbasis Ubuntu (stable)
- Mudah digunakan pemula
- Gratis dan open source
- Ringan dan cepat
- Pre-installed codecs dan drivers
Edisi Linux Mint
1. Cinnamon (recommended)
- Desktop environment terpopuler
- Modern dan feature-rich
- MATE
- Ringan, traditional look
- Cocok untuk PC lama
- Xfce
- Paling ringan
- Untuk hardware minimal
Install Linux Mint
Download ISO
# Download dari:
# https://linuxmint.com/download.php
Verify checksum setelah download
sha256sum linuxmint-21.3-cinnamon-64bit.iso
Buat Bootable USB
# Linux
sudo dd if=linuxmint.iso of=/dev/sdX bs=4M status=progress
Atau gunakan balenaEtcher (semua OS)
Download dari balena.io/etcher
Install Process
1. Boot dari USB
2. Pilih "Install Linux Mint"
3. Pilih bahasa dan keyboard
4. Checklist "Install multimedia codecs"
5. Pilih tipe instalasi:
- Erase disk (fresh install)
- Alongside Windows (dual boot)
- Something else (manual)
6. Set timezone, username, password
7. Wait for installation
8. Restart dan remove USB
Desktop Environment
Cinnamon Desktop
Components:
- Panel (taskbar) di bawah
- Menu button di kiri bawah
- System tray di kanan bawah
- Desktop icons
- File manager (Nemo)
Navigasi Desktop
Shortcuts:
- Super (Windows key): Open menu
- Alt+Tab: Switch windows
- Ctrl+Alt+T: Open terminal
- Super+E: Open file manager
- Super+D: Show desktop
- Super+L: Lock screen
Software Management
Software Manager
Cara install software:
1. Buka Menu > Administration > Software Manager
2. Search aplikasi yang diinginkan
3. Klik Install
4. Masukkan password
Atau via terminal:
sudo apt update
sudo apt install nama-paket
Install Software Populer
# Browser
sudo apt install chromium-browser
sudo apt install firefox
Office
sudo apt install libreoffice
Media player
sudo apt install vlc
Image editor
sudo apt install gimp
Code editor
sudo snap install code --classic
Flatpak dan Snap
# Flatpak (pre-installed)
flatpak install flathub com.spotify.Client
flatpak list
Snap
sudo apt install snapd
sudo snap install spotify
snap list
System Settings
Update System
# Via GUI
Menu > Administration > Update Manager
Via terminal
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo apt autoremove
Install Drivers
# Via GUI
Menu > Administration > Driver Manager
Pilih driver yang recommended
Restart setelah install
Themes dan Appearance
1. System Settings > Themes
2. Pilih:
- Window borders
- Icons
- Controls
- Mouse pointer
- Desktop
- Download more themes dari:
- cinnamon-spices.linuxmint.com
- gnome-look.org
File Management
Nemo File Manager
Shortcuts:
- Ctrl+H: Show hidden files
- Ctrl+L: Address bar
- F2: Rename
- Delete: Move to trash
- Shift+Delete: Permanent delete
- Ctrl+Shift+N: New folder
File System Structure
/home/username/ - Home folder (My Documents equivalent)
βββ Documents/
βββ Downloads/
βββ Music/
βββ Pictures/
βββ Videos/
βββ Desktop/
/ - Root (C: drive equivalent)
/media/ - USB drives, external drives
Mount Drives
# List drives
lsblk
Mount manually
sudo mount /dev/sdb1 /mnt/usb
Unmount
sudo umount /mnt/usb
Auto-mount NTFS drives
sudo apt install ntfs-3g
Terminal Basics
Essential Commands
# Navigation
cd /path/to/folder # Change directory
cd ~ # Go to home
cd .. # Go up one level
pwd # Print working directory
ls # List files
ls -la # List all with details
File operations
cp file1 file2 # Copy
mv file1 file2 # Move/rename
rm file # Delete file
rm -r folder # Delete folder
mkdir folder # Create folder
touch file # Create empty file
View files
cat file # Display content
less file # Paginated view
head -n 10 file # First 10 lines
tail -n 10 file # Last 10 lines
Package Management
# Search package
apt search keyword
Install
sudo apt install package-name
Remove
sudo apt remove package-name
Remove with config
sudo apt purge package-name
Clean up
sudo apt autoremove
sudo apt clean
Customization
Panel Configuration
Right-click panel:
- Add applets (widgets)
- Panel settings
- Modify panel
Popular applets:
- Weather
- CPU monitor
- Network speed
- Workspace switcher
Keyboard Shortcuts
System Settings > Keyboard > Shortcuts
Custom shortcuts:
- Add custom shortcut
- Set command (e.g., gnome-screenshot)
- Assign key combination
Startup Applications
System Settings > Startup Applications
Add:
- Click + button
- Browse for application
- Set delay if needed
Remove:
- Uncheck or delete entry
Common Tasks
Screenshots
# Built-in tool
# Print Screen: Full screen
# Alt+Print Screen: Current window
# Shift+Print Screen: Select area
Or use gnome-screenshot
sudo apt install gnome-screenshot
gnome-screenshot -a # Area selection
Archive/Extract
# Extract via file manager
Right-click > Extract Here
Terminal
.tar.gz
tar -xzf archive.tar.gz
.zip
unzip archive.zip
.rar
sudo apt install unrar
unrar x archive.rar
Play Media
# Install VLC
sudo apt install vlc
Install codecs (if not during install)
sudo apt install mint-meta-codecs
DVD playback
sudo apt install libdvd-pkg
sudo dpkg-reconfigure libdvd-pkg
Troubleshooting
System Stuck
Shortcuts:
- Ctrl+Alt+Backspace: Restart X server
- Ctrl+Alt+F2: Switch to TTY
- Alt+SysRq+REISUB: Safe reboot
From TTY:
login, then:
sudo reboot
Check Logs
# System logs
journalctl -xe
Boot logs
dmesg | tail
Specific service
journalctl -u service-name
Repair Package
# Fix broken packages
sudo apt --fix-broken install
Reconfigure packages
sudo dpkg --configure -a
Clean cache
sudo apt clean
sudo apt autoclean
Kesimpulan
Linux Mint adalah pilihan tepat untuk pemula yang ingin mencoba Linux. Tampilannya familiar dan mudah digunakan, dengan komunitas yang helpful.
Ditulis oleh
Hendra Wijaya