General :: Finding A Tool That Can Detect Glitches In MP3 Files?

Aug 24, 2011

My collection contains some MP3s which have some glitches like

displaying the wrong duration on loading
minor jumps
suddenly ending despite the duration claims another minute remaining
noise

I'm looking for a tool that can detect as many of these glitches as possible and fix those that can be fixed (obviously e.g. noise can not simply be eliminated in most cases).

View 2 Replies


ADVERTISEMENT

General :: Finding A Tool That Will Detect Whether Having A SATA Or A PATA Hard Drive Interface?

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

General :: Finding A Free Data Recovery Tool

Jan 25, 2010

I deleted files on my linux drive that I shouldn't have. What is a good tool to use to recover these files that will:

Recover the various file types (txt, php etc)
Recover it as the original files names

TestDisk and PhotoRec almost do the trick, but the original filenames are not restored.

View 3 Replies View Related

Ubuntu :: Finding A Employee Monitoring Tool?

Sep 15, 2010

I am in search of a free tool (Due to Finance Manager budget restrictions) for monitoring USB, Folder and Internet access for network users.I want to know when someone plugs in a USB drive, which folders they access and which websites they visit. CEO request but no budget given to this request.

View 3 Replies View Related

CentOS 5 :: Finding A Tool For Testing Multicast?

May 11, 2011

I am trying to search a tool for testing multicast. Currently, 'yum search multicast' yields nothing. I saw mcsender and mctest in google but they seem not to be supported in CentOS. Do you know any tool that can test multicast?

View 3 Replies View Related

Software :: Finding A Video Diagnostic Tool?

Feb 17, 2010

From time to time I try to play saved video from ..... but it is not working.<br> I receive the following lines from MPlayer.<br>

Quote:

Playing /tmp/FlashqikYbO.
libavformat file format detected.
[flv @ 0xb7f27c48]Unsupported video codec (7)
[flv @ 0xb7f27c48]Unsupported audio codec (a)

and

Quote:

Cannot find codec matching selected -vo and video format 0x7. Read DOCS/HTML/en/codecs.html! But I can't find DOCS/HTML/en/codecs.html this at my machine, damn I guess it is some rare flv format, no one of my video players are able to play following video.<br> [URL] it happens often, so I was wondering maybe exist some video diagnostic tool that will provide me all info about video file?

View 4 Replies View Related

Hardware :: Tool - Finding The Mainboard Serial Number?

Jan 15, 2011

Which linux tool can find out mainboard serial number?

View 5 Replies View Related

Programming :: Finding A Script To Detect The OS And Run A Command?

Apr 4, 2011

I need a good way to detect if a box is solaris or linux and then be able to run out a os-centric command given the output...

View 7 Replies View Related

Software :: Finding A Monitoring Tool To Check Services Status?

Apr 20, 2010

I there a monitoring tool that will alert me if one of the linux service is off? example MySQL, http, SSH,...etc

View 7 Replies View Related

General :: Unix Tool To Monitor Too Many Open Files?

Aug 13, 2011

I'm looking for a tool which can monitor whether a process is near limit of maximum open files.

View 1 Replies View Related

General :: Detect Duplicate Files Using Md5sum ?

Feb 21, 2011

What i am trying is to check the file duplication in a folder and remove a file if it is a duplicate of another file ie the contents are duplicate; but names may be same.

Basically i am using md5sum to calculate the md5sum values of each file and redirecting to a file. And i am thinking of comparing the md5sum values.But i am finding it hard to decide how to complete the code after redirecting the output of calculation of md5sum to a file.

View 3 Replies View Related

General :: Finding Files To Backup?

Mar 12, 2011

I have a situation where a directory has about 1.5 million files in it. On an hourly basis, I want to be able to find any files that have changed in the last hour, compress them, encrypt them and then copy them to both a local backup machine and an off site backup.

Is there any kind of utility or kernel module that creates some type of log of modified files? I know I can use find, but the search for -mtime in this directory takes quite a while and will not suffice for an hourly backup.

View 3 Replies View Related

General :: Finding All Files Starting With A .

Nov 29, 2010

To find all files recursively starting with a . (period), is the following OK:

find ./ -name '.'*

View 7 Replies View Related

General :: Finding Files Exactly 7 Days Old?

Apr 19, 2010

i am a newbie in linux ,i am writing a bash script to identify the files which are exactly 7 days ( a week old) i tried this command find /var/backup -mtime +7 -exec ls -d {} ;but this gives me even the files which are older than 7 days

[root@proxy access]# find . -mtime +7 -exec ls -d {} ;
./access.log.1.gz
./access.log.2.gz

[code]...

View 3 Replies View Related

General :: Finding Words In Files?

Apr 23, 2010

I am looking for this `struct messages_sdd_t` and I need to search through a lot of *.c files to find it.However, I can't seen to find a match as I want to exclude all the words 'struct' and 'messages_sdd_t'. As I want to search on this only 'struct messages_sdd_t' The reason for this is, as struct is used many times and I keep getting pages or search results.The directory I am searching in, has another directories so it will have to search recursively.I have been doing this without success:Code: find . -type f -name '*.c' | xargs grep 'struct messages_sdd_t'and thisCode: find . -type f -name '*.c' | xargs egrep -w 'struct|messages_sdd_t'

View 3 Replies View Related

Software :: General Tool To Manipulate Text Configuration Files

Mar 25, 2010

Is there any Linux tool to create new or modify exiting key/value pairs in text configuration files? For example, to change a setting in xorg.conf, or change something in etc/networking/interfaces? I know it could be done by sed or by perl scripts, but it could be easier to have a program for this purpose. There are many difficulties for this job that the program should consider, and I am facing nearly all of them:

- Some configuration files may have sections. Like in Windows-type INI files (for example: "[something]"), or like Section in xorg.conf. More sections with the same name can occur, like in xorg.conf.

- If the key/value pair originally does not exist, then the program should add it. But not to the end of the file, but tothe end of a predefined section.

- Config files can have remark lines. Remark text can be even at the same line than the key/value pair. After modifying the value, the original remark text should not change at the end of the line. The remark-starting symbol is not always.
- The values in configuration files are not always simple numbers or simple words, but in rare cases, they are composed by more words, for example: item=name address phone

And of course, we can have remark at the end, like this: item=name address phone # remark text

- The key-value separator depends on the file. Some files use "key=value" format, some other use "key value" format, or even "key1 key2 value", like xorg.conf. The as separator can also occur.

- Case sensitivity can also be an issue.

- Sometime to desired task is not to modify a value, but to add or remove a line beginning remark to a certain line.

I think that managing all these possible cases by a perl or sed program is nearly impossible. I begun to write a C program, but maybe there is already one?

View 6 Replies View Related

General :: Detect Which PC (IP Address) Copied Files In A NFS Folder?

May 17, 2011

I have iomega appliance, which is based on Debian distribution. There is an NFS share that I have created which is without password. Since it is without password, there are some viruses copied. I want to find out which IP address is the source of these files. In other words, I want to know which PC is copying these infected files on the NFS share

View 2 Replies View Related

General :: Installed Rhel5 With Xp - To Detect Ntfs Files

Feb 28, 2010

I intalled rhel along with xp on my hard disk..When rhel is running it is not possible to see ntfs partitions..What packages i want to install for this..

View 3 Replies View Related

Ubuntu Multimedia :: Finding A Software To Detect Mp3 Duplicates With Different Bitrate / Filesize / Artist

Jun 14, 2011

I am looking for an application to detect mp3 duplicates using the mp3 spectrograph (sound wave matching) or something similar because simply I have many mp3 files that are the same but with different bitrate,ID3 tags,filesize

View 1 Replies View Related

General :: Finding A Script To Copy Files?

Nov 27, 2010

give me a script for copying all the files in a directory that are not directories to another directory. May be this could work:

Code:

FILE=(ls -l|grep ^-)
for i in $FILE
do
cp $i /destination/path/$FILE
done

View 14 Replies View Related

General :: Finding Files That Relates To Certain Applications

Jan 28, 2010

I'm wondering if you can share some tips in regards to finding .conf files in programs when installing using package managers. I'm scratching my head on the fact that when you install a program through yum/apt-get, I don't know what and where the software is being installed at. In Windows, I know that when it installs an application, it goes into the Program Files directory, it's that simple.I know Linux has predefined directories for applications but sometimes it installs configuration files in /etc or some other locations in /usr which I have a tough time sifting through.

Is there a way to trace what .conf or any files for that matter which relates to what software that needs it? It's just hard for me to understand what file relates to what application at the moment. As much as I would like to learn more about Linux, this process for me takes up alot of time. I hope you can help me out on this one.

View 1 Replies View Related

General :: Finding Files Under The Current Directory?

Oct 5, 2010

Assumed y directory structure looks as follow:

Code:

--root
-- dir1
-- dir1-1
-- dir2
-- dir2-1
-- dir2-2

And under each sub dir there are some log files ended with .log. Now I want to list all these log files. How to to that?

View 2 Replies View Related

General :: Finding Files Based On Date Without Using `find`?

Aug 11, 2011

I know find can do what I am looking for, but I am wondering if there is an alternative way to find files on the filesystem either created before/after a certain point, or at a certain time.

Typically I rely on updatedb & locate for most of my file searching needs. Issues with those tools, though, are that it only has directory and file names, and it only creates a database of local directories, not anything mounted via CIFS|NFS or via -o loop (eg, .iso images).

So if I need to find files created after yesterday across the entire system (local and remote filesystems), I am currently needing to use find.

What other tools, if any, would accomplish this in a similar fashion?

I have tried ls and grep, but that requires (in my attempts so far) multiple searches:

ls -lR | grep Aug | grep 10
ls -lR | grep Aug | grep 11

View 6 Replies View Related

General :: Finding Website Links In HTML Files?

May 29, 2010

I have a website that has a massive list of royalty free stock photos and I want to download all of them. I have bought a membership for [URL] so I am able to download as much as I want from them for the next month.

Instead of going page by page and manually downloading each set of stock photos manually, I would like to automate this process. Here's my idea:

1. Download the website with the links to hotfile [URL]

2. Use grep to retrieve all the links to [URL]

3. Feed the links I recieve from grep into wget and download the works of them.

The problem I'm getting is when I use grep, It retrieves the entire line of html code where "hotfile.com" is shown. So here is an example of one link I receive in the output:

Quote:

./1776-santa-claus-vector-set.html:<div align="center"><a href="http://hotfile.com/dl/18418176/181a55b/Santa_Claus_Vector_Set.rar.html" target="_blank">HotFile</a></div>

Is there a way to just have the link shown in the output?

PS: I have everything else working, I just need an automated process of getting all the links.

View 5 Replies View Related

General :: Finding Files With Ctime Older Than X Seconds?

Jun 8, 2010

how to find a file with a ctime older than. let's say, 5 seconds? What I would like to do is to move all "new" files in a specific folder but not files that has not yet finished uploading.

View 1 Replies View Related

General :: Grep -- Finding Files That Contain Two Separate Strings?

Dec 9, 2010

I've got a quick grep question. I'm trying to work out a command I can use to locate all of the files in a directory that have sql database connection details. I want to do it by looking for the strings "localhost" and the name of the database.find . -type f -exec grep -l -E '^(localhost|DATABASE_NAME)' {} ;

View 4 Replies View Related

General :: What GUI Linux Programs Are There For Finding Files Based Upon Their Contents?

Sep 18, 2010

What GUI Linux programs are there for finding files based upon their contents?

View 5 Replies View Related

General :: Amarok - Collection - Scanning Is Not Finding Any Music Files?

Mar 13, 2011

I have been using Linux close to 2 years now. One thing that always bewildered me is audio support in Linux. These days I login to windows only for listening to music. After reading various blogs, i decided to give it a try in Linux with Amarok. There again I am facing a problem.

while i try to scan for music files it is not finding any files.

what I did is as follows:

Quote:

Setting --> configure Amarok --> collection --> scan

I have tried with mp3 .wma format files. While I try to add these files individually, Amarok is able to play those.

I am using Amarok 2.3.2 with KDE 4.4.5. Fedora - 12 is my flavor.

Given below is the log obtained with amarok -debug option

Quote:

TagLib: MPEG::Header:arse() -- First byte did not match MPEG synch.
TagLib: MPEG::Header:arse() -- Invalid sample rate.
TagLib: A frame of unsupported or unknown type 'TSC' has been discarded
TagLib: A frame of unsupported or unknown type 'TSC' has been discarded
TagLib: A frame of unsupported or unknown type 'TSC' has been discarded

[Code].....

View 3 Replies View Related

General :: Finding Total Size Of All Files Whose Names Starting With A?

Jul 22, 2011

how to find total size of all files whose names starting with a

OS: SunOS

du -h a* is giving individual file sizes.

View 6 Replies View Related

General :: GUI Application For Finding / Deleting Duplicate Data Files

Jan 10, 2011

I copied a back up of my windows 'my documents' fold and all of its' sub folders into my linux (Mint Debian) Documents directory. I found that many of my files can be found in more that one directory so, what I want to do is to find all the dups and deal with them. Is there a good linux application to resolve this 'duplicates' problem. (I don't want to touch the linux system files.)

View 2 Replies View Related







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