Ubuntu :: Installing ".tar.gz" Driver - What Is "terminal" And "source Directory"
May 8, 2011
using the new 11.04 version. and i have "creative x-fi sb" sound card i downloaded its linux compatible driver from creative website and it was .tar.gz file i extracted it and opened the readme file to read the instructions and it was like that
Quote:
Quick install In terminal,
1) Goto source directory
2) Execute make command as root
make
make install
i don't know what is "terminal" and what is "source directory" .. actually i don't understand anything of these instructions
View 1 Replies
ADVERTISEMENT
Apr 13, 2011
I've tried a couple times to install from a tar.gz file and when i try to compile the source code in the terminal I get this error "tar: bash-4.2.tar.gz: Cannot open: No such file or directory" what am I doing wrong? Now when I download the files, I leave themin the down loads folder, do i need to make a new directory? If so how do I do that and how do i call it up when I compile the sopurce?
View 1 Replies
View Related
May 2, 2010
I'm having trouble installing a usb wireless adapter.
Code: # lsusb
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 002: ID 046d:c526 Logitech, Inc.
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 004: ID 0bda:8171 Realtek Semiconductor Corp.
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
(It came with a linux driver but not sure how to install it)
Code: /2009_1106_RT3070_Linux_STA_V2.1.1.0 (2) # ls
chips
iwpriv_usage.txt
README_STA_usb
sta
common
Makefile
RT2870STACard.dat
sta_ate_iwpriv_usage.txt
include
os
RT2870STA.dat
tools the readme just has a change log, no instructions.
View 9 Replies
View Related
Aug 23, 2010
I have a dell PC running on Fedora 12, and I would like to install this SCSI controller card from adaptec:[URL]I see that the driver for Linux is available only as source code. Can somebody please indicate me how to proceed? I am not advanced enough in Linux to know what to do with it myself...I downloaded the most recent (v2.0.26) Source Code for Linux Kernel v2.6 on all platforms.Here are the contents of the tarball (if it helps in any way):
03/09/2007 08:42 PM 10,821 aic7770.c
03/09/2007 08:42 PM 8,088 aic7770_osm.c
03/09/2007 08:42 PM 51,838 aic79xx.h
[code]....
View 2 Replies
View Related
Nov 19, 2010
i was not able to install alsa...showing the error checking for directory with kernel source... Please install the package with full kernel sources for your distribution or use --with-kernel=dir option to specify another directory with kernel sources (default is /lib/modules/2.6.18-194.el5xen/source). my friends installed the alsa for cent os 5.4...how to rectify this...
View 3 Replies
View Related
Jul 15, 2010
Okay I've used an X11 Terminal on MAC OS to compile programs but never a driver. I'm now using SUSE 11.3 (first linux to install on my toshiba correctly). Alas I need help telling the terminal what to do. It came with instructions that the modules and firmware need to be set up or injected into the kerenal.
My Wireless Driver is: Realtek 8192SE driver version Linux: 2.6.0017.0507
My Computer is a Toshiba L505-ES5034.
Like I said I've compiled software in X11 before but never a driver. So first I navigate to the files using CD (change dir) and then what?
View 1 Replies
View Related
Oct 8, 2010
I downloaded the tar file and extract it in my downloads directory. After that I did the compiling and installing as per ReadMe file. Now, is it safe to delete that directory with the source?
View 1 Replies
View Related
Jul 4, 2011
I pulled a stupid when trying to install VLC through the terminal and added the ppa source for a different version of ubuntu. Now when I do a sudo apt-get update I come up with the error:
W: Failed to fetch http://ppa.launchpad.net/lucid-bleed...source/Sources 404 Not Found
W: Failed to fetch http://ppa.launchpad.net/lucid-bleed...amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Also in the midst of the long list i found:
Err http://ppa.launchpad.net natty/main Sources
404 Not Found
Err http://ppa.launchpad.net natty/main amd64 Packages
404 Not Found
I tried to look in /etc/apt/sources.list for the source to remove it but I couldn't find it. Where is it located and how can I undo what I did?
View 3 Replies
View Related
Apr 19, 2011
I'm trying to install the rt2870 driver on my server running Ubuntu Server 8.04. I've installed build-essential, checkinstall, cvs, subversion, git-core, mercurial... After uncompressing the tarball, doing a "sudo make" gives me this output:
[Code]...
View 9 Replies
View Related
May 4, 2010
i know that the command /.configure will make the "make" file and then i have to make " make install" to install the app. but how to deal with the dependency problem ? i asked my friend about it and he said why dont you use apt instead to install packages but what if i want to use distos like slackware? anyway that friend was not interested in helping me out and i m not expecting to. but can anybody answer this in detail or provide any document on this..
View 6 Replies
View Related
Feb 22, 2010
I have a problem in programing pseudo terminal. In the book APUE (advanced programing in the unix environment) in chapter 15.4: coprocess gives an example of using pipe to operate another program, that provide its input and read its output: Figure 15.18. Figure 15.19 is filter to add two numbers using standard IO. The author said that you must flush the IO buffer in the program which are operated through pipe by another program, however, we cannot add fflush to the source code and re-compile the whole program if we need to use it in another process. It said that pseudo terminal can solve this problem, but I have tried in fedora12 with forkpty call and fail. Source code as follows:
The main process:
Code:
#include "common.h"
#define LINESIZE 256
int main()
{
int fd[2];
pid_t pid;
if( socketpair(AF_UNIX, SOCK_STREAM, 0, fd)<0 ) {
perror("create socket error");
exit(1);
}
int master;
struct termios tm;
if( tcgetattr(STDIN_FILENO, &tm)<0 ) {
perror("tcgetattr error");
exit(3);
}
struct winsize size;
if( ioctl(STDIN_FILENO, TIOCGWINSZ, (char*)&size)<0 ) {
perror("ioctl error");
exit(4);
}
setbuf(stdout, NULL);
pid=forkpty(&master, NULL, &tm, &size);
if( pid<0 ) {
perror("create process error");
exit(2);
}
else if(pid>0) {//parent
close(fd[1]);
char line[LINESIZE];
memset(line, 0, LINESIZE);
while( fgets(line, LINESIZE, stdin)!=NULL ) {
write(fd[0], line, strlen(line));
memset(line, 0, LINESIZE);
int n=read(fd[0], line, LINESIZE);
if(n>=0) line[n]=0;
printf("%s", line);
memset(line, 0, LINESIZE);
}
} else {//child
close(fd[0]);
if( fd[1]!=STDIN_FILENO ) {
if(dup2(fd[1], STDIN_FILENO)!=STDIN_FILENO) {
perror("dup2 error");
exit(1);
}
}
if( fd[1]!=STDOUT_FILENO) {
if(dup2(fd[1], STDOUT_FILENO)!=STDOUT_FILENO) {
perror("dup2 error");
exit(2);
}
}
close(fd[1]);
if(execl("./add", "add", (char*)0)<0) {
perror("exec error");
exit(3);
}
exit(0);
}
//parent
wait(NULL);
return 0;
}
The add program reads a line and get two numbers and return the sum of them.
Code:
#include "common.h"
int main() { int n1, n2;
char line[256];
memset(line, 0, 256);
while( fgets(line, 256, stdin)!=NULL) {
sscanf(line, "%d%d", &n1, &n2);
printf("%d", n1+n2);
fflush(NULL); /*the program does not work without this sentence why?*/
memset(line, 0, 256); } return 0; }
View 5 Replies
View Related
Apr 9, 2011
Which one is the best open source Directory server ?
View 1 Replies
View Related
Jun 11, 2010
I have a user account on a server that runs debian. I do not have the root or superuser password b/c i am not the local system admin, but I want to install a program (djvu2pdf and djvulibre-tools). I did some searching on the internet and found some useful information, but nothing to really tell me what to do.My question, if it compiled succesfully, did it install? Where am I at in the install process? I want it to put the executable files in my /home/usr_acnt/bin/ folder, how do I do that?
View 2 Replies
View Related
Feb 9, 2010
I want to modify the source of cd (the 'change directory' command) to do a little extra for me, but I can't seem to find the source code anywhere.. maybe I didn't look for it well enough, and googling "source code cd" and variants of that doesn't exactly help... I was wondering if anyone knew where I could find the src?
View 14 Replies
View Related
Mar 25, 2010
I intend to attach WLAN PCMCIA card to my embedded system to connect to a wireless network. However, my embedded system uses a strangs OS that not supports the card driver. I think that I can investigate on how Ubuntu control the card to find out the way to control it in my system. The WLAN PCMCIA card that I can buy is:TP-Link TL-WN510G,Linksys WPC54GSCan any one tell me, how can I have the source code of WLAN PCMCIA driver and how can I find out the way Ubuntu control this card?
View 4 Replies
View Related
May 28, 2010
I have a performance issue using the open source radeon driver. I normally would just attribute this to the driver still not ready, but it was working fine on the Mandriva install I just wiped out. I replaced madriva in order to have Qimo sessions for my daughter to use. When I try to run glxgears the gears basically don't move.
View 4 Replies
View Related
May 31, 2010
I made the error of installing FGLRX on lucid. After the install, Plymouth resolution sucks and my laptop will not come out of suspend/hibernate. When I use jockey-gtk to disable FGLRX, it will not allow me to use compiz for 3d graphics. However, out of the box, I was able to run compiz no problem.How can I revert lucid back to factory form, where it was able to perform 3d acceleration without the use of FGLRX?
View 3 Replies
View Related
Mar 2, 2011
I just upgraded my rig from a 4770 to a 5770 video card.
My 4770 had basic 3d support out of the box with the open source radeon driver. My 5770 doesn't seem to (basic rendering only with no compositing), although this page suggests it does:
[URL]
Is there anyone out there who is running a 5770 or knows how I can upgrade to a newer version of the open source driver? I'd rather not use catalyst (Id don't game with ubuntu) and I found the open source driver to be quite nice.
View 2 Replies
View Related
Aug 29, 2010
I have installed a Virtual machine.I use Virtual Box for the same. My host OS is Windows XP SP3. I have assigned it 500mb of Ram and it works fine. But my problem is that my Keyboard does not work in Ubuntu terminal whilst writing a source code.
When I use the arrow keys it gives me alphabets A B C D. And also when i press a . it acts as a backspace.I have a cordless Logitech Keyboard.I don't know why my keyboard isn't functioning inside the Terminal (& that to only whilst typing in source codes) I have tried changing the Character Encoding but thats not helping.
View 2 Replies
View Related
May 16, 2010
OS: Ubuntu 10.04.
When I try to install some packages by aptitude, I see this:
Before it, I made it (sudo apt-cdrom add):
And it (sudo apt-get update):
My dvd-disk is not broken - md5 checksum is right. In sources.list I have only cdrom source, without any network repositories. When I install one package (for example pptp-linux) which don't use any depending, it work good, but when I have some group of packages - installed only first package from this group, you can see this in a first image, marked by yellow color and set to 16 percent.
View 9 Replies
View Related
Jul 4, 2010
installing compiz 0.9.0 from source
ive downloaded the source tar.gz from here,
but i do not know how to install it (USUALLY USE .debs, ppa, .sh
View 8 Replies
View Related
Oct 16, 2010
i want to install hydra-5.4 from source . but at first in ./configure i have this problem :
Code:
Checking for SAP/R3 (librfc/saprfc.h) ...
.. NOT found, module sapr3 disabled i didn't want that in any place such as it's site.how can i fix this problem?
View 1 Replies
View Related
Feb 25, 2011
Since I cannot find a deb of thunderbird 3.3, I would like to find another way to install 3.3 on maverick. I have no experience installing from source, so I may need to be coached through it step by step, but I am eager to learn and VERY motivated Why? I am trying to switch from gmail webmail to thunderbird, because of enigmail and privacy. However, I have been spoiled by gmail's elegance, and in order to get the conversation view add-on, so thunderbird still looks like gmail, the add-on requires the 3.3 version of thunderbird. The latest stable version which is in the repos (maverick) is older (3.1). I have already have done the following:
Code:
sudo apt-get install build-essential
then i downloaded the files and extracted to my home directory.now, according to the ubuntugeek, I should execute the following commands:
Code:
./configure make
sudo make install
clean install
but I have a few doubts:
1) Should I first uninstall thunderbird 3.1? and enigmail?
2) Where do I install it, so it can still find my mails and work as now?
3) If it doesn't work out, can I go back, and if so, how? Once installed, will it be uninstallable from apt or synaptic?
4) Will Ubuntu continue to upgrade my thunderbird once a newer version is available at some time in the future?
View 9 Replies
View Related
Nov 29, 2010
For one of my class projects, we have to analyze a usb keyboard driver source code and be able to understand it and present it to the class. Me and a few other people are working together by breaking up the code into sections so each person can analyze a section of code.Now I've ran into a section of this code that I am a little confused about. It seems fairly simple but I just wanted to double check since I wasn't able to find a solid answer.
Code:
static const unsigned char usb_kbd_keycode[256] = {
0, 0, 0, 0, 30, 48, 46, 32, 18, 33, 34, 35, 23, 36, 37, 38,
[code]....
View 10 Replies
View Related
May 1, 2011
I am following instructions from [URL]... i've gotten to the point where it says
[code]...
No such file or directory. I hate installing from source for this exact reason, something always goes wrong. and i'm left scratching my head. But I really want this boot loader.
View 7 Replies
View Related
Aug 5, 2011
i just uppgraded to Centos 6. Linux 2.6.32-71.29.1.el6.i686 on i686. now im getting some troubble whit this file: wget [URL]... i create a downloads directory and download the source file and--
mkdir $HOME/downloads
cd $HOME/downloads
But when i try to build courier-authlib whit this comand: #sudo rpmbuild -ta courier-authlib-0.63.0.tar.bz2. I get this:
[code]...
what can be the reason?
View 5 Replies
View Related
Aug 23, 2011
I have ATI Radeon HD 5650 (code name Redwood) on Ubuntu 11.04. And I have been experimenting with open-source and proprietary driver.
The problem with proprietary driver is bad 2D rendering when watching movies in VLC (and any other), because if vsync is off, video is tearing and when its on, the video seems to stutter (the background moves in steps, not smooth). I have tried open-source radeon driver and its far better, but that driver doesn't have 3D acceleration for playing games. I was trying to play Hive Rise, and with proprietary driver works great, but with open-source the game starts, but i don't see the interface (start game, options, etc.).
It seems that Mesa 7.10 (in Natty) doesn't have 3D support for this card, but Mesa 7.11 (in Oneiric) will have that. Is that correct? I just want to have good 2D performance with ability to play games.
View 3 Replies
View Related
Jun 10, 2010
I am following these instructions to install gnu backgammon. However I am doing this for the first time and I don't know how to get their source code from their site (here). Do I download everything?
View 2 Replies
View Related
Sep 7, 2010
Im trying to install mupen64plus, but to be honest, everything i have installed is from the package manager.I have no idea how to do this through the terminal. But I tried installing the mupen64plus from the package manager, and everytime I open a rom, mupen64plus closes and doesnt load anything....
That version was 1.5, and I downloaded 1.99.3 or whatever it is from the mupen site, but I cant get the sucker to install. There is a install.sh file which I chmod +x too. I then tried, ,/install.sh, make install.
View 2 Replies
View Related
Mar 6, 2011
I was wondering if there are any tools that automate the process of installing from source for example tar.gz or tar.bz2. I have used kludge installer but I am looking for something that doesn't make me install any dependencies for example I want a bash shell script it just runs the commands you normally do but faster.
View 2 Replies
View Related