Unable to install drivers for NodeMCU in Ubuntu The 2019 Stack Overflow Developer Survey...
Simulating Exploding Dice
What can I do if neighbor is blocking my solar panels intentionally?
Working through the single responsibility principle (SRP) in Python when calls are expensive
Why can't devices on different VLANs, but on the same subnet, communicate?
Could an empire control the whole planet with today's comunication methods?
How to determine omitted units in a publication
Huge performance difference of the command find with and without using %M option to show permissions
Intergalactic human space ship encounters another ship, character gets shunted off beyond known universe, reality starts collapsing
What's the point in a preamp?
Sub-subscripts in strings cause different spacings than subscripts
Homework question about an engine pulling a train
Can the Right Ascension and Argument of Perigee of a spacecraft's orbit keep varying by themselves with time?
Make it rain characters
How do spell lists change if the party levels up without taking a long rest?
Can we generate random numbers using irrational numbers like π and e?
What to do when moving next to a bird sanctuary with a loosely-domesticated cat?
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
60's-70's movie: home appliances revolting against the owners
What is the role of 'For' here?
Presidential Pardon
How did passengers keep warm on sail ships?
"... to apply for a visa" or "... and applied for a visa"?
What force causes entropy to increase?
How do I design a circuit to convert a 100 mV and 50 Hz sine wave to a square wave?
Unable to install drivers for NodeMCU in Ubuntu
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Installing dropbox-api on SUSE failsInstalling a library locally in home directory, but program doesn't recognize itSetup Alfa AWUS036NHR V2 to Kali LinuxCannot install AMD Proprietary Driver (Cannot find Kernel Headers)Virtualbox installation in SLES11 SP2Unable to install Ubuntu 15.04 via USB flash drive on a new machineHow do I install Havit WF30 wireless adapter on Ubuntu on a laptop without a CD drive?Having trouble building xv6 using QEMULinux kvm module compile causes dependency cycles kvm->kvm_intel->kvmSGX-Step for implementing Foreshadow vulnerability
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I'm trying to start with NodeMCU on my linux machine. While installing the drivers for NodeMCU, CH341SER_LINUX, the Makefile build gives the following error:
root@ashtava:~/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX# make -f Makefile
make -C /lib/modules/4.18.0-17-generic/build M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
/bin/sh: 1: Syntax error: "(" unexpected
Makefile:5: recipe for target 'default' failed
make: *** [default] Error 2
What am I doing wrong? What am I missing?
linux
New contributor
add a comment |
I'm trying to start with NodeMCU on my linux machine. While installing the drivers for NodeMCU, CH341SER_LINUX, the Makefile build gives the following error:
root@ashtava:~/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX# make -f Makefile
make -C /lib/modules/4.18.0-17-generic/build M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
/bin/sh: 1: Syntax error: "(" unexpected
Makefile:5: recipe for target 'default' failed
make: *** [default] Error 2
What am I doing wrong? What am I missing?
linux
New contributor
add a comment |
I'm trying to start with NodeMCU on my linux machine. While installing the drivers for NodeMCU, CH341SER_LINUX, the Makefile build gives the following error:
root@ashtava:~/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX# make -f Makefile
make -C /lib/modules/4.18.0-17-generic/build M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
/bin/sh: 1: Syntax error: "(" unexpected
Makefile:5: recipe for target 'default' failed
make: *** [default] Error 2
What am I doing wrong? What am I missing?
linux
New contributor
I'm trying to start with NodeMCU on my linux machine. While installing the drivers for NodeMCU, CH341SER_LINUX, the Makefile build gives the following error:
root@ashtava:~/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX# make -f Makefile
make -C /lib/modules/4.18.0-17-generic/build M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
/bin/sh: 1: Syntax error: "(" unexpected
Makefile:5: recipe for target 'default' failed
make: *** [default] Error 2
What am I doing wrong? What am I missing?
linux
linux
New contributor
New contributor
New contributor
asked yesterday
Ashutosh SrivastavaAshutosh Srivastava
1
1
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The Problem
Below Error in your command output, states what is wrong here :
/bin/sh: 1: Syntax error: "(" unexpected
And you are getting this error because of the space and parentheses in the file name. So, when shell encounters space in your command, it treats it as end of filename :
/home/ashtava/Downloads/CH341SER_LINUX
And rest part :
(1)/CH341SER_LINUX
is treated as another argument to command make
, but before that shell encounters a parentheses to which it freaks out.
The Solution
You can do one of the following or perhaps try all of them :
Using the quotes single or double around your filename like :
M='/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX'
OR
M="/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX"
Using Escape character
to tell shell to treat special characters ( here parentheses ( ) and space
) as plain characters like :
M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
Here is a good read on what characters need to escaped when using Bash ?.
Feel free to add-in more details.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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/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
});
}
});
Ashutosh Srivastava is a new contributor. Be nice, and check out our Code of Conduct.
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%2fsuperuser.com%2fquestions%2f1424223%2funable-to-install-drivers-for-nodemcu-in-ubuntu%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
The Problem
Below Error in your command output, states what is wrong here :
/bin/sh: 1: Syntax error: "(" unexpected
And you are getting this error because of the space and parentheses in the file name. So, when shell encounters space in your command, it treats it as end of filename :
/home/ashtava/Downloads/CH341SER_LINUX
And rest part :
(1)/CH341SER_LINUX
is treated as another argument to command make
, but before that shell encounters a parentheses to which it freaks out.
The Solution
You can do one of the following or perhaps try all of them :
Using the quotes single or double around your filename like :
M='/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX'
OR
M="/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX"
Using Escape character
to tell shell to treat special characters ( here parentheses ( ) and space
) as plain characters like :
M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
Here is a good read on what characters need to escaped when using Bash ?.
Feel free to add-in more details.
add a comment |
The Problem
Below Error in your command output, states what is wrong here :
/bin/sh: 1: Syntax error: "(" unexpected
And you are getting this error because of the space and parentheses in the file name. So, when shell encounters space in your command, it treats it as end of filename :
/home/ashtava/Downloads/CH341SER_LINUX
And rest part :
(1)/CH341SER_LINUX
is treated as another argument to command make
, but before that shell encounters a parentheses to which it freaks out.
The Solution
You can do one of the following or perhaps try all of them :
Using the quotes single or double around your filename like :
M='/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX'
OR
M="/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX"
Using Escape character
to tell shell to treat special characters ( here parentheses ( ) and space
) as plain characters like :
M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
Here is a good read on what characters need to escaped when using Bash ?.
Feel free to add-in more details.
add a comment |
The Problem
Below Error in your command output, states what is wrong here :
/bin/sh: 1: Syntax error: "(" unexpected
And you are getting this error because of the space and parentheses in the file name. So, when shell encounters space in your command, it treats it as end of filename :
/home/ashtava/Downloads/CH341SER_LINUX
And rest part :
(1)/CH341SER_LINUX
is treated as another argument to command make
, but before that shell encounters a parentheses to which it freaks out.
The Solution
You can do one of the following or perhaps try all of them :
Using the quotes single or double around your filename like :
M='/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX'
OR
M="/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX"
Using Escape character
to tell shell to treat special characters ( here parentheses ( ) and space
) as plain characters like :
M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
Here is a good read on what characters need to escaped when using Bash ?.
Feel free to add-in more details.
The Problem
Below Error in your command output, states what is wrong here :
/bin/sh: 1: Syntax error: "(" unexpected
And you are getting this error because of the space and parentheses in the file name. So, when shell encounters space in your command, it treats it as end of filename :
/home/ashtava/Downloads/CH341SER_LINUX
And rest part :
(1)/CH341SER_LINUX
is treated as another argument to command make
, but before that shell encounters a parentheses to which it freaks out.
The Solution
You can do one of the following or perhaps try all of them :
Using the quotes single or double around your filename like :
M='/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX'
OR
M="/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX"
Using Escape character
to tell shell to treat special characters ( here parentheses ( ) and space
) as plain characters like :
M=/home/ashtava/Downloads/CH341SER_LINUX (1)/CH341SER_LINUX
Here is a good read on what characters need to escaped when using Bash ?.
Feel free to add-in more details.
answered yesterday
C0deDaedalusC0deDaedalus
1,1901217
1,1901217
add a comment |
add a comment |
Ashutosh Srivastava is a new contributor. Be nice, and check out our Code of Conduct.
Ashutosh Srivastava is a new contributor. Be nice, and check out our Code of Conduct.
Ashutosh Srivastava is a new contributor. Be nice, and check out our Code of Conduct.
Ashutosh Srivastava is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1424223%2funable-to-install-drivers-for-nodemcu-in-ubuntu%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