Fedora :: Logger Pro - Retrieve Data From Scientific Calculators / Instruments?

Oct 5, 2010

(Logger pro is an app to retrieve data from scientific calculators/ instruments) I've always wanted to ask this question so here it goes... Has anyone gotten Logger pro (Linux beta) to work w/ Fedora? I have tried alien the two .deb packages to .rpm's so it becomes installable.. The installation seems fine, But the app doesn't run (I think it was like segmentation fault or something... I don't remember) anyways.. this is not absolutely important. I'm just wondering if this may be a problem w/ my install.

View 4 Replies


ADVERTISEMENT

Red Hat / Fedora :: How To Create Postmortem Data Logger

Mar 23, 2011

This is VL Chowdary, a software engineer in Bangalore,India.I am currently working on a project that deals with "Creation of Postmortem data log file on Linux platform".The project is on Fedora 12 with Kernel2.6.31.5 version.For that i need following things.1. Find the location of core utility in the kernel.2. Find the source file that consists of actual implementation of the core utility (On Fedora's kernel 2.6.31.5)3. Based on that i want to implement a core file with my own project requirements.4. Build the kernel with the above implemented corefile replacing the existing one.I couldn't get the source file that contains the implementation of core utility.

View 2 Replies View Related

Fedora :: Scientific Data Analysis And Visualization

Aug 28, 2011

Fedora 15 uses scidavis (Scientific Data Analysis and Visualization) taken from Fedora 14. If you try to build the native rpm package, an error occurs in building the documentation. A 1-line sed in the spec file solves the problem:

Code:
#fix spurious-executable-perm
find . -type f -exec chmod 0644 {} ;
#fix docbook to adapt different versions of fedora
sed -i "s/VER-REL/`rpm -q docbook-dtds|sed "s/^[^0-9]*//;s/.noarch//;
s/./\./g"`/" manual/docbook-en/index.docbook
#
# ---> sed line to fix Fedora15 building:
sed -i -e 's/xsl-stylesheets-1.75.2/xsl-stylesheets-1.76.1/' manual/scidavis_html.xsl
#
#fix default path for fitPlugins
sed -i "s/usr/lib/%{name}/plugins\%{_libdir}/%{name}/pluginsg"
%{name}/src/ApplicationWindow.cpp
sed -i -e 's/Qt;Science;Physics;Math;Graphics;/Education;Science;DataVisualization;Qt/' %{name}/%{name}.desktop

View 1 Replies View Related

Red Hat / Fedora :: Retrieve Data From Hard Disk After Installation On The System?

Aug 17, 2009

I have never used Linux before and know nothing about it . But my cousin installed a Fedoro linux CD on my laptop which previously had Lotus symphony . Unfortunately my laptop had single partition and so Linux overrode the old OS ,ie lotus symphony .

I have some critical data on my hard disk but I have no clue how to take backup this data using Linux . I desparately need this data .

Could somebody let me know how I can access this data and take the backup ?

View 4 Replies View Related

Ubuntu :: XP Crashed Out And Couldnt Retrieve My Data

Jul 29, 2010

I have a laptop that had Windows XP on it - XP crashed out and I couldnt retrieve my data of it, despite booting up in safe mode, it just didnt want to do anything. So i thought i will load ubuntu instead then try and recover my data - bad move. Now my question is, can I still retrieve the windows data of the hard drive despite having Ubuntu installed on the same drive? I know on windows there is an app called File Scavenger that recovers deleted files even after loading a clean slate of Windows on it. Is there something like that for Linux? I had photos on it that has some real sentimental value. The rest of the data I dont care about. Just the photos. I didnt think before I reloaded it.

View 7 Replies View Related

Ubuntu :: Retrieve Data Created On Another System?

Aug 23, 2010

My son's laptop with Ubuntu on went belly up, so before we dumped it I salvaged the hard disk.....now some weeks later he remembers there is some things he wants on the disk. Luckily I had done nothing with it ....have just connected the disk to my system I can see everything above(should that be below) home but not anything in his account. Any bright ideas for getting at his data is there a way of mass changing permissions or whatever?

View 3 Replies View Related

General :: How To Retrieve Lost Data On A Usb Stick

Jan 24, 2010

My wifes computer, IBM desktop, running XP, was hit by malware. I managed to save the data and tarred it and copied to a USB memory stick using my Linux box Ubu 9.1). I checked and saw it had been truly saved. Two days later I put stick in USB port and it was not recognized (usually any hot plugable device shows up immediately on desktop). I have tried plugging it into a windows machine and nothing was found. We are both very desperate at this apparent loss but because something similar happened with an Iomega zip disk.

View 14 Replies View Related

Ubuntu :: Using Perl Module To Retrieve Data From IPod

Apr 29, 2010

I am trying to make use of the perl module WWW::Nike::NikePlus to retrieve the data from my ipod but apparently I have no idea what I am doing. I installed the package just as the readme said including all the dependencies. I cant really figure out how to run it, i searched for how to use it and found this : Example use that retrieves and prints your last run information

use WWW::Nike::NikePlus;
my $username = 'my@email.address';
my $password = 'MySecretPassword';
my $locale = "en_us";
my $pin = nike_authenticate( $username, $password, $locale );
unless( $pin ) { print "Authentication failed
"; } .....

#Details of the last run
my ($unit, $last_run_dist, $last_run_duration_millisecs,
$last_run_duration_friendly, $last_run_pace_friendly) = nike_last_run();
print "Last run: $last_run_dist$unit in $last_run_duration_friendly
";
print "Last run pace: $last_run_pace_friendly per $unit
";

So I put it in a txt file and saved it with the extension .pl and of course I put in all my info in the username password fields then made it executable with the command sudo chmod +x nikeplus.pl and when I try to run it with either ./ or perl I get this output:

brandon@desktop:~/Apps/nikeplus$ ./nikeplus.pl
./nikeplus.pl: line 1: use: command not found
./nikeplus.pl: line 2: my: command not found
./nikeplus.pl: line 3: my: command not found
./nikeplus.pl: line 4: my: command not found
./nikeplus.pl: line 6: syntax error near unexpected token `('
./nikeplus.pl: line 6: ` my $pin = nike_authenticate( $username, $password, $locale );'
brandon@desktop:~/Apps/nikeplus$ perl nikeplus.pl
Use of uninitialized value $ENV{"TEMP"} in concatenation (.) or string at /usr/local/share/perl/5.10.0/WWW/Nike/NikePlus.pm line 10.
Use of uninitialized value $last_run_duration_millisecs in division (/) at /usr/local/share/perl/5.10.0/WWW/Nike/NikePlus.pm line 106.
Use of uninitialized value $last_run_dist in division (/) at /usr/local/share/perl/5.10.0/WWW/Nike/NikePlus.pm line 107.
Use of uninitialized value $last_run_duration_millisecs in division (/) at /usr/local/share/perl/5.10.0/WWW/Nike/NikePlus.pm line 107.
Illegal division by zero at /usr/local/share/perl/5.10.0/WWW/Nike/NikePlus.pm line 107.
brandon@desktop:~/Apps/nikeplus$

View 2 Replies View Related

Ubuntu :: Finding A Program To Store And Retrieve Data?

May 22, 2010

I am looking for a program to help me store, organise and retrieve information. The aim would be to keep notes from literature, concepts and ideas which i come across during my studies. It's always a hassle to retrieve this information when i have to write a paper for instance. So in fact what i need is a sort of wikipedia-like program where information is searchable and where perhaps hyperlinks could lead me from one word/note to another.

View 2 Replies View Related

Ubuntu :: Hard Drive Failed - Retrieve Data?

May 28, 2010

I should have seen this coming when I lost the ability to boot windows, or mount that drive from ubuntu. But now I think my hard drive has failed. Is there any way to retrieve the data from the hard drive, or my settings and the like for ubuntu? I'm at a loss for what to do as i'm booting from a CD right now =X.

View 4 Replies View Related

Ubuntu Security :: Retrieve The Data From Hard Drive?

Mar 24, 2011

I have a friend that has a computer running UBUNTU he has not used in a while and has forgotten the user name and password for it. Is there away to retrieve the data from this hard drive?

View 2 Replies View Related

Software :: Obtain An Older Copy Of KMM To Retrieve The Data?

Sep 17, 2010

I was using 9.10 Ubuntu and was going to update to 10.??. Being an intelligent person, I made four (4) backups of KMyMoney on different diskettes and thumb drives. Now, the problem, after reinstalling my O/S (new version) I reinstalled KMyMoney and found out that the newer version of KMM will not read the data I have backed up.What I need is a way to obtain an older copy of KMM so I can retrieve my data. Then I can update.

View 2 Replies View Related

General :: Retrieve Windows Data From Hard Disk

Sep 29, 2010

I have 2 hard disks and all together I created 6 partion in it.On primary I installed Windows XP and REST 5 partions were having data.From Second hard disk ,I copied all the first partion data to another partions and installed Red Hat 7.It took only 3 GB all togethr for Linux Distribution.Now I need to fetch my Windows data back.I logged from the Windows XP disk and I could see the second disk through disk managemnt .But it was showing "Unhelathy".But I will not be able to retrive the data.So can Anyone give soln for this.

View 2 Replies View Related

Server :: Retrieve MySQL Data From Command Line?

Aug 17, 2011

My computer has broken and I cannot login. I don't know what caused it.

I am using Fedora 14 and so it is easy to retrieve my files with the Fedora 14 installation disk under the 'restore' option. I cannot however, work out how to retrieve my MySQL data.

Would anyone be able to shed some light on this matter?

View 1 Replies View Related

CentOS 5 :: Sound-juicer Does Not Retrieve Track Data?

May 19, 2011

I have a fully up-to-dateCentOS 5.6. As of some very recent package update (later than May 12), sound-juicer is unable to retrieve track data for any disc; it just reports "Unknown Title" and "Unknown Artist".

Unfortunately I do not know how to tell which particular package it was, or even how to get a list of recently-updated packages.

Tracks are still extracted fine, it's just the musicbrainz connection which is doa.

I'd be happy to try an alternative program with musicbrainz capability, but couldn't find any. The installed k3b doesn't have any ripping options in the tools menu, where I gather it's supposed to be.

View 6 Replies View Related

Hardware :: Retrieve Data From Old Wide-plug Hard Drives?

Jul 8, 2011

Is there a way? My computer has a newer, narrow-plug hard-drive. Not Linux specific, I know, but I'm in a bind.

EDIT: Picked up an I/O Magic 2.5 inch IDE/SATA enclosure.

View 2 Replies View Related

Software :: Use Wget To Retrieve Some Data From Tape Backup Utility?

Sep 30, 2010

I'm trying to use wget to retrieve some data from our tape backup utility (HP Command View 1/8 G2 Autoloader). The URL requires two parameters for the info I want to retrieve. I have searched for a few hours and have tried numerous combinations to get the data but the parameters aren't being executed. I have escaped the URL as well.

Code:

wget --user=x --password=x --recursive --no-clobber --page-requisites --html-extension --convert-links --no-parent -O ssi.html "10.0.x.x/inventory_status.ssi?mag_0=1&mag_1=1"

returns:

Code:

<HTML><HEAD><TITLE></TITLE></HEAD><BODY>
<SCRIPT LANGUAGE="javascript">
top.location.href='logout.ssi';

[code]....

View 3 Replies View Related

Fedora :: Use Bugzilla Or Logger For Send A Bug Report?

Jul 16, 2010

when i am prompted to send a bug report i am given two choices. either i ll use bugzilla or logger. which one should i be using?

View 2 Replies View Related

General :: Fedora 14 Freezes While Starting System Logger

Jun 13, 2011

I'm having trouble starting Fedora 14 on my computer. The startup procedure freezes while starting system logger. Before this started happening, I had formatted one of my logical disk partitions which is supposed to be mounted under the /var directory. I think may be the cause of this problem. However, I don't know how to fix it, as I can't get into the Linux command line to do a umount. I don't have a CD with which to repair the system, so is there any way to fix this problem without one?

View 1 Replies View Related

Red Hat / Fedora :: Can't Login To Scientific?

Dec 18, 2010

I Installed the 2 disks, but I didn't run into a spot where to place a user name, and when it's time to login, I have a password, but no user name, so I can't login, login fails. And I doubt installing the 2 disks again is going to help this problem go away. How does one login to SL after the install?

View 9 Replies View Related

Red Hat / Fedora :: No Network On Scientific

Mar 5, 2011

Just installed Scientific Linux 6 KDE. Does anyone know how to get it to connect to wired ethernet network?i know there is nothing wrong with hardware; i get a working network/internet connection with live systems such as knoppix, aptosid etc.

View 9 Replies View Related

Fedora :: GSL For Scientific Calculations Configuration

Feb 26, 2010

Install GSL for scientific calculations. When you try to. / Configure appears Permishn denaynd. As I understand it because I have a file system in properties has Read-Only flag. An attempt to change it to read and write an error - saying that this can not be done. All this is done under Root. But nothing came of it, and very much need to put this library.

View 13 Replies View Related

Red Hat / Fedora :: Xorg.conf Causing On Scientific 5.5?

Apr 5, 2011

I am new to RHEL. I am using a Thinkpad W510 and SL 5.5. I am trying to get everything working smoothly on my system.I am having issues with the gpu drivers and the touchpad, both of which seem to be traced back to xorg.conf.I can set the proper resolution using nvidia-settings, but it resets to 800x600 on restart no matter what I do. I have used the gui to save, I have tried nvidia-xconfig, and I have tried to just editing the xorg myself, but it always goes back.I am having even worse problems with the trackpad. I downloaded and installed the synaptics package, but nothing I do changes the trackpad settings. Mouse properties has no trackpad info in it.

View 9 Replies View Related

Fedora Servers :: Setting Up A Cluster For Scientific Computing?

Mar 2, 2010

I want to set up a cluster for scientific computing (mainly statistical stuff with R). I have a few conceptual questions. First, is there a difference between a Beowulf cluster and a cluster that has single-system image ("SSI," e.g. using openSSI or LinuxPMI)? If so, what's the difference? Second, if there is a difference between Beowulf and SSI, which one is better for scientific computing? Third, does using Eucalyptus make sense for scientific computing or is this more suitable for IO-oriented operations such as web service or databases

View 2 Replies View Related

Fedora :: Voice Logger Boot Failure-reports 'error Reading Block 33051'

Jan 18, 2011

Voice logger boot failure-reports 'error reading block 33051'

View 1 Replies View Related

General :: Conflicting /usr & /etc Files While Installing Fedora 15 And Scientific Linux 6.1

Aug 9, 2011

Until some time ago I had a dual Windows 7 and Fedora operating system, then I completely moved to Fedora. Recently I have become interested in Scientific Linux and wanted to install it besides my Fedora. I took a back up of all my data and formatted my HDD for a clean install of both of them. This is what I did:

First I installed Scientific Linux with these partitions (contents of /etc/fstab):

[Code]...

Then I went on to install Fedora 15; I kept the same primary and extended partitions but only changed the names of "/FedoraRoot" to "/" and "/" to "/SLRoot" in the above list while installing Fedora. I also chose the boot directory of Fedora to be /dev/sda1/ which I wanted to be the /boot file for both systems while I had chosen the boot file for Scientific Linux to be "/dev/sda".

Everything went well until the final step of copying the files an error came that some of files that Fedora wanted to install in /usr/share, /usr/lib64, /usr/bin, /etc/system..., /etc/issue..., /etc/redhat-release... and /etc/rpm are already present in the Scientific Linux format and so there is a conflict and it has to terminate!!! I must have made some strange mistakes in the definitions

View 2 Replies View Related

Red Hat / Fedora :: GRUB Of Previously Installed Distro / Enable Wake On Lan In Scientific (RHEL)?

Jan 2, 2010

I have two problems. I installed a RHEL variant (scientific linux) on an already dual boot system with ubuntu and vista.

It replaced GRUB with (I think an older) GRUB version and to add to that I cannot see my ubuntu ditro anymore. is there a way of reinstalling the GRUB that came with ubuntu then adding the RHEL distro to it?

my second problem is that I cannot figure out how to enable wake on lan in scientific linux (RHEL). on ubuntu I would just write a small script and update all runlevels to run it at startup. what is the alternative on redhat?

View 5 Replies View Related

OpenSUSE :: Compose Music Without Using Actual Instruments?

Dec 25, 2010

I am looking for an application that I can select different types of instruments and select notes to play, and then make different instruments play at the same time or specified time in the track, thus composing a complete music. I am not looking for connecting instruments to computer and recording them, but I am looking for something that can compose music without using actual instruments.

View 9 Replies View Related

Slackware :: Texas Instruments TI-89 Titanium Connectivity

Nov 7, 2010

Does anyone use a TI calculator with Slackware for developing and transferring apps?

View 1 Replies View Related

Fedora Hardware :: Access A USB Device (GPS Logger "Navin Mini Homer")

Jan 7, 2011

I am wondering how to access a USB device (GPS logger "Navin Mini Homer") When I plug in the device, it is not automatically mounted in FC14. But when I type in dmeg, it is showing up:

Code:
[20225.352029] usb 2-1: new full speed USB device using ohci_hcd and address 8
[20225.541849] usb 2-1: New USB device found, idVendor=067b, idProduct=2303
[20225.541854] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[20225.541858] usb 2-1: Product: USB-Serial Controller D
[20225.541860] usb 2-1: Manufacturer: Prolific Technology Inc.

[Code]...

View 6 Replies View Related







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