Ubuntu Pastebin

Paste from twoj_ at Sat, 10 Jun 2017 15:56:05 +0000

Download as text
 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="00:0C:29:4D:F8:A2", NAME="eno1"
ubuntu@myubuntu:/etc/udev/rules.d$ more 11-rename.rules
SUBSYSTEM=="net", ACTION=="add", ATTR{address}=="00:0C:29:4D:F8:AC", NAME="enp2s0f1"
ubuntu@myubuntu:/etc/udev/rules.d$ ifconfig
eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.0.230  netmask 255.255.255.0  broadcast 10.0.0.255
        inet6 2601:18a:c404:78a0::3c77  prefixlen 128  scopeid 0x0<global>
        inet6 2601:18a:c404:78a0:70ba:4625:f27f:e89d  prefixlen 64  scopeid 0x0<global>
        inet6 2601:18a:c404:78a0:80c6:ec0d:d91e:bd68  prefixlen 64  scopeid 0x0<global>
        inet6 fe80::7406:4a55:526b:bf34  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:4d:f8:a2  txqueuelen 1000  (Ethernet)
        RX packets 621  bytes 122856 (122.8 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 649  bytes 89121 (89.1 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

eth1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 10.0.0.239  netmask 255.255.255.0  broadcast 10.0.0.255
        inet6 2601:18a:c404:78a0:cb2:112:17fc:acf2  prefixlen 64  scopeid 0x0<global>
        inet6 2601:18a:c404:78a0:a55a:5d32:4e23:a203  prefixlen 64  scopeid 0x0<global>
        inet6 2601:18a:c404:78a0::4f02  prefixlen 128  scopeid 0x0<global>
        inet6 fe80::57b7:1bcd:162f:164f  prefixlen 64  scopeid 0x20<link>
        ether 00:0c:29:4d:f8:ac  txqueuelen 1000  (Ethernet)
        RX packets 578  bytes 103851 (103.8 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 184  bytes 21821 (21.8 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
        device interrupt 16  base 0x2000  

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 786  bytes 93904 (93.9 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 786  bytes 93904 (93.9 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0






# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash net.ifnames=0 biosdevname=0"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
Download as text