General :: How To Find All Files Not Part Of Installed Distro

May 19, 2011

I loaded a distro (which does not seem relevant) onto my laptop and used it for a while. Applications did whatever they do creating and saving files. I know that I have images and documents and videos and music and such on the laptop among other non-distro data files. Is there a simple (straightforward) way to identify which files on disk are NOT part of the installed distro? I know how to use find. I know that find lets me locate files based on some date-time-stamp. I know, too, that I can use any selected file as a benchmark date-time instead of some specific command line string.

For example:
Code:
Find files whose modification date is before (or after) the date(s) associated with the file /path/foo.bar.
Is there any one file that I could use to peg the distro install date? Can I get that date from somewhere else like a file system details?

View 14 Replies


ADVERTISEMENT

General :: New Distro Has Kgrubeditor Installed?

Sep 7, 2010

What New Distro has kgrubeditor installed? I need this application & cant get to install in Ubuntu 10.04.1 Lucid.

I have tried to find out the Sudo commands to install but can't seem to get to work.

View 6 Replies View Related

General :: How To Find Out What Distro Is On PC

Jan 29, 2010

So I start up a Server and it ends at the console.I enter the username/password. How can I find out what Linux distro this is version etc from the command line.

View 8 Replies View Related

General :: Delete The Partition Of The Distro That Installed GRUB

Sep 29, 2009

I have two distros and windows installed. I only want one distro (I have decided on Ubuntu) and windows. But, the other distro, the one that I want to eradicate is the last one installed and it is its GRUB in the MBR.

I know what happens from experience if I just delete that partition with a liveCD - GRUB won't boot anything on reboot.

What do I need to do from within Ubuntu or the other Linux before deleting the partition of the second distro so that I have a working GRUB when I reboot ?

View 2 Replies View Related

General :: Good Distro With Vmplayer Installed By Default

Mar 30, 2011

What is a good distro with vmplayer installed by default.

View 2 Replies View Related

General :: How To Find Out What Your Distro Is Based On

Nov 28, 2010

I have been using Linux for quite a while and have gotten pretty good at it, but recently I started using Backtrack in a VM and realized I have no idea what it is based on. Then I got to thinking I have no idea what that even means. For example, OSX is based on Darwin right, but what does that mean? Ubuntu is another that is based on Debian, but I don't know what that means.

The reason I'm asking is because in order to get my screen resolution and networking right in Backtrack I need to know what it is based on so I can download the proper packages to install the VirtualBox guest additions, and I have no idea. Is there a way to get this information from the operating system? Maybe uname -a is giving me the info and I just don't know where to look in the output?

View 7 Replies View Related

General :: List Files Based On Matching Only Part Of Their Filename?

Sep 13, 2011

I have many files in a folder for example

Kiran.txt
Kiran1.txt
Kiran221.txt
Kiran144.txt
Time.csv

[Code]...

From this directory, I want to know how I could use grep to display files based on part of their filename - for example those starting with "Account" or those ending in ".sh".

View 4 Replies View Related

General :: SuSe 11.2 - Distro Files To Be Downloaded

Apr 28, 2010

What files do I need to download for installing Suse11.2. Which is the best distro to install for a novice ?

View 3 Replies View Related

Ubuntu :: Uninstall The Packages That Were Installed As Part Of Kubuntu Desktop

Mar 11, 2010

I am trying to uninstall the packages that were installed as part of kubuntu desktop. I have gotten ~3 quarters of them, but didn't know if there was a better way than trying to pore over synaptic.

View 3 Replies View Related

General :: Find/grep/wc Command To Find Matching Files - Print Filename And Word Count?

Sep 11, 2009

I am trying to do a find/grep/wc command to find matching files, print the filename and then the word count of a specific pattern per file. Here is my best (non-working) attempt so far:

wc `find . ( -name "*.as" -o -name "*.mxml" ) -exec grep -H HeightResizableList {}` ;

View 10 Replies View Related

General :: Command Line - Use Find To Find Text Files?

Jul 15, 2011

Is there a way to specify to find that I only want text files (and not binary files)? Grep has an option to exclude binary files, so I thought find probably has a similar feature, but I've been unable to find it.

View 2 Replies View Related

Ubuntu :: Deleted Part Of Panel - Cannot Find Icons To Add

Jul 10, 2010

I didn't delete the whole panel, but just the bit where it shows icons of currently running programs. So now when Ktorrent, Kalarm or Desktop Drapes are running I can't see their icons on the panel and I can't find how to add the thing I've deleted from the "Add to Panel" menu. Anyone know how to get it back?

View 4 Replies View Related

General :: Find Setuid Files Using FIND Command?

Jan 25, 2009

I know how to search for normal files but can you let me know " How to search for 5 setuid files on the system. Also explain, for each file, why setuid mechanism is necessary for the command to function properly"

View 1 Replies View Related

General :: Update Distro With A Newer Version And Not Disturb Saved Media Files?

May 3, 2010

Is there a way to update my distro with a newer version and not disturb saved media files? Music and pictures etc. Can I move them to another partition. Its there a better way than to save it to disk?

View 13 Replies View Related

General :: Sh Can't Find 'cc' When Gcc Has Already Been Installed?

Aug 9, 2010

I am trying to compile an android project, which requires GCC-4.3(mandatory, GCC-4.4 doesn't work). So I downgraded the gcc-4.4 on my ubuntu 10.04 to gcc-4.3.

But then the compiling process doesn't work. It says:
cc: command not found
make: *** [...] error 127

It's weird that the shell can't find 'cc' while I do have gcc-4.3 installed.
I've tried type the following command:
export CC="/usr/bin/gcc-4.3"
but I don't know what's it for.

View 6 Replies View Related

General :: Where To Find Out Where A Package Has Been Installed To

Feb 27, 2011

Fedora 14 xfceI have installed a package using yum install package-name.However, I can't seen to find out where it has been installed to.Is there any command that will tell me what directory the files have been installed to?

View 2 Replies View Related

General :: Find Out Prerequisites Are Installed Or Not?

Mar 28, 2011

im trying to install cclive, in its INSTALL file they have given some prerequisites, how can i find out those are installed in my centos or not.

Prerequisites for cclive are given below

* libquvi (0.2.0+)
* libboost (1.42.0+)
* libpcrecpp (8.02+)
* libcurl (7.20.0+)

View 7 Replies View Related

General :: List/find All Regular Files In All Subdirectories Excluding Binary Files

Oct 5, 2010

I know I can do find . -type f, but that includes binary file and I couldn't find a way to exclude them with find

View 4 Replies View Related

General :: Distro - Nominate A Disastrous Distro From Past Or Present

Jan 9, 2010

nominate a disastrous distro from past or present that was simply AWFUL and what exactly was so bad about it?

View 14 Replies View Related

Hardware :: I3 Processor - Best Distro To Be Installed?

Jul 19, 2010

I just ordered a new desktop computer online, with an i3 processor and a nVidia GeForece graphic card. Its going to take a few days to ship so I thought I would research and find the best distro to install on that hardware. I've been using fedora for years on my laptop and I've never had a problem but now with the i3 I dont know which distro would be best to install.

View 4 Replies View Related

General :: Windows - Find The Architecture Of OS Installed?

Aug 9, 2010

I'm using Core 2 Duo. So, from Intel website I found that it is 64-bit architecture CPU.

Long back I've installed Ubuntu OS on this machine. But I'm not sure if I installed x86-32 or x86-64 version of Linux. I want to know which version of Linux I'm using. How to know that?

How to find the same on windows?

View 4 Replies View Related

General :: Find All Services Are Installed Or Not In Redhat

Sep 29, 2010

how can i find all services are installed or not in redhat linux.

View 1 Replies View Related

General :: Can't Find Setup-installed Components?

Feb 6, 2011

I'm installing LoL using Wine and I can't find where setup has put the files. When I type "wine lol.launcher" it says "wine: cannot find L"c:\windows\system32\lol.launcher". For that matter I can't find where the setup program has installed any of the LoL components

View 1 Replies View Related

Red Hat / Fedora :: How To Extract .part Files

Jul 8, 2011

I'm trying to extract .part files. These are mac extensions similar to .rar or .zip. I need to extract a whole bunch of them simultaneously. Theyre probably registered in sequence just like .rar files. What program can I yum install or where should I look to extract these to what will probably be an ISO.

View 1 Replies View Related

General :: How To Find Out What Options A Library Was Configured With When It Was Installed

Nov 24, 2010

Is there a way to find out with what options a library was configured with when it was installed? I am trying to install a library on my system that depends on gasnet and it requires me to configure it with the very same options that gasnet was configured with. Gasnet was not originally installed by me, so I cannot tell. I can see bin/, include/, lib/ and share/ directories in the gasnet folder and no other information in it. To be specific, I need to use the same CFLAGS that were used during installation of gasnet. For example, if it was installed using '-g -O2', I have to make sure I use the same CFLAGS here.

View 4 Replies View Related

General :: Find Installed Location Of RPM Package In Unix?

Mar 26, 2010

Using rpm -qa | grep -i <pkgname> gives if a package is installed or not.

But, I would like to find out where a package is already installed i.e the location where a particular package is installed say /opt/<pkg>

View 2 Replies View Related

General :: Smbpasswd Cannot Find Installed Library Libwbclient.so.0

Dec 13, 2010

I am using Slackware 13.1 with the uname -a output:

Quote:

Linux darkstar 2.6.33.4 #2 Thu May 13 00:27:45 CDT 2010 i686 Intel(R) Atom(TM) CPU N450 @ 1.66GHz GenuineIntel GNU/Linux

When the binary smbpasswd is executed it gives the following output

Quote:

smbpasswd: error while loading shared libraries: libwbclient.so.0: cannot open shared object file: no such file or directory ldd /usr/local/samba/bin/smbpasswd has this output

Quote:

linux-gate.so.1 => (0xffffe000)
libldap-2.4.so.2 => /usr/lib/libldap-2.4.so.2 (0xb7220000)
liblber-2.4.so.2 => /usr/lib/liblber-2.4.so.2 (0xb7214000)
libresolv.so.2 => /lib/libresolv.so.2 (0xb71fd000)

[code]....

I do not know how to direct the binary to the missing library.

View 7 Replies View Related

General :: Find Out What Sound Player Is Installed For Ubuntu 9.10 ?

Jan 19, 2010

trying to get kismet to play sounds

-how do i find out what the sound application is used to play sound files?
-how do i find out what sound player is installed?
-sound application use to play the sound files.

....right its installed on my pc but im also goin to install kismet(ubuntu9.10) on my laptop. will it be the same?

View 1 Replies View Related

General :: Where To Find Icons From Newly Installed Programs?

Jan 14, 2011

For every program I've installed, I can see an icon in the applications menu. But, I'd like to be able to find the actual icon so I can use it on panels and such in gnome.

Is there a standard place where icons from the applications menu are found?

View 1 Replies View Related

Ubuntu Installation :: After Dd From Full 15GB Part To 1.3TB Part, Shows Same Free Space?

Dec 8, 2010

I just used dd to clone a linux partition to a new hard drive, it had 800mb left on the old hard drive, after dd, new hard drive lists 1.29/1.3 terabytes full. Is this what happens by default in dd? How can I fix this?

View 1 Replies View Related







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