OpenSUSE Hardware :: Finding Correct Path To Cd-rom Drive
Jan 11, 2010
How do i find the correct path to my cd-rom drive? I want to install office 2007 using wine and I have used the programmerfish tutorial and now have to do the following:type wine /path to cd/setup.exe but I cannot seem to find the correct path.
-I tried /dev/sr0/setup.exe but it returned an error.
-I tried /dev/sr0/media/setup.exe. returned the same error.
-I tried /dev/media/setup.exe. Also no good.
I thought using df would help me and there i found /dev/sr0/ would be my cd-rom drive. Dunno it this correct though.
View 9 Replies
ADVERTISEMENT
Jul 3, 2010
My downloads are navigating to my home folder but not being deposited into the download folder as you can see by the screen shot . I don't know how to configure the correct path to the folder
View 2 Replies
View Related
May 9, 2010
A few days ago I made the mistake of upgrading to Ubuntu 10.04 LTS, and subsequently had nothing but trouble. My volume icon disappeared and for the life of me I couldn't find it or reinstall it. An eerily Windows-like chat icon has appeared next to my login name that I didn't ask for, and more importantly my handbrake program (Matroska encoder) completely stopped working.
I've learned in the past that LTS editions are not normal upgrades, and I should best avoid them. But this one appears from the Ubuntu homepage to be the standard upgrade from Karmic to Lucid. I've had to completely reinstall Karmic on my workstation just to be able to carry on as normal, but the laptop seems to be coping ok with the LTS edition. Can anybody tell me if this LTS is now the default upgrade for Lucid, or is this just a regular LTS and I should wait for my standard one to come out?
View 3 Replies
View Related
May 13, 2011
I am trying to install OpenCV2.2.0 from the sources and to make it easier in the future I want to create a rpm on my OpenSuse 11.2 x86_64 platform. The instructions how to install are in the specfile The relevant parts of the specfile below:
Code:
---snipp
%prep
%setup
%build
[code]....
View 2 Replies
View Related
Feb 16, 2010
how to access a FTP server with php. I've written a script from a tutorial but I'm getting errors with the ftp_get function.
PHP Code:
[code].....
Warning: ftp_get() [function.ftp-get]: Error opening /var/www/download.txt/ in /var/www/gwr/connect.php on line 11
I'm having trouble with the ftp_get function and I believe the problem is with the local server path. In this case var/www/download.txt I've also used a folder in that directory called download in the place of the .txt file and it gives the same errors. Is var/www/ the correct path to tell php where to download the files to? I've experimented with the files permission and nothing has worked. I'm running a standard ubuntu desktop install, Karmic Koala.
View 3 Replies
View Related
Aug 15, 2010
I have installed Kubuntu Lucid x86 10.4 LTS for the first time. Has anyone got a link that explains how KPackageKit gets the IP address of the repositories? I can install packages using sudo apt-get install xxx OK . KpackageKit tells me I have updates from the repositories. I can select them all and apply , but I get an error that it can't find the repository under a 192.168.100.129:8080 address . Which is not a surprise . I am using mirror.optus.net as a repository and can ping it fine on the command line. So is there somewhere else that KPackageKit maps IP addreses ? I have tried another mirror mirror.aarnet.edu.au and got similar results. My local sub-net is not 192.168.100 and have tried setting fixed IP on the local sub-net and different DHCP addresses and still the same error.
View 5 Replies
View Related
Jan 16, 2010
I have a new system I built this week. I have the nvidia drivers installed, but desktop effects, googleearth and Quake4 all try to load the /usr/lib/libGL.so.1 from mesa-libGL and fail to start.I have two other machines, both with nvidia video, and don't have the problem with them. I've looked for differences on the systems, but haven't located anything so far.
View 2 Replies
View Related
May 13, 2011
I'm looking for the ISO that I download to put on a flashdrive. Maybe I'm stupid, but every link mentions 'CD/DVD' and it throws me off. i'm just trying to get the horrid Windows 7 off of my new Hp mini 110 and Ubuntu in its place. my old netbook had 10.04 on it. but i think i want to give 10.10 a try. so thats the one im looking for.
View 1 Replies
View Related
Jul 12, 2011
I am a complete noob in the Linux community, having JUST installed my first Linux distro on my PC (that being Slackware 13.37).That having been said, please be patient with my TOTAL confusion is this regard : How do I determine which version of a package I need to download (in this example, I will use Yakuake, a program I AM trying to find at the moment!). I have done searches on the internet of the type"Yakuake for Slackware", etc., and I have always found results that I believed were a link to the correct version. However, when I finally have the package downloaded (I have downloaded BOTH source packages as
well as the build app.), they are always for a DIFFERENT VERSION!
This is most frustrating...; is there a "listing" of different packages that are compatible with a specific distro / version? I realize that, in many cases, I may require a newer version of a library, etc., but again, how do I determine this ahead of time, before I bother downloading the actual app. I wish to install? I can use another example - I attempted to install OpenOffice; I began by searching for OpenOffice for Slackware / KDE (as some sources indicated that Gnome was the required gui for this package...).I found a site with an install cd .iso that was supposed to be multi-platform KDE compatible, but NONE of the versions would install on Slackware 13.37... - you get my point?
View 3 Replies
View Related
Mar 13, 2009
im trying to write a makefile which contains :two cpp files and two header files. now i've put cppfiles in a folder called source whose path is: /root/workspace/source and header files in a folder called header whose path is:
/root/workspace/makedemo/header
my makefile is in the path:/root/workspace/makedemo my makefile was like this:
Code:
HEADERS = $(shell /root/workspace/makedemo/header ls *.h)
SOURCES = $(shell /root/workspace/source ls *.cpp)
COMPILERFLAGS = -W -Wall
DEBUGFLAGS = -g
[code].....
im sure that i've given the correct path but it is showing errors like this:
[root@localhost makedemo]# make
/bin/sh: /root/workspace/source: is a directory
/bin/sh: /root/workspace/source: is a directory
g++ -W -Wall -I. -o output
g++: no input files
make: *** [output] Error 1
View 4 Replies
View Related
Jun 27, 2011
AStar works on the basis of straight lines, AFAIK. In my case, we have geocoordinates and I can get the straight line distance between the waypoints. But I am wondering how approximate will the route calculated on this basis be? The actual distance "by road", which actually matters can be different.
Example. Assuming A and B are on the same plane, and will be equidistant from the goal point, if we consider a straight line between A and the goal point and, B and the goal point. The distance "by road" between A and the goal point may be greater or lesser than B. But because the AStar works on the basis of straight lines, it will return both the routes as the shortest. If yes, then which algo should be considered , if we want the results on the basis of actual distance in Km/m?
View 1 Replies
View Related
Apr 30, 2010
I am total new to linux as I worked mostly on RTOS (symbian). My problem is, I need to find the file IOSTREAM.H and I am following commands below:
1) cd /
2) find . iostream.h ( finds the file / directory from the current path)
It shows No such File or Directory
View 7 Replies
View Related
Jan 8, 2010
using Ubuntu file browser, I browsed my Windows network and logged on to a Windows PC. Now Ubuntu file browser shows me "C$ on WinPC" as a folder. I can open it, read/write files, etc.But from bash prompt, I don't see anything of type CIFS/SMBFS listed in the output of "mount". Only the usual suspects (like local CDROM). How can refer to Windows files from Linux commandline?
View 6 Replies
View Related
May 5, 2010
I have a backup drive formatted ext4 which got filled to no space left, so I deleted some files and folders to make space on it , emptied the trash, files and folders are gone , but it stll says I got no drive space left on it and cant copy a file to it because it thinks its full lol I freed up like 15gb of space on it , have rebooted several times ..
View 7 Replies
View Related
Jan 16, 2011
I found the following function in /etc/profile file.
[Code]...
1. I dont undestand what "if ! echo $PATH | /bin/grep -qE "(^|:)$1($|:)"" this if statement actually comapres??
2. Also what is the difference between PATH=$PATH:$1 & PATH=$1:$PATH
View 14 Replies
View Related
Mar 11, 2010
I have an old Dell Dimension 4500 that, until recently, had 2 hard drives. One drive is running Xubuntu Koala and the other was running XP. I had set up Xubuntu to run LVM.
After needing XP again for a small project I tried reinstalling XP, got disk errors, took the drive out to just have Xubuntu, and now when I boot I get "Error loading operating system".
I have tried restoring GRUB from a Live CD with no help. Everyplace I look on the net talks about restoring GRUB after installing Windows on another drive. I'm trying to get GRUB working again after removing the XP drive.
View 9 Replies
View Related
Jan 6, 2011
I have configured 3 drives on my machine.sda1 less than 10 GBsda2 less than 10 GBsda3 450 GBI have installed a software in /usr/share/MyApplicationand as I see /usr/share stays at sda2 and only 2 Gb is free but my application needs more than 3 GB free to run because it creates a temporary file greater than 3 GB during execution.Knows anybody any way how to make MyApplication stays in sda3 drive.
View 9 Replies
View Related
Feb 3, 2010
Ubuntu 9.10 recognizes my Freecom 120gig external hard-drive (when it's plugged in) and I can manage its contents OK - except via the command line. I don't seem to be able to find its path-name. See below:
mike@mike-desktop:~$ cd /media
mike@mike-desktop:/media$ ls
cdrom cdrom0 FREECOM HDD
mike@mike-desktop:/media$ sudo fdisk -l
[Code].....
Despite all this info, I fail to get into the external hard-drive from the command line.
View 7 Replies
View Related
Apr 21, 2010
I am trying to setup my ubuntu machine to automatically log some data I am trying to collect and write the data to a flash drive. I have everything setup so that when the machine boots up it starts that logging process. The problem I am having is that sometimes (not always) ubuntu creates a directory with the same path that I expect my flash drive to mount to i.e., /media/data/ then my flash drive instead mounts to /media/data_/. I need to know the path of the flash drive so I can store my data on it.
View 2 Replies
View Related
Jul 16, 2010
In the revision for the driver information it says it's for Ubuntu, but I assume it will work here as well.
Release date = 2010-05-07
Operating system release = Ubuntu 8.10/ubuntu9.04/ubuntu9.10/ubuntu10.04/moblin2/android-x86_090916
Kernel version = 2.6.28/2.6.30/2.6.31/2.6.32/2.6.33/2.6.34
Release driver version = 0017.0507.2010
Change history =
1. update firmware.
2. link NO-QOS-11N-AP use N mdoe.
3. Close LED when ifconfig wlan0 down.
4. Fix RTL8192SE WRT300N TP low issue.
5. To make LED dim time short enough when power save open.
6. Remove ubuntu10.04 self rtl8192se driver in make install.
In the supplied information from Realtek it tells me to:
========================================================================================
II. Compile & Installation & uninstall
========================================================================================
You can enter top-level directory of driver and execute follwing command to Compile, Installation, or uninstall the driver:
0. Change to Super User[code].....
When I do this the Make command is not correct for openSUSE
View 9 Replies
View Related
Aug 28, 2010
problem during fedora x8664 installation. how to give the command for directory path and image located drive. the procedure to install fedora for the first time.
View 2 Replies
View Related
Aug 6, 2010
I can't seem to find any programs or applications for linux that will find bad sectors of a usb drive. I have seen plenty for Windows, but I was wondering if there are any for linux.
View 8 Replies
View Related
Mar 28, 2010
Why would gparted not show a mounted partition (and unassigned space)? This is on a Sandisk Sansa e270 which mounts it's data on /media/Sansa. I can utilize the music files but the player won't work. I'd like to reinstall the player software but the Sandisk utilities won't even install (in Windows) if the player software is not working. I thought it would be easy in linux but Gparted doesn't show either the mounted partition or device software partition and it used to so.
View 1 Replies
View Related
Nov 24, 2008
I am new to linux, I am using Redhat Linux running through Virtual PC software running under Windows XP. Can please tell me how to find out the block device code for C ,D drive, as I need to add them into fstab file to mount . let me know the command to access the Windows Shared folders.
View 2 Replies
View Related
Feb 11, 2010
I am running Live 12 on my CD rom drive of my dying laptop. I have a major Windows registry error on that system and am working to recover my files. I have successfully moved a couple of folders from the laptop to my Seagate Free Agent Drive as a test.What I would like to know is, is there a way to copy my files and folders without literally dragging and dropping each one? We're talking 140 G of folders....sigh.
View 1 Replies
View Related
Jun 11, 2011
I've been looking for a program to easily monitor hard drive access,what I am finding doesn't seem to do what I (and others) want. Does Linux have a program to show me what is writing to the hard drive and where, in real-time? It seems gamin doesn't present the info in a human-usable form and loggedfs needs fuse, which I am not sure is available now. Something with a gui would be nice, but I am not sure Linux has such a program, like Windows does. Other threads here indicate that there are not many choices and strace needs a path, which I don't know yet.
View 3 Replies
View Related
May 18, 2010
Is there a tool for Ubuntu that will detect whether I have a SATA or a PATA hard drive interface, even if there's no hard drive inserted?
View 3 Replies
View Related
Oct 8, 2010
I use this command:
Code:
find ./ -atime +360
to figure out the files that haven't been accessed since 360 days. The command above will return results like this:
Code:
/uploads/2010/02/some-file-name.ext
/uploads/2009/08/another-file-name.ext
... etc
I'm taking here about tins of directories, thousands of files. I'm looking to find a command that makes me able to move the results above to another path, and to create that path once it doesn't exist like below:
Code:
mv /uploads/2010/02/some-file-name.ext /old-files/uploads/2010/02/some-file-name.ext
But I want the executed command to create this path
Code:
/old-files/uploads/2010/02/
If it doesn't exist.
View 6 Replies
View Related
May 12, 2011
When I learn shell script, I want to add my own PATH variable to system previous variables. I find that my linux has the below PATH variables (in the end of this message). It shows 'No such file or directory' although I verify that all the directories exist. Some directories are empty indeed. This will result that warning?
I want to make the present PATH variables correct before I add mine.
bash: /usr/lib/mpi/gcc/openmpi/bin:/home/jeff/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib/jvm/jre/bin: No such file or directory
View 9 Replies
View Related
Jul 8, 2011
I tested OpenSuse 11.4 as a guest OS via virtualbox on a win7 32bit host. Output to my 16:9 screen was perfect with a plentiful choice of high resolutions. Now with Suse (32 bit) properly installed as the host the only resolutions are 1024X768 and below and I am stuck with 4:3 ratio. My PC is an Intel Atom D945GCLF2 which has integral graphics. The monitor is the VGA input of a Samsung TV.
View 9 Replies
View Related