Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. eth0 Link encap:Ethernet HWaddr e0:cb:4e:87:ff:db
  2. inet addr:128.39.194.217 Bcast:128.39.194.223 Mask:255.255.255.224
  3. inet6 addr: 2001:700:1100:8008:e2cb:4eff:fe87:ffdb/64 Scope:Global
  4. inet6 addr: fe80::e2cb:4eff:fe87:ffdb/64 Scope:Link
  5. inet6 addr: 2001:700:1100:8008:48f7:c23:1d87:da6c/64 Scope:Global
  6. UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
  7. RX packets:1063378 errors:0 dropped:0 overruns:0 frame:0
  8. TX packets:489811 errors:0 dropped:0 overruns:0 carrier:0
  9. collisions:0 txqueuelen:1000
  10. RX bytes:1577173461 (1.5 GB) TX bytes:37043669 (37.0 MB)
  11. Interrupt:68 Base address:0x6000
  12.  
  13. # This file describes the network interfaces available on your system
  14. # and how to activate them. For more information, see interfaces(5).
  15.  
  16. # The loopback network interface
  17.  
  18. auto lo
  19. iface lo inet loopback
  20. # The primary network interface
  21. auto eth0
  22. # NetworkManager#iface eth0 inet dhcp
  23. # NetworkManager#hostname 2001:700:1100:1::4
  24. # This is an autoconfigured IPv6 interface
  25. iface eth0 inet6 auto
  26.  
  27. gksu gedit /etc/rc.local
  28.  
  29. #!/bin/sh -e
  30. #
  31. # rc.local
  32. #
  33. # This script is executed at the end of each multiuser runlevel.
  34. # Make sure that the script will "exit 0" on success or any other
  35. # value on error.
  36. #
  37. # In order to enable or disable this script just change the execution
  38. # bits.
  39. #
  40. # By default this script does nothing.
  41. sudo dhclient eth0
  42. exit 0
  43.  
  44. # NetworkManager#iface eth0 inet dhcp
  45.  
  46. iface eth0 inet dhcp
  47.  
  48. gnome-desktop-item-edit --create-new ~/Desktop
  49.  
  50. sudo apt-get install --no-install-recommends gnome-panel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement