Installing Miracle Cast on Ubuntu 18.04.2 LTSHow to install newest version of Minitube from SourceInstall lubuntu-restricted-extrasInstalling Skype on Ubuntu 16.04 LTSInstalling ModX on Ubuntu 12.04 LTSImportError : No module named setuptoolsWhere to install OpenCV (which directory, NOT from apt-get package)?pyenv error installing Python 3.6.7 or 2.7.8 in Ubuntu 18.04.2 LTS
Given a fibonacci number , find just next fibonacci number
Linear Or nonlinear Black Scholes Equation
Meaning of “Bulldog drooled courses through his jowls”
The use of SlotSequence in If[#1 > #2, ##] &
When was the famous "sudo warning" introduced? Under what background? By whom?
What exactly is meant by "partial function" in functional programming?
Is it really better for the environment if I take the stairs as opposed to a lift?
Making a pikuach nefesh phone call on Yom Kippur - mitsva or something to be avoided?
出かけることにしました - What is the meaning of this?
Why is 10.1.255.255 an invalid broadcast address?
What actually is "unallocated space"?
Can elves trance in armor without any downsides?
Do any languages mark social distinctions other than gender and status?
What is the name of this Korean mobile sports game?
Can every type of linear filter be modelled by a convolution?
Did Bobby Fischer actually write "Bobby Fischer Teaches Chess"
Is it allowed to let the engine of an aircraft idle without a pilot in the plane. (For both helicopters and aeroplanes)
How would a race of humanoids with tails design [vehicle] seats?
Does using an img title attribute in addition to the alt attribute help image SEO?
C# Toy Robot Simulator
If equal temperament divides octave into 12 equal parts, why hertz differences are not the same but element 12th of two?
How can a stock trade for a fraction of a cent?
What is the white square near the viewfinder of the Fujica GW690?
What's the best way to annotate this syncopation?
Installing Miracle Cast on Ubuntu 18.04.2 LTS
How to install newest version of Minitube from SourceInstall lubuntu-restricted-extrasInstalling Skype on Ubuntu 16.04 LTSInstalling ModX on Ubuntu 12.04 LTSImportError : No module named setuptoolsWhere to install OpenCV (which directory, NOT from apt-get package)?pyenv error installing Python 3.6.7 or 2.7.8 in Ubuntu 18.04.2 LTS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
How to make the Miracast app "Miraclecast" work on an Ubuntu 18.04.2 LTS system? I followed the instructions listed below:
Go to https://github.com/albfan/miraclecast.
Download the entire source code, not just
autogen.sh. You can do it by clicking the Clone or download button, and then Download as ZIP or directly at https://github.com/albfan/miraclecast/archive/master.zip.Unzip the folder to get folder miraclecast-master and run:
cd miraclecast-master
sudo apt-get update
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
sudo ./autogen.shOnce
./autogen.shis complete, run:sudo ./configure
sudo make
sudo make install
and I followed these steps but had an error on:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
But got past it by adding a ; at the line break -
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev;
libtoolize; aclocal; autoconf
Then finished the steps and... Nothing...
Or maybe I'm missing something???
software-installation
add a comment
|
How to make the Miracast app "Miraclecast" work on an Ubuntu 18.04.2 LTS system? I followed the instructions listed below:
Go to https://github.com/albfan/miraclecast.
Download the entire source code, not just
autogen.sh. You can do it by clicking the Clone or download button, and then Download as ZIP or directly at https://github.com/albfan/miraclecast/archive/master.zip.Unzip the folder to get folder miraclecast-master and run:
cd miraclecast-master
sudo apt-get update
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
sudo ./autogen.shOnce
./autogen.shis complete, run:sudo ./configure
sudo make
sudo make install
and I followed these steps but had an error on:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
But got past it by adding a ; at the line break -
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev;
libtoolize; aclocal; autoconf
Then finished the steps and... Nothing...
Or maybe I'm missing something???
software-installation
Don't run autogen.sh or make as root; its not necessary and especially autogen might Do The Wrong Thing.
– TechFu
May 27 at 20:40
add a comment
|
How to make the Miracast app "Miraclecast" work on an Ubuntu 18.04.2 LTS system? I followed the instructions listed below:
Go to https://github.com/albfan/miraclecast.
Download the entire source code, not just
autogen.sh. You can do it by clicking the Clone or download button, and then Download as ZIP or directly at https://github.com/albfan/miraclecast/archive/master.zip.Unzip the folder to get folder miraclecast-master and run:
cd miraclecast-master
sudo apt-get update
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
sudo ./autogen.shOnce
./autogen.shis complete, run:sudo ./configure
sudo make
sudo make install
and I followed these steps but had an error on:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
But got past it by adding a ; at the line break -
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev;
libtoolize; aclocal; autoconf
Then finished the steps and... Nothing...
Or maybe I'm missing something???
software-installation
How to make the Miracast app "Miraclecast" work on an Ubuntu 18.04.2 LTS system? I followed the instructions listed below:
Go to https://github.com/albfan/miraclecast.
Download the entire source code, not just
autogen.sh. You can do it by clicking the Clone or download button, and then Download as ZIP or directly at https://github.com/albfan/miraclecast/archive/master.zip.Unzip the folder to get folder miraclecast-master and run:
cd miraclecast-master
sudo apt-get update
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
sudo ./autogen.shOnce
./autogen.shis complete, run:sudo ./configure
sudo make
sudo make install
and I followed these steps but had an error on:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize; aclocal; autoconf
But got past it by adding a ; at the line break -
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev;
libtoolize; aclocal; autoconf
Then finished the steps and... Nothing...
Or maybe I'm missing something???
software-installation
software-installation
edited Apr 19 at 18:33
Fabby
29.4k18 gold badges71 silver badges174 bronze badges
29.4k18 gold badges71 silver badges174 bronze badges
asked Apr 18 at 20:26
SilvanWolfSilvanWolf
11 bronze badge
11 bronze badge
Don't run autogen.sh or make as root; its not necessary and especially autogen might Do The Wrong Thing.
– TechFu
May 27 at 20:40
add a comment
|
Don't run autogen.sh or make as root; its not necessary and especially autogen might Do The Wrong Thing.
– TechFu
May 27 at 20:40
Don't run autogen.sh or make as root; its not necessary and especially autogen might Do The Wrong Thing.
– TechFu
May 27 at 20:40
Don't run autogen.sh or make as root; its not necessary and especially autogen might Do The Wrong Thing.
– TechFu
May 27 at 20:40
add a comment
|
1 Answer
1
active
oldest
votes
Don't use ; to separate these: they will turn libraries into commands.
Use the following commands instead:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize
aclocal
autoconf
add a comment
|
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
);
);
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%2faskubuntu.com%2fquestions%2f1135052%2finstalling-miracle-cast-on-ubuntu-18-04-2-lts%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
Don't use ; to separate these: they will turn libraries into commands.
Use the following commands instead:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize
aclocal
autoconf
add a comment
|
Don't use ; to separate these: they will turn libraries into commands.
Use the following commands instead:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize
aclocal
autoconf
add a comment
|
Don't use ; to separate these: they will turn libraries into commands.
Use the following commands instead:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize
aclocal
autoconf
Don't use ; to separate these: they will turn libraries into commands.
Use the following commands instead:
sudo apt-get install ubuntu-dev-tools autoconf libtool libudev-dev libsystemd-dev glib-2.0 libperl-dev libgtk2.0-dev libreadline-dev
libtoolize
aclocal
autoconf
edited Apr 20 at 8:05
answered Apr 19 at 18:36
FabbyFabby
29.4k18 gold badges71 silver badges174 bronze badges
29.4k18 gold badges71 silver badges174 bronze badges
add a comment
|
add a comment
|
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.
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%2faskubuntu.com%2fquestions%2f1135052%2finstalling-miracle-cast-on-ubuntu-18-04-2-lts%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
Don't run autogen.sh or make as root; its not necessary and especially autogen might Do The Wrong Thing.
– TechFu
May 27 at 20:40