General :: Display All Rpm Installed List Sorted By Date?

Oct 4, 2010

I know "rpm -qa --last" lists all rpm with date and time. But I want to sort the list by date, with earlier installed rpms displayed ahead. So it needs pipe, ie something like "rpm -qa --last | ...". What is exact script to do it?

View 3 Replies


ADVERTISEMENT

Ubuntu :: Way To Display All Installed Software By Date?

Apr 14, 2010

In Ubuntu is there a way to display all installed software by date? For example it would be handy to show the most recent installed software like in Revo Uninstaller in Windows.

View 9 Replies View Related

General :: A Script That Will Display Only The Last Login Of Each User With The Date And Year?

Apr 20, 2010

This is on an old machine that is running Solaris 7. I know that I can run the command script 'last' to get a list of who has logged in. When I do that I get a very long list of lines like:

username pts/4 100.32.11.123 Wed Dec 6 18:30 - 18:40 (00:09)

I see that the year is not posted. I have about 11 years worth of logins where users have logged in multiple times over several years.

So, here is what I need: I only need the date of the very last time a person logged in. I also need the year of that last login.

script that will do this? Something with output like

username1 pts/4 100.32.11.123 Wed Dec 6 2005 18:30 - 18:40 (00:09)
username2 pts/4 110.33.11.18 Tue Apr 20 2009 8:30 - 9:30 (01:00)
username3 pts/4 10.32.11.18 Mon Jun 12 2008 1:30 - 2:40 (01:10)
username4 pts/4 110.33.12.19 Sat Oct 10 2001 00:12 - 00:13 (00:01)
...

View 4 Replies View Related

General :: Script To Display Modified Date&time Of Files?

May 31, 2010

I am using the following script to creates list of accessed files.I like to add modified date and time of accessed files in the output.

For this what needs to be added in the below script??

#!/bin/bash
#
# creates list of accessed files
#
set $(date)
find /hdc160GB/programmers/projects -cmin -1440 > /hdc160GB/programmers/data/fileschanged/alert_$6-$2-$3.txt

View 7 Replies View Related

General :: LaTeX - Document Details (Author / Date) Will Not Display

Aug 16, 2010

The following are the two tex input files written in vi and compiled with pdflatex. In the first case the document details (author, date etc) are displayed as desired but are omitted in the second case. The only difference is the use of maketitle.

Case 1:
documentclass{article}
author{Name}
date{}
itle{Title}
Begin{document}
maketitle
Text to be inputted
end{document}

Case 2:
documentclass{article}
author{Name}
date{}
itle{Title}
Begin{document}
Text to be inputted
end{document}

View 2 Replies View Related

General :: KMail's Message List - Change Message List Display?

Jul 20, 2009

KMail 1.11.4, KDE 4.2.4: I'm migrating from WinXP to Mandriva, and installed KMail at the weekend. Works fine, but I have a niggle - the message list displays headers grouped by month order. I'd like the option of having a simple list (no groups), and suspect that it could be done - but I haven't been able to find out how. I've checked in the Handbook without success, and a search in LQ hasn't turned up anything yet.Any suggestions gratefully received. If this isn't the right place for a KMail query,

View 1 Replies View Related

General :: Find Threads And Posts Sorted With The Latest First?

Jan 3, 2011

How do you find your threads and posts sorted with the latest first?

View 1 Replies View Related

Fedora :: Repository List And List Of Installed Applications?

Feb 17, 2010

I understand there is a file that stores the repositories' information, but I can't find it!Is there a way I can create a list of what applications have been installed?The idea is that if I am running a backup, finding a way to save the repository list and applications installed so if I am upgrading, or fixing a borked system by re-installing Fedora, I could copy the repo list back, and run the applications list like ode:yum install <cat apps.txt?> and get all of the applications I've installed via Yum without having to remember them all?Is there anything else, outside of /home, I should look at backing up? SELinux settings?

View 6 Replies View Related

General :: Listing Files Recursively, Sorted By Time, Limited Head?

Mar 24, 2011

I'm trying to make a shell script that will list the 50 newest files in a directory with several subdirectories in. I've been trying with the find-command with no luck and now I've figured I should probably use ls. The problem is when I do "ls -lRt | head -50" it will do 1 directory at the time. It will not first make the full list and then sort it. This will display all items in first directory, sorted, then the newest directory will be sorted and displayed. So I figured I have to sort the whole process of ls before I limit the head. So this is where I am at now: ls -lRt | sort <something clever here> | head -50

Only doing a "|sort|" will sort it by name if I understand it right and I don't know how to solve it. Here's also my first attempt if that is of any interrest or help, this was limited by the change status time of files (so some lists got very large). These lists dit not get sorted by time and I could not find any way to do so.find $ftpDir -ctime $time -type f -print > $ftpFileLsAny help on this would be appreciated since I'm sort of stuck now. After reading manuals for all the options I can think of and still there's just a big blur in my head..

View 12 Replies View Related

General :: Get List Of Dependencies Of Non-installed RPM Package?

Jun 8, 2011

apt-cache show <package> shows also it's dependencies.yum info <package> does not show dependencies, but it obviously know them.How to ask yum for dependencies of specified package?

View 1 Replies View Related

General :: Way To List CLI Applications That Are Installed By User

Jun 10, 2011

I have installed a lot of CLI applications and it would be usefull if I had another one of these that lists and organizes ;in different ways ,what has been installed without a GUI. I tried this (rpm -qa | less) and it was lack luster and enormous. Is there a GUI or a CLI application that will list User installed CLI application and allows ways to list them , alphabetically or otherwise etc?

View 2 Replies View Related

General :: Capture A List Of All Installed Commands?

Jan 30, 2010

if I open a terminal and hit [TAB] [TAB] it will display "Display all 2583 possibilities? (y or n) ". If I press y is there a way to capture the output and write it to a file? Not like it is a command so I can't just use a redirect to a file? If not I guess I could just do an ls on all locations of $PATH and capture that to a file.

View 7 Replies View Related

General :: List Of Softwares Installed Using Tar (from Source)?

Dec 11, 2010

If i am installing softwares through rpm, i can later query to see which softwares are installed on my system (using rpm). But if i have installed any softwares from source (using tar, /.configure methodhow can i list those softwares to see which one are installed ?

View 11 Replies View Related

Ubuntu :: List Files By Creation Date?

Aug 19, 2010

I'm looking for a terminal command that gives me the latest created folder in a directory tree.

Code:

ls -lR --sort=time --reverse

this i almost good, but a) it gives me files (rather than folders only), b) it sorts the files by folder (rather than just giving me a plain list of everything) and c) it takes way to long.

what i want:

Code:

2010-08-01 ./path/to/folder/a
2010-08-03 ./path/to/folder/b
2010-08-06 ./another/folder/c

[code]....

View 9 Replies View Related

General :: List Installed Packages In Debian From A File?

Jun 25, 2010

I have a system that will not boot as /usr has been destroyed and I would like to get a list of installed packages before re-installing. I know that it's possible to get this using dpkg or apt, but I cannot run those.

Where in the filesystem is this information stored and what's the best way to get a list of installed apps from the files?

View 2 Replies View Related

General :: Check The List Of Devices Installed Using Terminal?

May 21, 2011

I want to know that is there any command by which i can check which type of hardware devices are installed in my Linux box like SVGA,Sound Card,LAN Card.

View 4 Replies View Related

General :: Shell Commands To Display All Applications Installed

Aug 5, 2010

Ares there any shell commands to display all applications installed in my linux machine,?

View 7 Replies View Related

General :: Use Date With Touch To Create New File With Date Based Name?

Mar 12, 2010

I am using CRON to create a new, blank file, every minute, in a specific location on my web server. After web searching, and reading man pages, I get the impression that the following command is supposed to work:touch /home/mydomain/var/folder/attachments/`date +%H%M`.txtThis should give me a new file with a file name that is the current hour and minute.However, when executed, the CRON mailer reports:touch /home/mydomain/var/folder/attachments/`date +/bin/sh: -c: line 0: unexpected EOF while looking for matching /bin/sh: -c: line 1: syntax error: unexpected end of fileSo, it looks like shell is seeing the plus (+) sign as an EOFObviously, nothing get created.What would be the easiest, single line command to create an empty file, at a given location, with a time based file name

View 5 Replies View Related

Ubuntu :: Date And Time / Calendar Window Out Of Display

Nov 16, 2010

I'm using ubuntu Maverick on a Dell 1545 and I'm pretty much a newbie to ubuntu. Most of the things have been fine so far, I just plugged it into a proxyless internet connection and adjusted my location for time zone (I've been using a porxy server previously for internet which didn't allow changes in location and time zone work) and since then that calendar has moved out of the scope on the top right corner of my screen and I'm unable to move it.

View 1 Replies View Related

General :: Julian Date Converter To Gregorian Date

Apr 22, 2010

Anyone have a ksh solution to convert julian date to gregorian date?

View 6 Replies View Related

Server :: Find The List Of File Being Tagged By User Jack Starting From A Given Date?

Mar 27, 2011

I need to find the list of file being tagged by user jack starting from a given date.Eg:Tag Name:lcc_dev_p1User: jackDate: >= 2011-03-02can some done tell me what is the cvs command for this.Should the below command give the correct outputcvs log -R -S -N -rlcc_dev_p1 -d">=2011-03-13" -wjack > /tmp/output.txt

View 1 Replies View Related

Ubuntu :: Karmic - Date/Time Display On Top Of Screen Panel

Feb 12, 2010

I have just updated to karmic. For some odd reason, the time/date indicator on the top panel now spreads the data over two lines, rather than placing them side by side. There doesn't seem to be any option in the preferences program to control this.

This means that the panel cannot be reduced below a two line minimum. Not only have I lost desktop space, but the panel icons have expanded to suit the new thicker panel.

View 1 Replies View Related

General :: CentOS - Safe To Remove The First Kernel In The Installed List To Save Having Two Kernels Being Updated Everytime?

May 8, 2011

When I run yum list installed command the output shows two kernels:

[Code].....

Would it therefore be safe to remove the first kernel in the installed list to save having two kernels being updated everytime I run yum update? Or is the PAE kernel dependant upon the original?

View 6 Replies View Related

Fedora :: Save "list Of Installed Packages" In A List And Restore?

Mar 28, 2010

how do I save installed packages in a list and restore ...

rpm -qa > installed-software.log
yum install $(cat installed-software.log)
sorting rpm packages by size
rpm -qa --qf '%{SIZE} %{NAME}
' | sort -n

View 4 Replies View Related

Ubuntu :: Conky Date Display: Automatically Change Days Of Week

Jan 2, 2011

I'd like to tweak my Conky so it automatically displays the days of the week correctly. So for example, if TODAY were Tuesday, it would look like this:

Tuesday

Wednesday

Thursday

Friday

[etc.]

And then tomorrow, *automatically*, it would look like this:

Wednesday

Thursday

Friday

[etc.]

I know I can get it to display *today's* date like this:

${time %A}

But how do I get it to display tomorrow's date?

View 1 Replies View Related

Ubuntu :: Find Programs Installed On Specific Date

Sep 4, 2010

Is it possible to find programs that were installed on a specific date or within a specific date range? If so, how?

View 6 Replies View Related

General :: Find Out A List Of RPMs Installed Using "force" Option?

Apr 12, 2011

I'm just wondering if there is an easy way I can generate a list of RPM packages which have been forcefully installed on the system (got a couple of servers transitioned).

All servers are RedHat-5 if that matters.

View 1 Replies View Related

Ubuntu :: Configuring Terminator And DevilsPie Sorted

Jun 13, 2010

I'm trying (well aiming) to customize my desktop so that on login Terminator is on workspace 3 (split 3 ways and running lynx, irssi and top. I'm using gdevilspie to configure it but I understand and can use the normal config files. When I use gdevilspie to make a terminal background it works but when i try to do stuff with terminator it doesn't.

Here's my terminator config so far:
Code:
( if
( begin
( is ( window_class ) "terminator" )
)
( begin
( undecorate )
( spawn_sync "top" )
( set_workspace 3 )
( maximize_horizontally )
( center )
( below )
( set_viewport 3 )
( println "match" )
) )

Once I do get devilspie sorted I also want to make Terminator automatically split and run the correct commands.

View 2 Replies View Related

Ubuntu :: How To Display Desktop In List View

Jun 8, 2011

Is there any way I can get my desktop to display the items on it in list view? I've spent a good part of a day doing google searches and reading thread after thread on this subject and I've tried all kinds of suggested ways of accomplishing it but as of yet I haven't had any success. I just switched to ubuntu from windows and I was able to do this in windows with a program that loaded at startup. Seeing as how linux is infinitely more customizable than windows I would assume this would be easy to do but I'm having no luck. Here's what my desktop looked like in windows, I'd like to make the icons display the same in ubuntu: [URL]

View 1 Replies View Related

Programming :: Awk - Display From The List Of Files Given As Parameters

Mar 12, 2011

I have to display from the list of files given as parameters the name of the file with the largest number of words and their number.(with AWK)

View 2 Replies View Related







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