-
Notifications
You must be signed in to change notification settings - Fork 1
/
Software.txt
44 lines (33 loc) · 1.09 KB
/
Software.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Content-Type: text/x-zim-wiki
Wiki-Format: zim 0.4
Creation-Date: 2016-10-31T16:31:53+01:00
====== Software ======
Created mandag 31 oktober 2016
**We'll list a few methods of getting Application, Driver, kernel and log information**
== Logs ==
**#** Y**ou can use **//|grep //** for a more specific result**
**#** **You'll usually find error logs in **///var/logs//
== dmesg ==
**# dmesg is an event viewer**
$ dmesg
== Kernel ==
# **To show kernel drivers handling each device **
$ lspci -k
**# Show Kernel**
$ uname -a
== GPU driver ==
**# Show which video-driver is being used by X-org**
$ lspci -nnk | grep -i vga -A3 | grep 'in use'
== Application ==
**# Show possible locations for application**
$ whereis //<APP_NAME>//
**# Show what will be run be default **
$ which //<APP_NAME>//
== tldr ==
**# **//man//** pages are genius**
**# **//tldr //**is the to long don't read of **//man//** pages **
**# It will cut straight to the chase and tell you the most common commands^**
$ yaourt -S nodejs-tldr-git
**# Then just use it the same way, you would with **//man//
**# Ex for **//tar//
$ tldr tar