Dedetok: My Experiences Notes This page contains my experiences using technology. All of information are were working properly on the time when they wrote. You may use them for any purposes.
Tuesday, July 7, 2015
Indonesia Debian Repository (Wheezy)
Installing XFCE4 on Debian Wheezy x64
- To install Xfce, do the following
# apt-get install xfce4 - There are many useful utilities that come with Xfce, to install these
# apt-get install xfce4-goodies - You also can install xdm to login in start Xfce
# apt-get install xdm
Configuring LAN in Debian 7 x64 Minimal CLI Only
iface eth0 inet dhcp
iface eth0 inet static
address 192.168.1.11 -> change with your lan
netmask 255.255.255.0 -> change with your lan
gateway 192.168.1.1 -> change with your lan
dns-nameservers 8.8.8.8, 8.8.4.4 -> change or add with your name server
# /etc/init.d/networking restart
Personal linux command references (Debian command)
Note: these are command references for personal usage, you may use them as references freely with your own responsible. No warranty for any damages causing bay these references.
To show model
# dmidecode -s system-version
IdeaPad Gaming 3 15ARH7
16GB DDR5-4800 each slot manufacture tested
To show ram slot
# lshw -class memory
or
# dmidecode -t memory
dmidecode show maximum memory
Using ssh : remote to server using secure channel
$ ssh -l [user_name] [servername_or_ip]
scp : upload to server using secure channel (secure copy)
$ scp [file_source_to_upload] [user_name]@[servername_or_ip]:[full_path_destination_folder]
Using tar.gz
To compress
$ tar -cvf [file_name.tar] [folder_to_archive]
To decompress from tar.gz
$ tar -xvf [file_name.tar]
$ tar -czvf BoyerMoore.tar.gz ./BoyerMooreCopyPaste
Using p7zip
decompress
$ p7zip -d ./Kramaning.4.3.7z
compress folder
$ 7z a kramaning.7z ./Kramaning/*
Restart lightdm xfce desktop server
# systemctl start lightdm
# systemctl status lightdm