Software :: Obtain The Total Size Occupied By Files Of Certain Type?

Aug 3, 2010

I'm trying to determine the total disk space used by some files with certain type.I'm trying this with find, but maybe there's another solution?The fact is that I don't know what should I give to the pipe next to find (or whatever command) so that I can determine the total disk space used by that files.

View 2 Replies


ADVERTISEMENT

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

Ubuntu :: Remove Old Backups Based On Total Size, Not Just Backup Age?

May 24, 2010

I'm looking for a standalone backup manager with the following properties:

1) Easy scheduling.

2) Automatic encryption of backups

3) Ability to remove old backups based on total size, not just backup age. (to avoid overfilling backup media)

4) Since this is going onto a business-critical machine used by a techno-peasant, it needs to have a snazzy, graphical interface for easy monitoring and configuration.

I am sure I *could* write this myself, but I find it hard to believe that there isn't one out there already, and I am lazy. Unfortunately, there are also a very large number of backup programs out there with less than complete descriptions and I am getting tired of installing each in turn to see what it does.Has anyone stumbled across something like what I just described?

View 2 Replies View Related

Debian Programming :: How To Find Total Size Of A List Object In Byte

Jan 11, 2013

Assuming there are two list objects a1, a2.

a1 = ['
']
a2 =['hi
']

len() built-in function gives total number of elements in the list object.
len(a1) gives 1. len(a2) gives 1 also.

Code: Select all$ python
Python 2.7.3 (default, SepĀ  9 2012, 17:41:34)
[GCC 4.7.1] on linux2

[Code]......

I thought there exists a built-in function that gives total size of a list object in byte. So using the function produces 1 for a1, 3 for a2. I haven't found such function or module yet.

View 3 Replies View Related

Hardware :: Check Total DRAM & Type Of DRAM In Machine?

Jul 13, 2011

how to check total DRAM & type of DRAM in my linux machine?

I know dmidecode command can be used but i do not have admin access.

View 3 Replies View Related

Ubuntu :: Files In /var/log Which Total 398 GB

Oct 31, 2010

What could be the cause of this?

Code:

I've deleted all the syslogs now, since it prevents me from using the system properly, and it seemed to keep expanding every time I freed space.

After deleting syslog entries:

Code:

Daemon.log seems to suggest it's an NTFS issue, as it's filled with copies of this entry(with different dates and times).

Code:

View 2 Replies View Related

General :: Partition Type / Size Quirks After DD Clone

Apr 26, 2010

I decided to clone my OS partition to another hard drive using dd (without any special options). I created the target partition before cloning (25GB) but it shows up as 21GB (source/original partition's size) in df, as well as ext2 instead of ext4.

View 2 Replies View Related

General :: Count Total Number Of Lines Of Found Files?

Mar 20, 2011

I'm running a find. -name pattern to find some files, and I'd like to elegantly get the total number of lines in these files. How can I achieve that?

View 4 Replies View Related

General :: Recover Deleled Files On Server Using Total Commander?

May 6, 2011

I used Total Commander and connected FTP to write website. Today I accidently deleted some files. How to recover them?Recover using Total Commander or log in Putty? If using Putty, what commands are used to recover?

View 1 Replies View Related

Ubuntu :: Total Filesize Of All Files Found With The Find Command?

Dec 21, 2010

i'd like to know the total filesize of all files found with the find command, so

Code:
find -iname '*.mpg' | xargs -I {} du -sh {}
but this gives me the filesize of each file, since each line is passed to "du".

how can I pass the whole list through the pipe?

View 6 Replies View Related

Ubuntu :: Memory Is Not Occupied By Any Application But Not Free

Apr 15, 2010

I have a very weird memory issue (as you may have guessed from the title). There's a discrepency between the memory accumulated by the various applications (using "ps -eF" to collect that) and the memory reported by system monitor/"free" Basically, I have around 0.5GB of memory that is not occupied by any application, but is not free as well. (It is not used as cache as well)

[Code].....

View 1 Replies View Related

General :: Write Shell Script Which Can Take Number Of Files And Count Total Rows From All CSVs?

Oct 8, 2010

I need to write shell script which can take number of files and count total rows from all CSVs and display total number of rows counted in all files. Is there any possibility of doing that using shell script and if yes then how.

View 4 Replies View Related

Fedora Networking :: 4GB Of RAM And 6GB Of Swap Space - CPU Process Normally Don't Occupied More Than 30%

Dec 1, 2010

Whether i am short of memory or some memory corruptions? If so, what can i do? Because i find it hard to believe this is a memory problem when i have 4GB of RAM and 6GB of swap space, and my CPU process normally don't occupied more than 30%

Well my Linux is keep on crashing.

Code:

View 8 Replies View Related

Ubuntu :: Show Date And Size Of Files During Files Replacement?

Jan 16, 2011

I am newer to Linux ( using Ubuntu 10.04) : I have noticed that during replacement of a file , no date and size of the new and old files are shown in the dialogue box so how to show that ( like the one in windows)

I know that it is easy question , but i really don't know how to do that , by the way I have checked folder preferences and system --> preferences but i did not find something for that

View 9 Replies View Related

Fedora Installation :: 10 - WDE And Dual-Boot - Boot Sector Is Occupied By WDE Software (TrueCrypt)

May 17, 2009

I currently have XP installed on a NetBook (Samsung NC10), and would like to run Fedora on it. I'm currently looking at putting Fedora onto a flash memory card to test it works OK on the hardware, before installing it to the hard disk. The problem I've got is that the boot sector is occupied by WDE software (TrueCrypt). Will this pose a problem for dual-booting XP with Fedora, or will GRUB move the boot loader in the usual way?

View 2 Replies View Related

General :: List All Files By Type ?

Jun 22, 2010

How do I (in the command line) list all the .txt (or any common attribute) files in a directory?

View 4 Replies View Related

Ubuntu :: Moving Files By Type In Terminal

Jan 30, 2010

Is there a command for moving a certain amount-or all files-of a certain type? I know how to move files around but I can't find anything that explains how you would move multiple files at once.Writing this, I wonder, is it possible to move files by their size-moving all files under or over a certain size-rather than by type or name? I've looked but can't find how to do this, or if it's possible. Can't find anything on google with any combination of search terms.

View 4 Replies View Related

Ubuntu :: Use Terminal To Search For All Files Who Are Not Of A Specified Type?

Sep 14, 2010

I want to use the terminal to search for all files (also the hidden ones) who are not of a specified type.

For example; I want to find all files that do not end with *.txt.

How do I do this?

View 9 Replies View Related

General :: Gxine Does't Download Files Of Type MP3?

Jul 3, 2011

kernel 2.6.21.5, slackware 12.0
xfce 4.4.1
seamonkey 1.1.2

I go to [URL]...Ravel,_Maurice) >Performances>Prelude a la nuit. If you place the mouse over there, a little box pops-up that says 'Download this file'. So, by clicking 'Prelude a la nuit' I should be downloading the corresponding file (.mp3). But this does not happen. Instead, gxine opens. How can I change this undesirable behavior?

Should I modify something in the web browser? Or perhaps in the desktop environment? I did the following: in SeaMonkey, the web browser I use, I put the url 'about:plugins'. In the table that says "gxine starter plugin" I read audio/mpeg3 and audio/x-mpeg3. So, I went to Edit>Preferences>Helper Applications>New Type. Here I put MIME Type= audio/mpeg3, Extension= mp3. In the same dialog box, under 'When a file is encountered', I chose 'Save it to disk' and 'Always ask me before handling files of this type'. I did the same for audio/x-mpeg3.

View 3 Replies View Related

Ubuntu :: All Files Show As Type Plain Text?

Apr 14, 2011

I somehow managed to screw up my lucid lynx system so that all files show up under Nautilus properties as Type Plain Text. When I double click a file, any file, the system tries to open it as plain text with gedit. Everything worked correctly until yesterday when I tried to install a new version of PyQt4. If I reboot with an old (karmic) version of Ubuntu and bring up Nautilus Properties on the same file (my data partition can be opened in other OS's) the files show up with the correct file type (PDF, ODT, etc) So the problem is not in the file itself, but rather in the lucid OS, which is mis-interpreting the file type. As I said I somehow messed it up when installing the new version of PyQt4.

View 7 Replies View Related

Ubuntu :: Add The File Type Extension To The End Of Multiple Files?

May 30, 2011

I have made the simple mistake of using dolphin to rename several picture files of types jpg and png. I have no problem viewing them and Ubuntu still knows which is which (if i view their properties it will state File Type: JPEG or PNG) but unfortunately Ubuntu Tweak does not allow you to chose them without the extension (I am trying to change my login background using this) So what i need is something that can scan several files, determine the file type, and add an appropriate extension to it. I have found several to do so for music files but none for images. I am using Ubuntu 11.04 at the moment.

View 5 Replies View Related

Programming :: Have Files With Rows Of Data And Need To Check If The Next Row Of The Same Type?

Aug 16, 2010

I have a problem - I have files with rows of data and I need to check if the next row (of the same type) has the NEXT date in it so I need to extract a date in YYYYMMDD format from a row (easy enough) then add one day to it and compare it to the the next date I encounter on a subsequent row.

So if I have
DATE|20100530
VAL|kahskjhd

[code]...

View 6 Replies View Related

Slackware :: Mime Type Associations For Office Files

Oct 22, 2009

I installed MS office 2003 via wine on Slackware 13. I need to know how to associate files with the right Office (msword, msexcel, msppt) program. I made launcher scripts that can launches office files from the CL, but the user on this computer will want to be able to just double click a file in dolphin and have the right office program come up.For some reason all office files show up as x-ole-storage instead of application/msword or something similar. So, even if I tell Excel to associate with that file, it will do it for Word and PowerPoint files as well.

.ppt, .doc, and .xls extensions were configured via the KDE file associations panel, but this did not help. I played around with the raw files under ~/.local/share, but I did not find the solution.The version of WINE is 1.1.24 (built from SBo SlackBuild).

View 2 Replies View Related

Fedora Security :: How To Determine What Type Of Files Clamav Can Scan

Dec 7, 2009

How to determine what type of files clamav can scan? For example, if there is no unrar installed it can't scan files in it. So is there any way to find out all types of files that clamav can't scan?

View 2 Replies View Related

Ubuntu :: Type Ext4 Partition Won't Let Copy Files Larger Than 4.1 Gb

Jun 30, 2010

I erase XP and do a clean install of 10.04 netbook remix on my Acer AspireOne. Almost everything seems to be working ok (so far.....3hrs after installation and still testing!) except for:

1: My main partition is formatted as ext4, and when I try copy back any (video .iso !) file that is larger than 4.1 gb I get a memory error and so only copies the file incomplete up to 4.1 gb. I know this problem under windows FAT vs NTSF but I have read that ext4 was beyond this... So what did I do wrong? Is the solution to switch the ext4 to ext3 and can this be done without loss of installed programs or files.

2: Video and Sound with video is not good. Lots of disturbance/turbulence and for sure not optimal for both video and sound.

3: my internal micophone is not working in Skype but it does with Sound-Recorder...I connected external mic and this works, but with lots of disturbance. Also the voice sound from telephone calls sound is not as should be.

The "hardware drivers" utility tells me that all is good and no proprietary drivers are in use on the system.

View 2 Replies View Related

Ubuntu :: Unable To Open Rar Files - Archive Type Is Not Supported

Jul 9, 2010

I downloaded a rar file but it's not working with Archive Manager says "Archive type is not supported"

View 5 Replies View Related

Ubuntu :: Commands For Batch Deleting Folders/files By Name/type?

May 18, 2011

I'm trying to clean up a few hundred thousand mp3 files and I'm dying to find a way to automate some of the mechanical tasks I keep doing. It seems like at least two of these tasks could be easily accomplished with something at the command line, but I don't have the chops/know-how to figure out how (and would really rather not trial and error with batch deleting files & folders...).

1) Delete all folders named "_MACOSX" (and all subfolders/files contained therein) -- Basically, I'd like to apply this command to a few hundred directories that may or may not contain a subfolder called "_MACOSX" that I'd really like to get rid of.

2) Delete all files named "*.m3u". -- Similar to the first, I want to automatically scan all directories and subdirectories in a given location for all instances of this file-type and delete them wherever they're found.

3) Move all files named *.txt", "*.doc", "*.pdf" to a specific location. -- Similar to the last, except instead of deleting, I'd like to just move them, so that if there is anything worth keeping, I can keep it.

View 3 Replies View Related

Ubuntu :: List All Files Of A Specific Extension (file Type)?

Jun 30, 2011

I want a list of all my mp3 files (or any other kind of file, actually) telling me HOW MANY OF THEM I have in my computer.I tried with both find and locate commands in terminal, but they don't tell me how many files I have.

View 2 Replies View Related

Software :: Openoffice.org Plugin Or Filter For Visio Type Files?

Mar 28, 2010

From MS-Word, there are certain graphics that one can create that feature linked boxes of text (I think they're referred to as smart graphics, or something). There's another MS program called visio that also creates these type of graphics. When I tried to open a docx file that had one of these graphics in it with openoffice.org (I'm using version 3.1 from debian backports on my lenny system), it was unable to read it. Is there a plugin or filter that I can add to openoffice.org to give it this functionality? If not, is there another program that reads these files?

View 2 Replies View Related

General :: Using Du To See Files Of A Particular Size Only?

Jan 23, 2011

I am having a few situations to which I do not see any thing in du man pages.Quote:1) I want to see files in a sub directory which are larger than a particular size only.2) I use du -sh > du_output.txt I see the output as described for option -s and -h how ever what I am more interested is if the output comes in a format which is say for example

Code:
dir0--->dir1-->dir3-->dir4
| |

[code]....

View 3 Replies View Related







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