find the name with “ip link show”
Netzwerk Interface eth0 disappeared
15 Wednesday Feb 2017
Posted in Linux, Network, system-independent, Ubuntu
15 Wednesday Feb 2017
Posted in Linux, Network, system-independent, Ubuntu
find the name with “ip link show”
03 Wednesday Feb 2016
Posted in IT Knowledge, Linux, system-independent, Ubuntu
(Debian, Ubuntu)
30 Tuesday Jun 2015
sudo aptitude install debian-keyring debian-archive-keyringfixed it for memaybe also tryapt-key update
19 Monday May 2014
Posted in Basics, IT Knowledge, Linux, Ubuntu
Tags
One reason could be that the system might not have installed packages needed for writing to NTFS partitions.
Yoe may try to install it within a terminal by:
sudo apt-get install ntfs-3g
After rebooting your system you should now be able to write to the NTFS drive.
31 Thursday Oct 2013
Posted in Basics, IT Knowledge, Linux, Network, Ubuntu
to set a static IP in ubuntu you have to edit the interfaces file
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
#iface eth0 inet dhcp – This was the standard DHCP configuration
iface eth0 inet static – set to static for a static IP
address 192.168.1.xxx – set the IP you wish
netmask 255.255.255.0 – netmask
gateway 192.168.1.1 – IP of your gateway (Firewall..)
dns-nameservers 192.168.1.xxx 192.168.1.xxx – IP(s) of your nameserver(s) – space separated