General :: How To Convert TGZ To IMG Files
Apr 19, 2010
I have a file (.tgz) which is meant to be simply copied to a floppy disc. I don't have a floppy disc, so I would like to convert the file to a .img file, so that it looks like a floppy disc but is on my hard drive. How do I do this? I have looked quite a lot. Surely there is some application that does it easily. This is for installation of Basic Linux, which comes on two floppy discs with ms-dos file systems.
View 14 Replies
ADVERTISEMENT
Jul 18, 2010
I'm trying to use convert, I have installed the imagemagick. I use this line:convert *.jpg test.pdf but I'm only able to convert to pdf 1 single jpg file, not multiple files at once. When there's more than one file, I get the following error: Segmentation fault
View 5 Replies
View Related
May 25, 2011
How do you convert Open Office (ODT) documents to Text files?
I have made a report using libre office. Now I wish to continue editing the document using lyx (latex front end). So the ODT file needs to be saved as some .tex file.
I don't see an option to do this in File menu (export/save as). So is there any other plugin to do this?
View 1 Replies
View Related
Mar 28, 2010
i have a large directory of .bsp files that i would like to convert .bz2 archives. I've been searching for some time and all i can find is the obvious compress multiple files into one large archive. If anyone knows how to convert each file individually, while retaining the original file name (testmap.bsp would be archived as testmap.bsp.bz2)
View 5 Replies
View Related
May 3, 2009
I have Ubuntu 9.04 and just installed Sound Converter. I am trying to convert a bunch of .ogg files to mp3 to play on my iPod and it's not working so well. In the Sound Converter options I have is set to convert to high quality mp3. I choose the folder that the files are in and after a moment (slow laptop) Sound Converter populates, I hit 'convert' and it shows that the conversion completes in two seconds. All that it did was create the new folder structure of artist/album but there is nothing in there. Not sure what I am missing. I used Sound Converter before and it worked fine.
View 2 Replies
View Related
Dec 24, 2010
I have a lot of .flac files downloaded from several sites. Most of them come with a .cue file, and the .jpg with the cover, etc. It seems it is the intention of the uploader that one rebuilds the original CDDA. However, if I had a stand-alone CD/DVD player with flac I would hardly see the point of converting the flac to cdda. Furthermore, I could even play the flacs with a software player although, in this case, the audio quality would not be so good due to the noise picked up by the signal from the PC digital circuits.
View 2 Replies
View Related
Feb 10, 2011
I need to port a framework, the framework is currently in windows msi and exe format. How can I convert the above formats in linux rpm packages.
View 6 Replies
View Related
Jul 2, 2010
I have a lot of files with tabs littered throughout, and I'd like to convert them all into spaces. I know about the expand command, but unfortunately I would have to type out every single file using it. Is there any easier way to do this on Linux?
View 2 Replies
View Related
Jul 10, 2010
I had a Windows XP Home box setup with MySQL, Apache, bind9, phpBB. Then one evening while preparing a Linux replacement my Windows XP Home tower died. It completely croaked. It won't boot up past POST at all. No beep codes or anything! It just sits there with the power on like a brick. I cannot boot it to grab the database through the webserver with any web based MySQL script system. I also do not have another Windows box that I can install MySQL on.
There is no possible way I have to retrieve any MySQL databases that I had on it except by mounting the hard drive where MySQL stored the databases for Windows on it. I've Googled for hours on end trying to find a solution but to no avail. I tried simply copying the contents of the database as-is from where it was on Windows to where it would be on Linux but when I try to browse the phpBB forums I get this error:
[Code]....
View 17 Replies
View Related
Jan 24, 2010
What is a good way to do it? I have been trying to do it using sed.
View 9 Replies
View Related
Nov 16, 2010
Recently, my hard drive crashed. I was using XP and do not have my install discs (lost them 3 moves ago...). I make backups regularly and only lost roughly 3 days worth of material (nothing really important). On my other PC I've been running linux forever. I don't need windows and have installed a new HD in the PC and put fedora on there w/ no issues. Now historical email. There seems to be many workarounds for getting dbx files to mbox inside windows, but how would I accomplish this task without a windows install anywhere (Virtual installs are out as I do not have any install discs for windows anyways).
After a quick search, I only found one possible solution (in perl) and am looking for something that I don't have to program my self. I am a programmer by trade but have never programmed in perl (c++, FORTRAN, matlab, python... yes) and at this point, don't feel like learning new syntexs for this one problem (python has been my goto scripting language for everything linux...). Also if anyone has a link to a c++ lib(link to documentation?) that does the same thing... I might take a look at that and make a gui for it... then release it for others...
View 1 Replies
View Related
Sep 19, 2009
I'd like to write a bash script to convert all of the .mpg files in a directory to .avi files. The ffmpeg part of this produces the kind of file that I want, but rather than changing the name of the input and output files each time that I run the script, I'd like to automate it. I've tried this script, but I get an error "command not found".
#!/bin/bash
cd /home/michael_s/golf_temp
1 for i in 'ls *.mpg' ; do
/usr/bin/ffmpeg.exe -i /home/michael_s/golf_temp/"$i" -map 0:0 -map 0:1 -pass 1 -vcodec mpeg4 -vtag xvid -f avi -b 1100k -vol 384 -mbd rd -s 640x480 -aspect 4:3 -acodec libmp3lame -ac 2 -ab 128k /home/michael_s/golf_temp/"$i".avi
rm -f /home/michael_s/golf/temp/"$i".avi
/usr/bin/ffmpeg.exe -i /home/michael_s/golf_temp/"$i" -map 0:0 -map 0:1 -pass 2 -vcodec mpeg4 -vtag xvid -f avi -b 1100k -vol 384 -mbd rd -s 640x480 -aspect 4:3 -acodec libmp3lame -ac 2 -ab 128k /home/michael_s/golf_temp/"$i".avi
done
fi
quit
View 5 Replies
View Related
Sep 1, 2009
how can I convert .wav sound files to .gsm format as I have an application for this usage ? Please be informed that I have made use of the sox utility for this purpose , as the followings , but it didn't get through : #sox FR00003.wav -r 8000 -c 1 FR0003.gsm resample -ql
View 5 Replies
View Related
Sep 21, 2010
I'm trying to convert all file extensions for files in many sub-directories from uppercase to lowercase. I have two problems, how to list the absolute path to the files recursively over many sub-directories for which I so far have this:-
Code:
find ~/Photos -print which would be fine, except it gives the directories on their own when it finds them rather than just the files with absolute paths. I couldn't find a switch for the "ls" command to do this, so I had to improvise with "find". and once I get grab each absolute file name, to just change the file extension rather than the entire file, which is what I have at the moment.
[Code]..
View 7 Replies
View Related
Jan 30, 2011
I have installed this program ok but I am new to command lines in terminal.
I want to convert some wav files to wma files. I have the wav files currently in a folder called Test to make it easy. So I have entered the following command line:
ajpearson@ajpearson-laptop:~/Desktop/pacpl-4.0.5$ pacpl --to wma home/ajpearson/Desktop/Test and the error message I get is:
error: the following is not a file or directory: home/ajpearson/Desktop/Test
It does not matter what directory I use I get the same error. I am sure the answer is obvious - but not t me.
View 9 Replies
View Related
Mar 20, 2011
I have screen.log and putty.log files which has keystrokes characters like ^M, Esc,@ etc.it is in unreadable format. How i can convert it to human readable format?os is rhel 5.2.
View 1 Replies
View Related
Sep 21, 2010
how to convert mp3 files into files with the m4a extension? Need to get music files to be recognized by my DSi.
View 4 Replies
View Related
Sep 19, 2010
In my application I came across a new requirement where I have to convert RTF files to Word and PDF formatted files. I am searching for an API using which my java application can able to convert the above specified formats.
View 4 Replies
View Related
Jan 13, 2010
Does anybody know a way to convert PCL-files to TIFF-files?
View 4 Replies
View Related
Mar 12, 2010
I have backup outlook.pst files on the non-bootable windows os partition. I can access these backups from the Ubuntu partition, but of course they aren't readable. I understand that one can use Mozilla's Thuderbird on Windows os to establish outlook exportable files for the Ubuntu client,but I don't have that option as my Windows os is not booting. I've found Ubuntu so dependable that I have no interest in attempting another expensive and lengthy recovery process of windows.
View 1 Replies
View Related
Jul 25, 2010
I thought this would only merit a google. but all methods seem overtly complicated. I have a bunch of folders filled with .doc files and I need them to convert to plain .txt files. Is there a program I can download from the repositories, or a command I can use to do this?
View 3 Replies
View Related
Mar 2, 2010
I am looking to convert files so that they can be used on a DVD. Does anyone know of a good application I can use? which is GUI.
View 6 Replies
View Related
Apr 5, 2010
I need to convert avi files to dvd which1? is there a program called vdvd or something like that?
View 2 Replies
View Related
Jan 27, 2011
Howto convert debian .deb package to .tar.gz?
View 1 Replies
View Related
May 11, 2010
I have sites written in Win-1250 alias cp150. I need to convert all files to UTF-8. I know about iconv but I found problem with this tool. When I tried to convert I had to make a copy of the original file. But I have many files in (sub)folders. So If I would want to use iconv instead, I would need to convert all files from *.php to *.tmp and than copy or rename back to *.php. This looks too difficult.ther way how to do it, something intelligent and simple
View 14 Replies
View Related
Apr 9, 2011
How can i convert .mov files to .mp3 or .mp4?
View 3 Replies
View Related
Jan 10, 2010
Has anyone found an rpm of awn 0.4 beta or even a deb? (32-bit) Is there any way of taking files from repositories (deb files to be specific) so that I can simply convert them to rpm files using alien?
View 8 Replies
View Related
Apr 1, 2010
I wanted to convert some XLS files into CSV format in my Linux box. Could you please tell me is there any command line tool available in Linux. Since i have a requirement for automate this job via a cronjob , so i would be needed a command line tool.
View 1 Replies
View Related
Apr 19, 2010
I have a script to convert some files, this works fine. My current script is: for i in *.vob; do ffmpeg2theora -v5 -a1 $i -o `basename $i .vob`.ogv; done; The files all have the name Episode-####.vob (replaces #'s with numbers.)
Instead of going from Episode-0001.vob to the end, how do I get it to go from a random file i.e. Episode-0025.vob ?
View 2 Replies
View Related
May 9, 2010
Downloaded ten mp4 file (approx 200MB each) and tw0 flv (approx 400MB each) from open-yale and wanted to burn them as a DVD to view on the tv. Using openSUSE 11.2 and KDE4, 2MB ram on a desktop to do this task.
View 3 Replies
View Related