General :: Converting The Kb To Mb?

Mar 16, 2011

i want to convert kb to mb and i'm wanted to use bash. if i use

"cat /proc/meminfo | grep MemTotal"

will only display in kb and i want to display it in mb.. and i want it to display like this

MemTotal : 250 mb

View 5 Replies


ADVERTISEMENT

General :: Converting Doc To Pdf

Sep 19, 2011

I try to convert a doc file to a pdf file with the linux bash. I tried different ways like jodconverter, ghostscript, postscript and so on, but all didn't work as espected. Additionally I can say that I have only the bash.

View 1 Replies View Related

General :: Converting Videos To Mp3?

Jul 12, 2011

I've mostly mp4/flv media files,i need to convert them to mp3 to put in my mp3 player but at the same time i like to adjust the mp3 bitrate to save space and maintain quality sometimes. How do i actually do that in Linux. Is there any GUI program that performs the job for me quickly ?

View 14 Replies View Related

General :: Converting A Script Into A Service?

Jan 14, 2011

How to convert a user written script into a service in linux?

View 1 Replies View Related

General :: Hex Values Converting Inconsistently?

Dec 19, 2010

I couldn't really decide where this should be posted, but this is the most general of the forums. Anyway, I've been playing a wargame on intruded.net in which some of the challenges require me to pass hexvalues into the programs as character values. All is well with this, and usually I would use the shell to pass it in, but most of these programs use the gets() method to get my input.

Here comes the problem... The other day I was using my desktop which runs slackware 64 13.1 to do these challenges. My method was to use "echo -e 'xefxbexadxde'" to print them to the shell's standard output and then highlight and copy the resulting values to paste to the program. This works just fine on slackware, but when I repeated the same processes on Ubuntu 64 10.04 (which runs on my laptop) the 'xde' always turns up to be 'x00'. Then I tried some other levels with similar responses, not all the hex values convert to the correct ASCII characters.

View 2 Replies View Related

General :: Stuck On Converting Extensions Tar.gz To .tgz

Jan 18, 2010

I understand that .tar.gz and .tgz are equivalent to each other.

I did some checking as alway online. I am however stuck how to you make files with a tar.gz extenstion become .tgz. In the case of it being a compressed file is there a right and wrong way of doing this.

it seems that I always encounter things slightly off the beaten path, against my less then optimal knowledge of the man pages.

View 3 Replies View Related

General :: Converting The Ntfs To Ext3?

May 13, 2011

converting the ntfs to ext3.

View 9 Replies View Related

General :: Converting And Hardware Compatibility?

Aug 10, 2010

I am an activist. I am becoming concerned with security on line because I have posted videos exposing SERIOUS corruption within the government at all levels. With all the recent claims of executive authority in the name of cyber security and govt eavesdropping I am interested in finding a more secure op sys. Windows is to vulnerable. I have an HP7845 Sound Blaster 64 Sound card. Radeon 9800 video card. I have a large volume of videos and media/research reports I cant afford to lose. How easy is the conversion? And also concerned with software. Will programs work the same or at all?Is my equipment even compatible with other opsystems. Is there a risk of glitches that would curtail my efforts after attempting the change. I KNOW NOTHING about other systems hell I can barely run XP. However I would hate to lose files or go through a months long debugging venture.

View 2 Replies View Related

General :: Converting From Windows To Ubuntu?

May 24, 2010

i have downloaded and installed linux ubuntu onto my hp laptop. now my account in linux does not show my files etc on my harddrive which have obviously been created by windows.how do i transfer/see them in linux?interested in learning but no the best at computer language

View 4 Replies View Related

General :: Converting Script To C Code?

Mar 25, 2011

i wanna covert script to C code or any other method to embed this script in C code, script link [URL]

View 1 Replies View Related

General :: Converting FLV File To MP3 (Only Sound)

Mar 12, 2010

How to convert a .flv file to .mp3 file? (Extracting only the sound)

View 7 Replies View Related

General :: Converting A PDF To Black & White With Ghostscript?

Oct 17, 2010

Similarly to this question:Convert a PDF to greyscale on the command line in FLOSS?I have a PDF-document and want to convert it to pure black and white. So I want to discard halftones. To convert to grayscale with ghostscript I can use this command:

gs
-sOutputFile=output.PDF
-sDEVICE=pdfwrite

[code]....

View 2 Replies View Related

General :: Tool - Converting .VHD Imag To RAW Format?

Oct 23, 2010

I need to convert a VHD file (Hyper-V VM) to the Linux raw format. Is there a tool which can do this which is graphical?

View 2 Replies View Related

General :: Converting Word Document To TIFF?

Apr 26, 2011

I have a CentOS 5.6 box and was wondering if there are any tools for Linux that can convert a Microsoft Word document to a TIFF file?

View 2 Replies View Related

General :: Converting OS X Fonts To Regular Format?

Aug 12, 2010

I need to convert OS X apps to OTF or TTF. Something usable in both Linux and Windows.

Is there any way to do this via the command line, or any app for this?

View 3 Replies View Related

General :: Primary Point Of Converting Dll To Lib In First Place

Apr 15, 2010

I've been looking for a way to run windows-only vst plugins nativley on linux as well as to find a linux driver for my 1394 audio interface with little luck; I would like to do so without relying on wine, and have come across an idea to work out after stumbling on a utility that converts dll to lib (called dll2lib). The idea would be to convert the dll's for a proprietary fw audio dev and dependent MS libraries and manually change what's needed to make it compatible with linux env. is this possible; will I be able to achieve source code from this? if not, what is the primary point of converting a dll to lib in the first place.

View 2 Replies View Related

General :: Batch Converting Video From Avc1 To Xvid?

Aug 8, 2010

I need a way to batch convert 720p video files from avc1 to xvid in Ubuntu 10.04. I'm not terribly concerned about file size, but I do wish to retain the picture quality as much as possible. I believe the audio is encoded as aac, which is fine for my purposes.

What would be the best and easiest way to do this? I've tried using Handbrake. During my first attempt, I had it using ffmpeg to convert to MPEG-4, but that just gave me a super-low quality video at twice the file size. Trying h.264 now, so we'll see how that works out. But just in case it doesn't pan out so well, what other ways do you recommend?

I was thinking I'd write a bash script to reencode the files one by one, but the problem is that I have very little knowledge about codecs and containers and whatnot - so I wouldn't know what parameters I would pass ffmpeg/mencoder.

View 1 Replies View Related

General :: Converting C Code Into Command Line Executable?

Sep 1, 2010

I thought this question's best category would be in the newbie sectionBasically I have a C code, (for simplicity is only prints a few lines), called printx.c that I would like to convert into a binary file so whenever I have to type "printx" in the command line it would execute the programofcourse gcc will give me a binary file if I do a "gcc printx.c", but even the output file (e.g. print.outwould have to be executed following manner./print.outI only ask, because I notice programs like mailx (which is written in C) is a binary file that could be run in this manner (at least that's what I notice on my ubuntu distro)

View 3 Replies View Related

General :: Converting A String To An Shadow Password Format

Apr 15, 2010

I need to manually convert an string ( like with echo ) to a DES crypt format to be inserted inside a /etc/shadow file, does anybody knows how can I do that?

Maybe there are some little tool that could handle that operation, well.. I don't know, hope someone can give me a hint on that.

View 3 Replies View Related

General :: Converting Video Formats To Enable Dvd Burn?

Feb 6, 2010

I have movies downloaded onto my Linux based system and want to convert them so I can burn them to ddvd so I can watch from my couch. I have found a couple for windows but not Linux. By the way I running Mint 8 -X64.

View 5 Replies View Related

General :: Process Is Very Timely As Converting Loads Of Avi Files At A Time

Oct 12, 2010

I'm rather new to linux, and I have a dedi server. I know how to browse, install, remove etc, all the basics needed to use it. I've installed flvtool2, memcoder and ffmpeg, and at the moment im converting avi files in to flv. Im then passing metadata using yamdi.

However, this process is very timely as im converting loads of avi files at a time.Im looking for a script, or a way where I can execute one command/script and which will convert all files in the directory I specify, then run those converted files through yamdi.Im guessing it would be some sort of loop, and then changing for each file?

View 6 Replies View Related

General :: Converting Rpm To Deb And Maintaining "Requires" Dependencies?

Aug 18, 2010

I am using alien to convert an rpm package to a debian package. I need the deb package to check for installed package dependencies and notify the user if the dependent software is not found. In the rpm .spec file there is a section that you can use to specify dependencies such as:

%Requires: java

This dependency is flagged when I install with rpm, but my deb file created by alien doesn't indicate there is a failure.

View 1 Replies View Related

General :: Converting A Vfat Extended Partition Into A Ext4 Partition?

Jan 29, 2011

I want to convert a vfat partition into an ext4 partition. This is on my wife's machine and she deleted the Windoze partition as she now prefers Linux. Here is the (edited) output from fdisk -l:-

/dev/sda2 514048 4708351 2097152 83 Linux
/dev/sda3 4708352 6805503 1048576 82 Linux swap
/dev/sda4 52693200 234436544 90871672+ f W95 Ext'd (LBA)
/dev/sda5 59006800 234227699 87610446 83 Linux

I want to change /dev/sda4 to 83 to free up space for Linux without losing the partitions in this 'extended' partition!

View 6 Replies View Related

General :: Converting .rpm File Into .deb File Using Alien In Ubuntu?

Mar 27, 2010

I have converted a i336.rpm file into .deb file in ubuntu using alien successfully. but I am getting the following error while converting i586.rpm file of the same application into .deb file

Unpacking of 'app-1-1.i586.rpm' failed at /usr/share/perl5/Alien/Package/Rpm.pm line 155.

View 1 Replies View Related

Fedora :: Converting Mkv To Either Avi Or Mp4?

Oct 1, 2009

how to convert mkv files to either avi or mp4?

ATM I'm trying to use mencoder and am not impressed with it telling me it can't find the file I'm trying to convert. Especially when it WAS perfectly able to fid the file before my computer had an unfortunate crash, which didn't even affect the file in question.

View 4 Replies View Related

Ubuntu :: Converting M4a To Ogg ?

Jan 9, 2010

I'd prefer a command line version if possible. Batch use would be best.

View 6 Replies View Related

Ubuntu :: Converting .ogg To .mp3?

Feb 3, 2010

I need to convert a couple files on a CD to .mp3 files to put them on my mp3 player.

View 6 Replies View Related

Ubuntu :: Converting .ISO To .BIN/.CUE

Nov 24, 2010

i have a few .ISO's i need to convert to .BIN/.CUE files.

i find all kinds of software for converting .bin/.cue's into .iso's, but not vice-versa.

View 8 Replies View Related

Ubuntu :: Converting Jpg To Png?

Mar 22, 2011

I'm trying to put a background on a DVD through DeVeDe, Image i want to use is jpg and it only accepts png, I do prefer to work from terminal i can learn and become more comfortable with it, But a GUI would be good too

View 5 Replies View Related

Ubuntu :: Converting .bat Into A .sh?

Jul 15, 2011

I have been looking everywhere and even tried writing this shell script my self but almost blew up my computer ahahah I suck and i'd seriously appreciate some help here so can sombody please convert this .bat into a .sh Here it is:

@echo off
Title Client
START java -Xmx512m Gui 30 0 lowmem members 32
exit

View 1 Replies View Related







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