Cannot connect to any networks after spoofing MAC addressI can't connect to wifi network after spoofing my mac addressIP address has incomplete MACspoofed mac address changes when trying to connect to networkbeyond MAC address spoofingMAC address spoofing failingWlan can see networks but can't connect to anyChange MAC address ubuntu MATE 16.04.1Why does MAC Address Cloning not allow me to connect to any WiFi networks?What reason would cause MAC address spoofing not to work?MAC address getting reset

What is this utensil for?

How does IBM's 53-bit quantum computer compare to classical ones for cryptanalytic tasks?

How to make interviewee comfortable interviewing in lounge chairs

A high quality contribution but an annoying error is present in my published article

Do the villains know Batman has no superpowers?

Leaving a job that I just took based on false promise of a raise. What do I tell future interviewers?

If the EU does not offer an extension to UK's Article 50 invocation, is the Benn Bill irrelevant?

My 15 year old son is gay. How do I express my feelings about this?

The 100 soldier problem

Late 1970's and 6502 chip facilities for operating systems

Safely hang a mirror that does not have hooks

Examples of "unsuccessful" theories with afterlives

Does the Orange League not count as an official Pokemon League, making the Alolan League his first-ever win?

Would Taiwan and China's dispute be solved if Taiwan gave up being the Republic of China?

A drug that allows people to survive on less food

How can I repair this gas leak on my new range? Teflon tape isn't working

Is it possible to encode a message in such a way that can only be read by someone or something capable of seeing into the very near future?

I reverse the source code, you negate the input!

Did Apollo carry and use WD40?

How to conditionally load a package only if shell-escape (write18) is passed

What is the need of methods like GET and POST in the HTTP protocol?

Is there any reason nowadays to use a neon indicator lamp instead of an LED?

How to deal with my team leader who keeps calling me about project updates even though I am on leave for personal reasons?

What can a pilot do if an air traffic controller is incapacitated?



Cannot connect to any networks after spoofing MAC address


I can't connect to wifi network after spoofing my mac addressIP address has incomplete MACspoofed mac address changes when trying to connect to networkbeyond MAC address spoofingMAC address spoofing failingWlan can see networks but can't connect to anyChange MAC address ubuntu MATE 16.04.1Why does MAC Address Cloning not allow me to connect to any WiFi networks?What reason would cause MAC address spoofing not to work?MAC address getting reset






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















So I want to spoof my MAC address. However when I do so I am unable to connect to any networks. After changing it back to the physical MAC address of the network card, it works just fine.



It worked on Windows, so it can't be a problem with my router.



Please do not ask me why I want to spoof it, that won't help anyone.



Running Ubuntu MATE 15.04 connecting through WLAN.










share|improve this question
























  • what method are you using; are you using macchanger, network-manager, or both?

    – mchid
    Jun 23 '15 at 2:08












  • sudo ifconfig wlan0 hw ether 00:11:22:33:44:55

    – Ketchup901
    Jun 25 '15 at 9:00


















1















So I want to spoof my MAC address. However when I do so I am unable to connect to any networks. After changing it back to the physical MAC address of the network card, it works just fine.



It worked on Windows, so it can't be a problem with my router.



Please do not ask me why I want to spoof it, that won't help anyone.



Running Ubuntu MATE 15.04 connecting through WLAN.










share|improve this question
























  • what method are you using; are you using macchanger, network-manager, or both?

    – mchid
    Jun 23 '15 at 2:08












  • sudo ifconfig wlan0 hw ether 00:11:22:33:44:55

    – Ketchup901
    Jun 25 '15 at 9:00














1












1








1


1






So I want to spoof my MAC address. However when I do so I am unable to connect to any networks. After changing it back to the physical MAC address of the network card, it works just fine.



It worked on Windows, so it can't be a problem with my router.



Please do not ask me why I want to spoof it, that won't help anyone.



Running Ubuntu MATE 15.04 connecting through WLAN.










share|improve this question














So I want to spoof my MAC address. However when I do so I am unable to connect to any networks. After changing it back to the physical MAC address of the network card, it works just fine.



It worked on Windows, so it can't be a problem with my router.



Please do not ask me why I want to spoof it, that won't help anyone.



Running Ubuntu MATE 15.04 connecting through WLAN.







networking wireless mac connection lan






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Jun 22 '15 at 19:23









Ketchup901Ketchup901

531 gold badge3 silver badges9 bronze badges




531 gold badge3 silver badges9 bronze badges















  • what method are you using; are you using macchanger, network-manager, or both?

    – mchid
    Jun 23 '15 at 2:08












  • sudo ifconfig wlan0 hw ether 00:11:22:33:44:55

    – Ketchup901
    Jun 25 '15 at 9:00


















  • what method are you using; are you using macchanger, network-manager, or both?

    – mchid
    Jun 23 '15 at 2:08












  • sudo ifconfig wlan0 hw ether 00:11:22:33:44:55

    – Ketchup901
    Jun 25 '15 at 9:00

















what method are you using; are you using macchanger, network-manager, or both?

– mchid
Jun 23 '15 at 2:08






what method are you using; are you using macchanger, network-manager, or both?

– mchid
Jun 23 '15 at 2:08














sudo ifconfig wlan0 hw ether 00:11:22:33:44:55

– Ketchup901
Jun 25 '15 at 9:00






sudo ifconfig wlan0 hw ether 00:11:22:33:44:55

– Ketchup901
Jun 25 '15 at 9:00











1 Answer
1






active

oldest

votes


















0
















First, change everything back to default so that everything is in working order.



Next, run the following commands to install macchanger; macchanger is a command line tool developed for the purpose of changing your mac address:



sudo apt-get update
sudo apt-get install macchanger


You may be asked if you want to run automatically. You can choose yes or no.



For testing purposes, I have selected no, however, you may find this option useful. There is no guarantee the real MAC address will not be leaked. This option can be changed or set by editing the file /etc/default/macchanger, setting to ENABLE_ON_POST_UP_DOWN=true or ENABLE_ON_POST_UP_DOWN=false . Again, for testing purposes here, I have this set to ENABLE_ON_POST_UP_DOWN=false.




Usage:



To set the MAC address of wlan0 to 00:11:22:33:44:55, run the following commands:



sudo ifconfig wlan0 down
sudo macchanger --mac 00:11:22:33:44:55 wlan0
sudo service network-manager restart


Then, to show the current MAC address:



macchanger -s wlan0


For a list of options:



macchanger -h


Also, you may want to look into the "pretend to be a burned in address" -bia option.




Finally, I'm not sure how your IPV6 address will be impacted so that may be something you might want to pay attention to.




See also:



man macchanger


the GUI version: macchanger-gtk



and:



anonscm.debian.org/cgit/collab-maint/macchanger.git



github.com/alobbs/macchanger



www.gnu.org/software/macchanger






share|improve this answer



























  • sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

    – Ketchup901
    Jun 26 '15 at 14:44











  • As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

    – Ketchup901
    Jun 26 '15 at 14:47











  • @AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

    – mchid
    Jun 28 '15 at 2:42











  • @AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

    – mchid
    Jun 28 '15 at 4:05












  • @AdamGenell to increase it for root user: sudo su; ulimit -n 2024

    – mchid
    Jun 28 '15 at 4:17













Your Answer








StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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/4.0/"u003ecc by-sa 4.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
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f639639%2fcannot-connect-to-any-networks-after-spoofing-mac-address%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0
















First, change everything back to default so that everything is in working order.



Next, run the following commands to install macchanger; macchanger is a command line tool developed for the purpose of changing your mac address:



sudo apt-get update
sudo apt-get install macchanger


You may be asked if you want to run automatically. You can choose yes or no.



For testing purposes, I have selected no, however, you may find this option useful. There is no guarantee the real MAC address will not be leaked. This option can be changed or set by editing the file /etc/default/macchanger, setting to ENABLE_ON_POST_UP_DOWN=true or ENABLE_ON_POST_UP_DOWN=false . Again, for testing purposes here, I have this set to ENABLE_ON_POST_UP_DOWN=false.




Usage:



To set the MAC address of wlan0 to 00:11:22:33:44:55, run the following commands:



sudo ifconfig wlan0 down
sudo macchanger --mac 00:11:22:33:44:55 wlan0
sudo service network-manager restart


Then, to show the current MAC address:



macchanger -s wlan0


For a list of options:



macchanger -h


Also, you may want to look into the "pretend to be a burned in address" -bia option.




Finally, I'm not sure how your IPV6 address will be impacted so that may be something you might want to pay attention to.




See also:



man macchanger


the GUI version: macchanger-gtk



and:



anonscm.debian.org/cgit/collab-maint/macchanger.git



github.com/alobbs/macchanger



www.gnu.org/software/macchanger






share|improve this answer



























  • sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

    – Ketchup901
    Jun 26 '15 at 14:44











  • As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

    – Ketchup901
    Jun 26 '15 at 14:47











  • @AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

    – mchid
    Jun 28 '15 at 2:42











  • @AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

    – mchid
    Jun 28 '15 at 4:05












  • @AdamGenell to increase it for root user: sudo su; ulimit -n 2024

    – mchid
    Jun 28 '15 at 4:17















0
















First, change everything back to default so that everything is in working order.



Next, run the following commands to install macchanger; macchanger is a command line tool developed for the purpose of changing your mac address:



sudo apt-get update
sudo apt-get install macchanger


You may be asked if you want to run automatically. You can choose yes or no.



For testing purposes, I have selected no, however, you may find this option useful. There is no guarantee the real MAC address will not be leaked. This option can be changed or set by editing the file /etc/default/macchanger, setting to ENABLE_ON_POST_UP_DOWN=true or ENABLE_ON_POST_UP_DOWN=false . Again, for testing purposes here, I have this set to ENABLE_ON_POST_UP_DOWN=false.




Usage:



To set the MAC address of wlan0 to 00:11:22:33:44:55, run the following commands:



sudo ifconfig wlan0 down
sudo macchanger --mac 00:11:22:33:44:55 wlan0
sudo service network-manager restart


Then, to show the current MAC address:



macchanger -s wlan0


For a list of options:



macchanger -h


Also, you may want to look into the "pretend to be a burned in address" -bia option.




Finally, I'm not sure how your IPV6 address will be impacted so that may be something you might want to pay attention to.




See also:



man macchanger


the GUI version: macchanger-gtk



and:



anonscm.debian.org/cgit/collab-maint/macchanger.git



github.com/alobbs/macchanger



www.gnu.org/software/macchanger






share|improve this answer



























  • sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

    – Ketchup901
    Jun 26 '15 at 14:44











  • As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

    – Ketchup901
    Jun 26 '15 at 14:47











  • @AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

    – mchid
    Jun 28 '15 at 2:42











  • @AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

    – mchid
    Jun 28 '15 at 4:05












  • @AdamGenell to increase it for root user: sudo su; ulimit -n 2024

    – mchid
    Jun 28 '15 at 4:17













0














0










0









First, change everything back to default so that everything is in working order.



Next, run the following commands to install macchanger; macchanger is a command line tool developed for the purpose of changing your mac address:



sudo apt-get update
sudo apt-get install macchanger


You may be asked if you want to run automatically. You can choose yes or no.



For testing purposes, I have selected no, however, you may find this option useful. There is no guarantee the real MAC address will not be leaked. This option can be changed or set by editing the file /etc/default/macchanger, setting to ENABLE_ON_POST_UP_DOWN=true or ENABLE_ON_POST_UP_DOWN=false . Again, for testing purposes here, I have this set to ENABLE_ON_POST_UP_DOWN=false.




Usage:



To set the MAC address of wlan0 to 00:11:22:33:44:55, run the following commands:



sudo ifconfig wlan0 down
sudo macchanger --mac 00:11:22:33:44:55 wlan0
sudo service network-manager restart


Then, to show the current MAC address:



macchanger -s wlan0


For a list of options:



macchanger -h


Also, you may want to look into the "pretend to be a burned in address" -bia option.




Finally, I'm not sure how your IPV6 address will be impacted so that may be something you might want to pay attention to.




See also:



man macchanger


the GUI version: macchanger-gtk



and:



anonscm.debian.org/cgit/collab-maint/macchanger.git



github.com/alobbs/macchanger



www.gnu.org/software/macchanger






share|improve this answer















First, change everything back to default so that everything is in working order.



Next, run the following commands to install macchanger; macchanger is a command line tool developed for the purpose of changing your mac address:



sudo apt-get update
sudo apt-get install macchanger


You may be asked if you want to run automatically. You can choose yes or no.



For testing purposes, I have selected no, however, you may find this option useful. There is no guarantee the real MAC address will not be leaked. This option can be changed or set by editing the file /etc/default/macchanger, setting to ENABLE_ON_POST_UP_DOWN=true or ENABLE_ON_POST_UP_DOWN=false . Again, for testing purposes here, I have this set to ENABLE_ON_POST_UP_DOWN=false.




Usage:



To set the MAC address of wlan0 to 00:11:22:33:44:55, run the following commands:



sudo ifconfig wlan0 down
sudo macchanger --mac 00:11:22:33:44:55 wlan0
sudo service network-manager restart


Then, to show the current MAC address:



macchanger -s wlan0


For a list of options:



macchanger -h


Also, you may want to look into the "pretend to be a burned in address" -bia option.




Finally, I'm not sure how your IPV6 address will be impacted so that may be something you might want to pay attention to.




See also:



man macchanger


the GUI version: macchanger-gtk



and:



anonscm.debian.org/cgit/collab-maint/macchanger.git



github.com/alobbs/macchanger



www.gnu.org/software/macchanger







share|improve this answer














share|improve this answer



share|improve this answer








edited Jun 28 '15 at 2:55

























answered Jun 25 '15 at 18:21









mchidmchid

25.5k3 gold badges59 silver badges97 bronze badges




25.5k3 gold badges59 silver badges97 bronze badges















  • sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

    – Ketchup901
    Jun 26 '15 at 14:44











  • As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

    – Ketchup901
    Jun 26 '15 at 14:47











  • @AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

    – mchid
    Jun 28 '15 at 2:42











  • @AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

    – mchid
    Jun 28 '15 at 4:05












  • @AdamGenell to increase it for root user: sudo su; ulimit -n 2024

    – mchid
    Jun 28 '15 at 4:17

















  • sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

    – Ketchup901
    Jun 26 '15 at 14:44











  • As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

    – Ketchup901
    Jun 26 '15 at 14:47











  • @AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

    – mchid
    Jun 28 '15 at 2:42











  • @AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

    – mchid
    Jun 28 '15 at 4:05












  • @AdamGenell to increase it for root user: sudo su; ulimit -n 2024

    – mchid
    Jun 28 '15 at 4:17
















sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

– Ketchup901
Jun 26 '15 at 14:44





sudo macchanger --mac 00:11:22:33:44:55 wlan0 returned Current MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) Permanent MAC: 24:fd:52:63:8a:1d (Liteon Technology Corporation) [ERROR] Could not change MAC: interface up or insufficient permissions: Too many open files in system However when I check it either using ifconfig or macchanger -s wlan0 the MAC address appears to have changed, and upon restarting the network service it prompts me for a network password. After I enter the password, it thinks for a while and then prompts me again. This continues in an infinite loop.

– Ketchup901
Jun 26 '15 at 14:44













As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

– Ketchup901
Jun 26 '15 at 14:47





As mentioned, when I switch back to the permanent MAC address using the same command, it starts working again. I have tried the graphical "Network Connections" menu from the Control Center. Same problem there.

– Ketchup901
Jun 26 '15 at 14:47













@AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

– mchid
Jun 28 '15 at 2:42





@AdamGenell try rebooting first. I have tested this myself, you MUST first run sudo ifconfig wlan0 down then run sudo macchanger --mac 00:11:22:33:44:55 wlan0 then run sudo service network-manager restart. They must be run in that specific order and must not be run with any other commands or changes to configuration. In fact, network-manager should automatically connect to the network and should already be using the spoofed MAC automatically.

– mchid
Jun 28 '15 at 2:42













@AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

– mchid
Jun 28 '15 at 4:05






@AdamGenell to increase your file limit set to 1024 by default, you can run the following command to increase the file limit to 2024 for the current user: sudo sh -c "ulimit -n 2024 && exec su $USER". And then you should be able to run the commands without the ERROR.

– mchid
Jun 28 '15 at 4:05














@AdamGenell to increase it for root user: sudo su; ulimit -n 2024

– mchid
Jun 28 '15 at 4:17





@AdamGenell to increase it for root user: sudo su; ulimit -n 2024

– mchid
Jun 28 '15 at 4:17


















draft saved

draft discarded















































Thanks for contributing an answer to Ask Ubuntu!


  • 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.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f639639%2fcannot-connect-to-any-networks-after-spoofing-mac-address%23new-answer', 'question_page');

);

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







Popular posts from this blog

Tamil (spriik) Luke uk diar | Nawigatjuun

Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?