Linux: How to get logs from Linux Answer:
Location
/var/log
Or
/var/logs
Other Methods
sudo tail -f /var/log/syslog
sudo less -f /var/log/syslog
sudo more -f /var/log/syslog
sudo cat /var/log/syslog ...
Linux: How to check memory in Linux Answer: This is helpful to see the type of memory you need to purchase, in case of upgrades or replacements.
sudo dmidecode --type 17
# dmidecode 3.0Getting ...
Linux: How to get Bios info Answer:
sudo dmidecode
sudo biosdecode
Handle 0x0000, DMI type 4, 35 bytes
Processor Information
Socket Designation: LGA 775
Type: Central Processor
Family:
Manufacturer: Intel(R) Corporation
ID: F6 06 00 00 FF FB EB BF
Version: ...
Linux: How to obtain wireless info from the console Answer:
To get info such as, speed, quality, etc.
iwconfig
iwconfig wlan0
iwconfig wlan0 | egrep -e "Quality" -e "Rate"
wlan0 IEEE 802.11abgn ESSID:"Marissa1"
...
Linux: How to import export OST PST files Answer:
Most sites out there have multiple comments about so called freeware to open OST files, the fact is that most of them are nothing but ...
Linux: Partition larger than 2 TB drives Answer: If you try to partition a large drive and get this error
sectors exceeds the msdos-partition-table-imposed maximum of ....
The solution is to partition using "gpt"
Using GParted:
Device --> ...