Ubuntu 16.04 - Change interface name Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionUbuntu: how do you swap eth0 and eth1? (Ubuntu 13.10 server in a VirtualBox VM)Reload network interfaces without rebootingUbuntu 14.04 server: Change em1 to eth0 - no /etc/udev/rules.d/70-persistent-net.rules fileiptables not working on mobile broadbandUbuntu 15.10 Network Interfaces NameNetworking issue communicating to Virtual Network on ubuntu 16.04Ubuntu 16.04 not getting dhcp leaseChange kernel device node in Ubuntu 16.04 (static usb interface name based on the port it's plugged in)Renaming my wlan network interfaceStartup Debian 9 fails with: `Failed to start Raise network interfaces` after motherboard replacement
Crossing US/Canada Border for less than 24 hours
How could we fake a moon landing now?
How do I find out the mythology and history of my Fortress?
Find the length x such that the two distances in the triangle are the same
また usage in a dictionary
Why do we bend a book to keep it straight?
Circuit to "zoom in" on mV fluctuations of a DC signal?
How would a mousetrap for use in space work?
What does this Jacques Hadamard quote mean?
Why are the trig functions versine, haversine, exsecant, etc, rarely used in modern mathematics?
Is there a holomorphic function on open unit disc with this property?
What is homebrew?
Why didn't Eitri join the fight?
Most bit efficient text communication method?
What is the longest distance a player character can jump in one leap?
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
What does "lightly crushed" mean for cardamon pods?
What is the escape velocity of a neutron particle (not neutron star)
How to compare two different files line by line in unix?
Ports Showing Closed/Filtered in Nmap Scans
Is there a kind of relay only consumes power when switching?
Do square wave exist?
How to answer "Have you ever been terminated?"
When coming out of haste, do attackers have advantage on you?
Ubuntu 16.04 - Change interface name
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionUbuntu: how do you swap eth0 and eth1? (Ubuntu 13.10 server in a VirtualBox VM)Reload network interfaces without rebootingUbuntu 14.04 server: Change em1 to eth0 - no /etc/udev/rules.d/70-persistent-net.rules fileiptables not working on mobile broadbandUbuntu 15.10 Network Interfaces NameNetworking issue communicating to Virtual Network on ubuntu 16.04Ubuntu 16.04 not getting dhcp leaseChange kernel device node in Ubuntu 16.04 (static usb interface name based on the port it's plugged in)Renaming my wlan network interfaceStartup Debian 9 fails with: `Failed to start Raise network interfaces` after motherboard replacement
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I'm aware that in older versions of linux I was able to rename the network interface from /etc/udev/rules.d/70-persistent-net.rules, however this file is missing in Ubuntu 16.04.
linux ubuntu networking udev network-interface
add a comment |
I'm aware that in older versions of linux I was able to rename the network interface from /etc/udev/rules.d/70-persistent-net.rules, however this file is missing in Ubuntu 16.04.
linux ubuntu networking udev network-interface
This is an OK enough place to ask this question, but I would really recommend asking Ubuntu-specific questions at AskUbuntu (askubuntu.com). Usually the response times are better there too.
– Brenton Horne
Dec 6 '16 at 20:24
I have faith in this forum :P
– joebegborg07
Dec 6 '16 at 20:40
add a comment |
I'm aware that in older versions of linux I was able to rename the network interface from /etc/udev/rules.d/70-persistent-net.rules, however this file is missing in Ubuntu 16.04.
linux ubuntu networking udev network-interface
I'm aware that in older versions of linux I was able to rename the network interface from /etc/udev/rules.d/70-persistent-net.rules, however this file is missing in Ubuntu 16.04.
linux ubuntu networking udev network-interface
linux ubuntu networking udev network-interface
edited Apr 13 at 15:04
Rui F Ribeiro
42.1k1484142
42.1k1484142
asked Dec 6 '16 at 19:19
joebegborg07joebegborg07
144115
144115
This is an OK enough place to ask this question, but I would really recommend asking Ubuntu-specific questions at AskUbuntu (askubuntu.com). Usually the response times are better there too.
– Brenton Horne
Dec 6 '16 at 20:24
I have faith in this forum :P
– joebegborg07
Dec 6 '16 at 20:40
add a comment |
This is an OK enough place to ask this question, but I would really recommend asking Ubuntu-specific questions at AskUbuntu (askubuntu.com). Usually the response times are better there too.
– Brenton Horne
Dec 6 '16 at 20:24
I have faith in this forum :P
– joebegborg07
Dec 6 '16 at 20:40
This is an OK enough place to ask this question, but I would really recommend asking Ubuntu-specific questions at AskUbuntu (askubuntu.com). Usually the response times are better there too.
– Brenton Horne
Dec 6 '16 at 20:24
This is an OK enough place to ask this question, but I would really recommend asking Ubuntu-specific questions at AskUbuntu (askubuntu.com). Usually the response times are better there too.
– Brenton Horne
Dec 6 '16 at 20:24
I have faith in this forum :P
– joebegborg07
Dec 6 '16 at 20:40
I have faith in this forum :P
– joebegborg07
Dec 6 '16 at 20:40
add a comment |
3 Answers
3
active
oldest
votes
Create the /etc/udev/rules.d/70-persistent-net.rules file as follows :
sudo nano /etc/udev/rules.d/70-persistent-net.rules
add the following line:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="wlan*", NAME="wlan0"
Run sudo ifconfig to get the mac adress and change it with yours here :ATTRaddress=="74:e5:ii:uu:de:nn"
CtrlO then press Enter exit with CtrlX
Disable the Predictable Network Interface Names with:
ln -sf /dev/null /lib/udev/rules.d/80-net-setup-link.rules
This will overwrite the existing file, so, optionally, back it up before executing the command.
Bring up your interface:
ip link set eth0 up
ip link set eth0 down
Alternative methode:
Edit your grub configuration file:
sudo nano /etc/default/grub
add net.ifnames=0 biosdevname=0 to GRUB_CMDLINE_LINUX="" like this:
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
update grub.cfg :sudo grub-mkconfig -o /boot/grub/grub.cfg
Edit your /etc/network/interfaces to change interface name then reboot.
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
1
I thinkln -sshould be changed toln -sf, otherwise, the existing file won't be overwritten.
– Marcus
Apr 13 '18 at 10:07
add a comment |
For me it worked modifying /etc/udev/rules.d/70-persistent-net.rules. However I had to remove the kernel from that line.
Eg:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", NAME="wlan0"
I am on Ubuntu 16.04
add a comment |
For people new to this or struggling with it, GAD3R's answer is correct, however if you're following the first method it is worth noting the following two points:
/etc/udev/rules.d/70-persistent-net.rules may not actually exist (in which case you need to create it).
If /lib/udev/rules.d/80-net-setup-link.rules DOES exist, you will get an error message indicating as such when trying to use the "ln -s" command and will need to rename it before setting a symbolic link to /dev/null (for complete beginners: "it's a safer option than deleting").
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f328485%2fubuntu-16-04-change-interface-name%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Create the /etc/udev/rules.d/70-persistent-net.rules file as follows :
sudo nano /etc/udev/rules.d/70-persistent-net.rules
add the following line:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="wlan*", NAME="wlan0"
Run sudo ifconfig to get the mac adress and change it with yours here :ATTRaddress=="74:e5:ii:uu:de:nn"
CtrlO then press Enter exit with CtrlX
Disable the Predictable Network Interface Names with:
ln -sf /dev/null /lib/udev/rules.d/80-net-setup-link.rules
This will overwrite the existing file, so, optionally, back it up before executing the command.
Bring up your interface:
ip link set eth0 up
ip link set eth0 down
Alternative methode:
Edit your grub configuration file:
sudo nano /etc/default/grub
add net.ifnames=0 biosdevname=0 to GRUB_CMDLINE_LINUX="" like this:
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
update grub.cfg :sudo grub-mkconfig -o /boot/grub/grub.cfg
Edit your /etc/network/interfaces to change interface name then reboot.
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
1
I thinkln -sshould be changed toln -sf, otherwise, the existing file won't be overwritten.
– Marcus
Apr 13 '18 at 10:07
add a comment |
Create the /etc/udev/rules.d/70-persistent-net.rules file as follows :
sudo nano /etc/udev/rules.d/70-persistent-net.rules
add the following line:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="wlan*", NAME="wlan0"
Run sudo ifconfig to get the mac adress and change it with yours here :ATTRaddress=="74:e5:ii:uu:de:nn"
CtrlO then press Enter exit with CtrlX
Disable the Predictable Network Interface Names with:
ln -sf /dev/null /lib/udev/rules.d/80-net-setup-link.rules
This will overwrite the existing file, so, optionally, back it up before executing the command.
Bring up your interface:
ip link set eth0 up
ip link set eth0 down
Alternative methode:
Edit your grub configuration file:
sudo nano /etc/default/grub
add net.ifnames=0 biosdevname=0 to GRUB_CMDLINE_LINUX="" like this:
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
update grub.cfg :sudo grub-mkconfig -o /boot/grub/grub.cfg
Edit your /etc/network/interfaces to change interface name then reboot.
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
1
I thinkln -sshould be changed toln -sf, otherwise, the existing file won't be overwritten.
– Marcus
Apr 13 '18 at 10:07
add a comment |
Create the /etc/udev/rules.d/70-persistent-net.rules file as follows :
sudo nano /etc/udev/rules.d/70-persistent-net.rules
add the following line:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="wlan*", NAME="wlan0"
Run sudo ifconfig to get the mac adress and change it with yours here :ATTRaddress=="74:e5:ii:uu:de:nn"
CtrlO then press Enter exit with CtrlX
Disable the Predictable Network Interface Names with:
ln -sf /dev/null /lib/udev/rules.d/80-net-setup-link.rules
This will overwrite the existing file, so, optionally, back it up before executing the command.
Bring up your interface:
ip link set eth0 up
ip link set eth0 down
Alternative methode:
Edit your grub configuration file:
sudo nano /etc/default/grub
add net.ifnames=0 biosdevname=0 to GRUB_CMDLINE_LINUX="" like this:
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
update grub.cfg :sudo grub-mkconfig -o /boot/grub/grub.cfg
Edit your /etc/network/interfaces to change interface name then reboot.
Create the /etc/udev/rules.d/70-persistent-net.rules file as follows :
sudo nano /etc/udev/rules.d/70-persistent-net.rules
add the following line:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", KERNEL=="wlan*", NAME="wlan0"
Run sudo ifconfig to get the mac adress and change it with yours here :ATTRaddress=="74:e5:ii:uu:de:nn"
CtrlO then press Enter exit with CtrlX
Disable the Predictable Network Interface Names with:
ln -sf /dev/null /lib/udev/rules.d/80-net-setup-link.rules
This will overwrite the existing file, so, optionally, back it up before executing the command.
Bring up your interface:
ip link set eth0 up
ip link set eth0 down
Alternative methode:
Edit your grub configuration file:
sudo nano /etc/default/grub
add net.ifnames=0 biosdevname=0 to GRUB_CMDLINE_LINUX="" like this:
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
update grub.cfg :sudo grub-mkconfig -o /boot/grub/grub.cfg
Edit your /etc/network/interfaces to change interface name then reboot.
edited Apr 13 '18 at 10:43
Marcus
302315
302315
answered Dec 6 '16 at 20:10
GAD3RGAD3R
28.3k1958114
28.3k1958114
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
1
I thinkln -sshould be changed toln -sf, otherwise, the existing file won't be overwritten.
– Marcus
Apr 13 '18 at 10:07
add a comment |
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
1
I thinkln -sshould be changed toln -sf, otherwise, the existing file won't be overwritten.
– Marcus
Apr 13 '18 at 10:07
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
Thanks for your reply @GAD3R. The udev rules seem to have been moved to /lib/udev/rules.d/ with newer Ubuntu version, however the 70-persistent-net.rule is still not there.
– joebegborg07
Dec 6 '16 at 20:40
1
1
I think
ln -s should be changed to ln -sf, otherwise, the existing file won't be overwritten.– Marcus
Apr 13 '18 at 10:07
I think
ln -s should be changed to ln -sf, otherwise, the existing file won't be overwritten.– Marcus
Apr 13 '18 at 10:07
add a comment |
For me it worked modifying /etc/udev/rules.d/70-persistent-net.rules. However I had to remove the kernel from that line.
Eg:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", NAME="wlan0"
I am on Ubuntu 16.04
add a comment |
For me it worked modifying /etc/udev/rules.d/70-persistent-net.rules. However I had to remove the kernel from that line.
Eg:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", NAME="wlan0"
I am on Ubuntu 16.04
add a comment |
For me it worked modifying /etc/udev/rules.d/70-persistent-net.rules. However I had to remove the kernel from that line.
Eg:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", NAME="wlan0"
I am on Ubuntu 16.04
For me it worked modifying /etc/udev/rules.d/70-persistent-net.rules. However I had to remove the kernel from that line.
Eg:
# PCI device 0x10ec:0x8xxxx (ethernet_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="3x:17:ef:6f:s2:2h", ATTRdev_id=="0x0", ATTRtype=="1", NAME="eth0"
# PCI device 0x168c:0xyyy (wifi_module_here)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTRaddress=="74:e5:ii:uu:de:nn", ATTRdev_id=="0x0", ATTRtype=="1", NAME="wlan0"
I am on Ubuntu 16.04
edited Mar 13 '17 at 17:22
phk
4,09952257
4,09952257
answered Mar 13 '17 at 17:13
SPVSPV
112
112
add a comment |
add a comment |
For people new to this or struggling with it, GAD3R's answer is correct, however if you're following the first method it is worth noting the following two points:
/etc/udev/rules.d/70-persistent-net.rules may not actually exist (in which case you need to create it).
If /lib/udev/rules.d/80-net-setup-link.rules DOES exist, you will get an error message indicating as such when trying to use the "ln -s" command and will need to rename it before setting a symbolic link to /dev/null (for complete beginners: "it's a safer option than deleting").
add a comment |
For people new to this or struggling with it, GAD3R's answer is correct, however if you're following the first method it is worth noting the following two points:
/etc/udev/rules.d/70-persistent-net.rules may not actually exist (in which case you need to create it).
If /lib/udev/rules.d/80-net-setup-link.rules DOES exist, you will get an error message indicating as such when trying to use the "ln -s" command and will need to rename it before setting a symbolic link to /dev/null (for complete beginners: "it's a safer option than deleting").
add a comment |
For people new to this or struggling with it, GAD3R's answer is correct, however if you're following the first method it is worth noting the following two points:
/etc/udev/rules.d/70-persistent-net.rules may not actually exist (in which case you need to create it).
If /lib/udev/rules.d/80-net-setup-link.rules DOES exist, you will get an error message indicating as such when trying to use the "ln -s" command and will need to rename it before setting a symbolic link to /dev/null (for complete beginners: "it's a safer option than deleting").
For people new to this or struggling with it, GAD3R's answer is correct, however if you're following the first method it is worth noting the following two points:
/etc/udev/rules.d/70-persistent-net.rules may not actually exist (in which case you need to create it).
If /lib/udev/rules.d/80-net-setup-link.rules DOES exist, you will get an error message indicating as such when trying to use the "ln -s" command and will need to rename it before setting a symbolic link to /dev/null (for complete beginners: "it's a safer option than deleting").
edited Feb 17 '18 at 18:22
Thomas
4,15361430
4,15361430
answered Feb 17 '18 at 17:55
G1ngernicG1ngernic
112
112
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f328485%2fubuntu-16-04-change-interface-name%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
This is an OK enough place to ask this question, but I would really recommend asking Ubuntu-specific questions at AskUbuntu (askubuntu.com). Usually the response times are better there too.
– Brenton Horne
Dec 6 '16 at 20:24
I have faith in this forum :P
– joebegborg07
Dec 6 '16 at 20:40