Software :: Loading Drivers - Directory / Makefile Not Found

Sep 19, 2010

I'm trying to load drivers from .tar.bz2 file. I got the .tar opened and extracted to directory ABC. When I try to CD to that directory, I get a message the directory does not exist even tho' I'm looking right at it and the ls command shows it. The full path is user/downloads.ABC.

When I try to run the next command $tar -xvzf DPB_RT2870_Linux_STA_x.x.x.x.tgz I get a message Ubuntu 10.04 cannot find -xvzf. When I try to run the Makefile command locate in the same ABC directory, I again the error message cannot find Makefile.

View 4 Replies


ADVERTISEMENT

Slackware :: Makefile:535: /usr/src/linux-2.6.33.4/arch/i486/Makefile: No Such File Or Directory

May 31, 2010

I just downloaded slackware 13.1(x86) and i'm trying to compile ndiswrapper-1.56 using the slackbuild from slackbuils.org and i'm getting this error:

Code:

Makefile:535: /usr/src/linux-2.6.33.4/arch/i486/Makefile: No such file or directory
make[2]: *** No rule to make target `/usr/src/linux-2.6.33.4/arch/i486/Makefile'. Stop.
make[1]: *** [modules] Error 2
make: *** [all] Error 2

looks like the folder i486 doesn't exist

View 2 Replies View Related

Debian :: No Targets Specified And No Makefile Found

Feb 21, 2016

I seem to be running into this issue a lot when installing various programs. I downloaded and installed a tar file (Linux Wacom Project. xf86-input-wacom-0.32.0 specifically) for my Bamboo tablet. Here's what I did:

Code: Select allsudo apt-get install build-essential

Looks like everything went well, but it asked me for a CD?... I just ignored that and went to the next step in the guide.

Code: Select allsudo apt-get build-dep wacom-tools

Looks like everything went well here. But near the end I get this...

Code: Select allchecking for doxygen... no
configure: WARNING: doxygen not found - documentation targets will be skipped
checking for rint in -lm... yes
checking for XORG... no
configure: error: in `/home/mason/Desktop/xf86-input-wacom-0.32.0':
configure: error: The pkg-config script could not be found or is too old.  Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config.

Alternatively, you may set the environment variables XORG_CFLAGS and XORG_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.

I didn't really pay attention to THAT until I do...

Code: Select allcd ~/Desktop/linuxwacom-0.8.8-6
./configure --prefix=/usr
make

Where in I get this error message after I enter in Code: Select allmake at the terminal

Code: Select allmake: *** No targets specified and no makefile found.  Stop.

View 11 Replies View Related

Software :: No Targets Specified And Makefile Not Found

May 1, 2010

I download a package of tar.gz ...

1:firstly I extract it on desktop
2:Then use cd command and go to extracted folder
3:To install that package i use

sudo make install. Then I got a error message
"make: *** No targets specified and no makefile found. Stop."

View 4 Replies View Related

Server :: Make: *** No Targets Specified And No Makefile Found?

Aug 4, 2011

im trying to install Squid clamav with squid(fedora11, 386MB, 2.6kernel)..i configured clamd and is working fine,(squid wrking fine) then i tried to install squidclamav via (yum -y install curl-devel).then i downloaded squidclamav-4.0.tar.gz and extracted.. then i run ./configure and then make.but make install command wont work; it shows an error.

View 4 Replies View Related

Debian :: Pkg_config_path - Makefile And Libnl - /bin/sh: Pkg-config: Not Found

Feb 13, 2010

I have xubuntu 9.10 and I'm trying to install iw-0.9.19.When I use the command "make" I get this error:

/bin/sh: pkg-config: not found
/bin/sh: pkg-config: not found

Makefile:38: *** Cannot find development files for any supported version of libnl. Stop. I read the Readme file and it says: "To build IW, just enter make. If that fails, set the PKG_CONFIG_PATH environment variable to allow the Makefile to find libnl". I guess the problem is linking Makefile (in iw-0.9.19 directory) to libnl (version 1.1 correctly installed on xubuntu) via pkg_config_file.

View 6 Replies View Related

Software :: Mesa Uninstall - Feature Not Found In Makefile

Mar 22, 2011

I downloaded mesa from their git repository a few days ago then built it and installed it. I've tried removing it just now with "make uninstall", but that feature isn't in the makefile. How I can remove it?

View 1 Replies View Related

Ubuntu Installation :: Cannot 'make' Jahshaka - No Targets Specified And No Makefile Found - Stop

Dec 5, 2010

I needed an open source alternative to after effects so i went for jahshaka but after following the instructions, i type in 'make' and hit return and it says "make: *** No targets specified and no makefile found. Stop." am i missing something obvious? i have looked around the web, but no-one has this problem that i can find i am using ubuntu 10.04.

View 2 Replies View Related

Ubuntu :: Mousetrap Doesnot Work \ Error:make: *** No Targets Specified And No Makefile Found?

Dec 17, 2010

i have installed mouse trap by the Ubuntu "easy peasy" software center ,but for some reason it didn't work so i uninstalled it and start to install the mouse trap from herehttp://live.gnome.org/MouseTrap/Installationbut when did the "make" step it gave me that error:make: *** No targets specified and no makefile found. Stop.so how i fix thatand another problem that i have is when i go to a live radio on the net to listen it dose not work how do i change it to work like i changed to the "vlc player" to be the first program that opens

View 2 Replies View Related

Programming :: Compiling Recursive Makefile In Directory Structure

May 18, 2011

I'm having problems with compiling recursive Makefiles in my directory structure:
My folder layout is:
top/|- one/|- one.c (With main function)|- zero.c|- two/|- two.cin my top folder the make file looks like:

Code:
MAKE_DIRECTORIES = one two
.PHONY: all
all: $(MAKE_DIRECTORIES)

.PHONY: $(MAKE_DIRECTORIES)
$(MAKE_DIRECTORIES):
@echo $@
$(MAKE) --directory=$@
in my one and two folder I have the following Makefile:

Code:
.PHONE: all
all:
@echo $@
$(CC) $(CFLAGS) *.c
But when I compile it from top folder: make

I get following output:
Code:
one
two
Which states that directory statement by echo in main Makefile is ok but the files are not compiled in one and two.

View 5 Replies View Related

General :: Error "No Target Specified No Makefile Found Stop"

May 7, 2011

i m trying to install glib on my pc but i was always encounter a probelem in make. it says "No Target Specified No Makefile Found Stop"

[code]...

View 14 Replies View Related

Ubuntu :: Freewins Compiz Plugin "no Makefile Found"

Mar 30, 2011

I'm trying to install the Freewins Compiz plugin (because I often use my computer while I'm horizontal on the couch; and I realize that's lazy), and I'm trying to use the instructions from the page,I've googled this and found one guy that has the same problem but no solution, and other pages that talk about Freewins have the exact same instructions for installing.Does anybody have any idea how to get this working correctly?

View 4 Replies View Related

Fedora :: Emacs - Error "make: *** No Targets Specified And No Makefile Found. Stop"

Aug 5, 2010

I recently switched over to Fedora 13 but I'm having a bit of trouble. I've tried writing simple programs in Emacs and Eclipse but neither will compile. It always gives the error, "make: *** No targets specified and no makefile found. Stop."

I've looked around at a couple of forums, but people with the same issue can't install software, but I can. I got Fedora from the Fedora website so I know its complete, but I have the sneaking suspicion that I'm just missing a file or something.

View 2 Replies View Related

OpenSUSE Network :: Failure Message "Makefile:61: Kernel Source Not Found"

Oct 3, 2010

I want to load the package madwifi under opensuse from Index of /suse/11.1, but RealPlayer did not function correctly. The reason why I want to use madwifi is that I cannot start my internet with opensuse 11.1 using motherboard from asus with the ethernet adapter from Atheros AR 8121/AR8113 PCI-E Version 1.0.0.5. When I compile the delivered Linux drivers I got the failure message "Makefile:61: Linux kernel source not found". So I decided to take rpm from opensuse within madwifi. How/Where can I get the corrosponding madwifi elsewhere?

View 4 Replies View Related

OpenSUSE Install :: Apache2::Request Module - Error "No Targets Specified And No Makefile Found"

Jun 14, 2010

I'm trying to install Apache2::Request module (from CPAN.org) and in shell there is such messages: I'm using openSUSE 11.1, Perl 5.8

[Code]...

View 2 Replies View Related

Software :: Using Kubuntu 11.04 On ASUS K52Jc Error "No Targets Specified And No Makefile Found - Stop"

Jun 16, 2011

I am using Kubuntu 11.04 on ASUS K52Jc and when I start compiling this happens: (yes,yes I do ./configure; after that) q12345@Laptop $ make make: *** No targets specified and no makefile found. Stop. and what is so weird? Well, I can't do it on any other system that I tried (openSuSE, all Ubuntus, Debian...).

View 2 Replies View Related

OpenSUSE Install :: Module Apache2::Request To OS - Error "No Targets Specified And No Makefile Found - Stop"

Jun 19, 2010

I'm using openSUSE 11.1, KDE I'm trying to install the module Apache2::Request to my OS. After the gzip -dc libapreq2-2.12.tar.gz | tar -xof - I typed in Shell these (as shown in INSTALLATION document of module): perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs Then something goes wrong, make doesn't work saying: make: *** No targets specified and no makefile found. Stop..

I think the problem is in the command perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs in section .../path/to/apache2/bin/apxs . What does mean ./path/to/apache2/bin/apxs? Maybe I should write the path to apache2 which contains a file named apxs? I did not find such file apxs. My apache2 path is /etc/apache2, but there is no file named apxs... Result for perl Makefile.PL --with-apache2-apxs=/path/to/apache2/bin/apxs:

[Code]....

View 3 Replies View Related

General :: Loading Drivers Using CDROM?

Dec 1, 2010

How do I mount a cdrom and access the file on it?

View 1 Replies View Related

Debian :: Sqeeze Install & Loading Drivers?

Jan 31, 2011

yet another recent Ex-Windows user hear. Been playing with and studying Linux for a few months now. I would like to install Sqeeze on my Acer Aspire One D250.The question I have concerns needed drivers. Do I need to download every .tar or .zip, or is the current folder all I need?

View 8 Replies View Related

Fedora Installation :: Loading Drivers For Printer?

Jul 20, 2010

how to load drivers for my printer? I think I can find them online but have no idea how to navigate to get them loaded so I can finally use my printer!

View 1 Replies View Related

Ubuntu :: Grub Loading - No Module Name Found

Feb 27, 2010

I have UBUNTU 9.10 and WIN 7 installed on my computer. I turn computer on, choose UBUNTU, do what I need and shut down computer (or reset - doesn't matter). Turn on computer again and get message:

GRUB loading.
no module name found
Aborted. Press any key to exit.
Operating System Not Found.

So I turn comp from Live CD, install GRUB and after resetting computer everything seems fine - but unfortunately not for long. Next reset and the problem is back again. The problem only occurs when I choose UBUNTU. There is no problem with WIN 7...

View 4 Replies View Related

OpenSUSE Install :: Hangs At 'loading Basic Drivers'?

Dec 21, 2010

I got a new ASUS EeePC 1015PEM with Windows 7 with the intention to install OpenSuse 11.3 onto it for having a dual booting netbook with enough disk space.I'm installing from an external DVD drive, the checksums of the ISO were ok as well.However, the OpenSuse installer fails at starting up after selecting the action. It hangs, no matter what menu entry I chose, at "loading basic drivers", forever.Because this isn't necessarily an unknown problem I've tried some of the predefined kernel options of the main installer menu. Then I tried some manually entered kernel boot options that helped me in some other installations:

acpi=off, apm=off, CPUFreq=noNone of them seem to have an effect on the installers behaviorI hope that there is people who managed to solve this problem with an actual EeePC model... because I really don't know what I could any more. It's kind of frustrating to not even get past the kernel launch I haven't tried any other distros installation discs, but I don't even intend to. I want OpenSuse because I'm running it on our firms machines as well and don't like shifting between systems.

View 9 Replies View Related

Ubuntu :: Live Hanging On Loading Essential Drivers?

Jun 21, 2010

I'm trying to recover files from a desktop PC which has 4 HD running on a RAID (0+1) set-up. Now it would appear that either Vista Raid has failed (which I think will be the issue) or one or more of the HD partions has become corrupt. So, I have installed Ubuntu Live on USB and have succesfully booted; however, Ubuntu does not appearing to be loading as it is stuck on "loading essential drivers".

View 1 Replies View Related

Slackware :: Xorg Not Loading After Install Of Nvidia Drivers 270.41.19

Jun 1, 2011

I am running slackware 13.37. I installed the newest NVIDIA drivers 270.41.19 and now impossible to load Xorg.

I get:

fatal server error:

How I installed the new nvidia drivers:
- removepkg xf86-video-nouveau
- installed xf86-video-nouveau-blacklist-noarch-1.txz for blacklist the nv drivers
- run script nvidia
- run nvidia-xconfig
- reboot

The startx and black screen with errors messages mentioned above.

I run glxinfo | grep render and i get " Error: Unable to open display". Logical since no Xorg

I run dmesg | grep nvidia and I get all the required fields:
- NVIDIA taint kernels
- power state
- enabling device
- PCI INT A
- Setting latency

I have to manually copy the errors messages since my PC is not working.

When I run "find /usr/lib -name *.270.* " I do get the module Same thing when I run "find /lib -name nvidia.ko". I see the nvidia.ko module.

View 11 Replies View Related

Ubuntu Installation :: With NVIDIA 310M Graphics Card Drivers (310M) On A Dell Vostro 3300 - Errors "no Device Found - No Screens Found"

Oct 28, 2010

I have a Dell Vostro 3300, i5 460 processor with a NVIDIA 310M Graphics Card. I'm doing a KUBUNTU 10.10 (Maverick) install with the following results. The Live CD boots just fine to, "TEST," or "Install." Installation goes fine. However, the graphics card being used is the Intel i915. I have tried installing the NVIDIA drivers directly from the, "Additional Drivers," tool and after the reboot I get through the boot screen to the console. I try to manually startx and I get the errors, "no device found," "no screens found." The second install I tried purging and blacklisting the nouveau drivers and entering safe mode. Then using apt-get install nvidia-current. After that, nvidia-xconfig. Same results.

The third attempt I re-installed and this time downloaded the drivers from the Nvidia site (version 256.53). Blacklisted nouveau, remove all nvidia, updated initramfs, etc. The install went fine however I still end up at a console after boot with the same messages as above. No device found, no screens found. I've tried searching through the forum and web and have tried things like adding the modset option along with many other hacks, tips and fixes. still, no go.I can live with the Intel graphics for now although I lose 512MB of memory. Unfortunately there is no way to disable or change this set-up in the BIOS. I've seen quite a few bug reports at Launchpad:

1. Is this something I should just wait til a fix comes? Will a fix come?
2. Is there, or will there be an official Updated Ubuntu Guide for Maverick to install NVIDIA drivers with this tecnology?
3. Lastly, is there anything else I should try??

View 9 Replies View Related

Hardware :: Sound Drivers Not Loading In Fedora 14 / Make Them Work Again?

Dec 30, 2010

I am having trouble loading my sound drivers after removing pulseaudio. (Yes, I did try and reinstall pulse, did it again with ALSA, no luck).

It appears that my sound drivers are not loaded, because cat /proc/asound/cards returns 'no soundcards' and aplay -l returns the same... the ouput was quite different before, I am sure I DO have soundcards and they did work before in Fedora 14.

Any Ideas how can I make the sound drivers load again ?

View 2 Replies View Related

Debian Installation :: Loading Missing Firmware - Failure To Detect Drivers

Aug 5, 2014

So, I am having certain issues regarding Debian installation. Since my Wi-Fi card, Intel PRO/Wireless 3945ABG, requires non-free drivers not provided within Debian install image, I am bound to use USB stick during installation process to get those drivers, iwlwifi-3965-1.ucode and iwlwifi-3965-2.ucode, to enable Wi-FI on my system. However, no matter what I do, I cannot get debian-installer to detect drivers present on the machine. I have tried virtually everything - downloading drivers from multiple sources, renaming drivers properly, using ext4 instal of fat32, using gpt instead of msdos, placing files in /firmware instead of root directory - but no matter what I do, the outcome is the same. USB stick seems to be working properly. Am I bound to downloading non-free image now, or is there a solution?

View 9 Replies View Related

Ubuntu Networking :: Loading Native Drivers For Realtek Wireless Adapter?

Feb 12, 2011

Just made the jump to Ubuntu, and until this install I considered myself very tech savvy. Now not so much! Built my new desktop, loaded Ubuntu 64 bit no problem. But I'm having a terrible time figuring out how to load the native driver for my realtek wireless adapter. I successfully un-tarred the file, and used the terminal to run the make command by using cd command to navigate to the file. It returned a wall of text, and in my mind looked to work. Next I go to run "./clean" in the same file location in the terminal and it returns:

"ERROR: Module r8192s_usb does not exist in /proc/modules
ERROR: Module ieee80211_rsl does not exist in /proc/modules
ERROR: Module ieee80211_crypt_ccmp does not exist in /proc/modules
ERROR: Module ieee80211_crypt_tkip does not exist in /proc/modules
ERROR: Module ieee80211_crypt_wep does not exist in /proc/modules
ERROR: Module ieee80211_crypt does not exist in /proc/modules

Not completely sure if this is an issue, I try moving to the next step of instructions issuing the command "insmod 8712u.ko" in the terminal same file location and get the error message
insmod: error inserting '8712u.ko': -1 Operation not permitted
I've tried running "sudo insmod 8712u.ko" from both that file directory, and from my home file directory. My guess is I'm missing a step or need to be typing these commands in a different file directory in the terminal.

View 1 Replies View Related

Ubuntu :: System Hangs At Boot Time When Loading Hardware Drivers?

Aug 26, 2010

My system hangs at boot time when loading hardware drivers for about a minute. It hangs here:

Code: dmesg
[ 8.196035] udevd version 124 started
[ 8.533233] pci_hotplug: PCI Hot Plug PCI Core version: 0.5

[code]....

View 9 Replies View Related

Ubuntu :: OS Uninstalled - Loading Grub (Error 15) File Not Found

Jul 11, 2010

I just (basically) completely uninstalled my OS by accident. In synaptic package manager I selected to completely remove volume control (which had been going haywire for god knows what reason) with intent to immediately reinstall. I didn't put 2 and 2 together when it said it'd remove all related files including the kernel... hal... restricted drivers... everything got uninstalled. Network manager crashed...

I decided to try my luck with restarting (what was left) of the system. Now I'm looking at a boot screen of:
loading grub...
error 15: file not found.

Did I have to just make a boot disc and reinstall the os? or can I just "put the pieces back together" as it were and reinstall with a 'sudo aptitude update' once I get network up again?

View 9 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved