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


ADVERTISEMENT

Ubuntu Multimedia :: Jack And "Muse Failed To Find A Jack Audio Server"

Jun 27, 2011

I've got an Acer Aspire 5101 with Natty on it and everything works so far, but I can't start Muse. It says: "Muse failed to find a jack audio server". At the bottom it also says: "...if Jack was started check if it was started as the same user as Muse". This might be the issue. But how can I check this? BTW: Jackd has been installed and I am a Member of the Audio Group.

I am new to Ubuntu and don't know how to fix this. I got this Notebook for free, because my Brother wanted to dispose it as it didn't worked properly after he reinstalled xp. Only the dvd-drive is broken, the rest is in really good condition for such an old thing. After a lot of trial and error I could finally install Natty from USB.

View 1 Replies View Related

Ubuntu Multimedia :: Starting Jack - Bad File Descriptor

Dec 10, 2010

I am having problems starting jack everytime I try to start it either says bad file descriptor a bunch times or it wont connect to server as client sometime. Other times It just say sorry cannot start jack.

View 1 Replies View Related

Ubuntu Multimedia :: Via Vt1708s Azalia No Sound When Starting Jack Sound Server?

Jun 7, 2011

After installing I was not able to get many of the audio programmes to work. After some reading, I realised that this was probably due to jack not starting.

I was unable to get jack to start normally but have been able to get it started with the playback only option selected. Programmes that use jack now work, however there is no sound once jack has been started. The sound does work in other programs when jack is not started. Strangely, I only have to open qjackctl for the sound to stop, and jack is not even started. Initially I thought these problems were due to my sound card not being supported, but I believe that alsa support was added for the via 1708 codec at some point. I found that support had been added in a document showing the changes between alsa versions; however I cannot find the exact model listed as a supported sound card on the alsa site.

I believe that altering jack settings could fix the problem, as i have been able to get audio to work in hydrogen by selecting plughw:0 but there is still no sound in other programs. I have tried altering many other settings but to no avail, however I do not really understand the meaning of the settings that i am adjusting.

Does anyone know what settings to adjust or know something else that might fix this problem so that sound works once jack has been started?

Also, would programmes that use jack such as audacity, hydrogen, and ardour work with pulseaudio as the main sound server if I were to install normal ubuntu - it might be worth seeing if my soundcard works with the puleaudio sound server

if this helps, here is the error message received when jack does not start when the normal duplex option is selected.

21:24:04.867 Patchbay deactivated.
21:24:04.868 Statistics reset.
21:24:04.886 ALSA connection change.
Cannot connect to server socket err = Connection refused

[Code].....

also, when i open alsamixer in the terminal for some reason the headphone part is greyed out, even when the sound is working before qjackctl is opened.

View 4 Replies View Related

Programming :: Script To Find Out Modified Date For Particular File

Jul 9, 2010

I am new to Scripting. I am trying to find out particular file is modified in last one hour or not in script and then if that file is modified in last one hour i need to copy that file to another directory.Can any one please provide me how to check the file is modified in one hour or not?

View 3 Replies View Related

Ubuntu Multimedia :: Jack Not Starting In KXstudio

Apr 24, 2011

I just installed KXstudio and I got everything else working on my system but I can't seem to get jack to start. When I check the message screen it doesn't plainly tell me where things are going wrong. The message box reads...
Code:
22:10:53.564 Patchbay deactivated.
22:10:53.568 Statistics reset.
22:10:53.607 ALSA connection change.
22:10:53.614 D-BUS: Service is available (org.jackaudio.service aka jackdbus).
Cannot connect to server socket err = No such file or directory
Cannot connect to server socket .....
22:10:58.968 Could not connect to JACK server as client. - Overall operation failed. - Unable to connect to server. Please check the messages window for more info.
Cannot connect to server socket err = No such file or directory
Cannot connect to server socket
Jack server is not running or cannot be started.

View 2 Replies View Related

Programming :: Keep Original Mod Date Of A File And 'date' It Back To Same File?

Jul 12, 2010

I would really like to preserve a file's original modified date and pass it back to the file as the same attribute after a script has worked on it. I get a lot of JPEG files from different places on the Net which I either turn around and upload or burn to disk, and having the "original" date of either download or last mod in a graphics app would be for me, in the long run, a lot more helpful when deciding, for instance, which files to "recycle" or pass on backing up more than once.I've tried doing this on my own every now and then. Where I run into problems is that it appears "stat" and "date" use different formats for date information, and I can't seem to puzzle out how to "translate" one to the other satisfactorily for the latter command.

Just to give an example:
stat foo.jpg |grep Modify gives me
Modify: 2010-07-12 06:28:56.890625000 -0400

Passing that string as-is to date foo.jpg, I get the errordate: unknown option -- 0 and the usual semi-courteous suggestion to Try 'date --help' for more information.Somehow my TexInfo database got screwed up somewhere along the line and info dategives me the short article on date input formats, not the full documentation for the command

View 4 Replies View Related

General :: Find A File And Just List The Found Files?

Aug 7, 2009

I use find / -name myfile to search files. But it will print out a very long list such as follow:

Code:

...
find: /var/empty/sshd: Permission denied
find: /etc/audit: Permission denied
find: /etc/httpd/conf/ssl.crl: Permission denied
find: /etc/httpd/conf/ssl.crt: Permission denied

[code]....

View 4 Replies View Related

CentOS 5 :: Get File Date On Other Server?

Aug 16, 2011

Is it possible to get the last modified date for one file on a remote server from command line?

View 4 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

General :: Sending Find Results To File - List Too Long

Aug 12, 2010

I'm trying to do a
find /photos/* -type f -mtime +365
to find all my pictures that are over a year old, but I keep getting argument list too long. How can I view what all the results are, even if it just dumps it to a file that I have to open?

View 12 Replies View Related

Red Hat / Fedora :: Fedora Shell Scripting \ "Find In Curent Folder For Files, And It Copy First File He Find With Name Gived By User?

May 18, 2011

shell scripting in Fedora14I want a script"Find in curent folder for files, and it copy first file he find with name gived by user, if name already exist then echo error message and finish"command usage " bash scriptname copyASname"

smthing like Code: #!/bin/bash
for files in /home/user/*
do

[code]....

View 1 Replies View Related

Server :: Apache Server In No Starting / Not Strating On Default Configuration File?

Mar 21, 2011

I have install Mandriva 2009 and install apache server but its not strating on default configuration file . What I should do for starting apache . i have tried /etc/init.d/httpd start but apache is not running .

View 1 Replies View Related

General :: Using Find With File Name And Mtime To Remove Files Gets Arg List Too Long Error?

Dec 25, 2009

I need to delete all *.trc files that are older than 30 days and I am getting a "Argument list too long" error. There are other files that should not be deleted which is why I am using the "*.trc" and newer files need to be kept as well. I have seen other postings but they do not cover both of the conditions. Below are 2 of the many attempts at doing this but I cannot get this to work.

find *.trc -mtime +31 -print| xargs rm -f {}
find *.trc -mtime +31 -print -exec rm -f {} ;

View 3 Replies View Related

General :: Load The Local .csv File Into Mysql Server The Date Format Varies?

May 25, 2010

When i load the local .csv file into mysql server the date format varies.Its mis matching.How to solve and match this.

View 1 Replies View Related

Server :: Empty PID File While Starting Script?

Aug 16, 2010

I'm trying to write shell script to use etc/init.d In fact, my application has written by java and I have made the fat.jar (etest.jar)file as executable one and after I wrote the small script to run it background (etestruner.sh) that is,

Code:

#!/bin/sh
java -jar /root/les/run/etest.jar >/opt/etstout.out 2>&1 &

And after I wrote the service script That is ,

Code:

#!/bin/sh
#
# Startup script for epict
#
# chkconfig: 2345 25 88

[code]....

I tried with google to solve this issue but did not get any result.

View 3 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 :: 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 View Related

Ubuntu :: Accidentally Moved Files / User - Can't Find Any Original File

Dec 31, 2010

Initially, I was trying to get around a Nautilus log in error. Using this, I was able to log in, but I entered what seems to be a perfectly clean version of Ubuntu...with no access to my files. [URL].... Now, I can't seem to find any of my original files. Some of the commands I entered in the terminal included:

[code]...

I'm afraid that I may have deleted the files, or have moved them to another user or someplace on the drive I can't see.

View 6 Replies View Related

General :: Find Command When Loggin As A Normal User And Search For A File Passwd Under?

Dec 25, 2010

when loggin as a normal user and search for a file passwd under /etc. i get few errors with permission denied.how to ignore this permission denied errors.

csh hostname 109 % find . -name passwd
find: ./lvm/backup: Permission denied
find: ./lvm/archive: Permission denied

[code]....

View 4 Replies View Related

Ubuntu :: Find Out The Last "up-to-date" Date For "Update Manager"?

Jul 31, 2010

When I clall the "update manager" it tells me if my system is up-to-date or new updates are available. Lets assume I update my system now (I disabled automatic updates).

Then (in a couple of days or weeks) I start the Update Manager again and it tells me again that new updates available. How can I find out now when the last time was when my system was "up-to-date" (=when a complete, successful update took place)?

Is there soemwhere an entry which shows this date?

View 1 Replies View Related

Ubuntu Multimedia :: Digikam - Renaming On Import - "Create Date" Versus "File Modification Date"

Jan 24, 2011

I just switched from a basic digital camera to a more advanced one that stores both Jpeg and Raw (.Nef - it's a Nikon) files for me.When importing files in Digikam, I rename the files so that they start with Date and Time. Example: 20110121-223748.JPG for a photo taken on Jan 21st 2011 at 22:37:48.I was a bit surprised when importing both the JPEG and the Raw version of the same photo, that the filename is different by a few seconds (no constant offset, sometimes they are the same):

20110121-223748.JPG
20110121-223750.NEF

I did some "research" by looking at the exif data of both files (using "exiftool 20110121-223748.JPG" from the command line). Here is what I got back

(amongst other data):20110121-223748.JPG
File Modification Date/Time : 2011:01:21 22:37:48+01:00
Modify Date : 2011:01:21 22:37:48
Date/Time Original : 2011:01:21 22:37:48

[code]....

So it seems that Digikam is using the "File Modification Date/Time" (different in the Jpeg's and Raw's of my camera) rather than the "Create Date" (the same for both Jpeg and Raw). (The few seconds difference in "File Modification Date/Time" between the two versions of the same photo is probably due to the time that my camera needs to write away the data on the SD memory card. I guess.) Is there a way to have Digikam use the Create Date? (Or the Date/Time Original?)

PS: I'm on Ubuntu 10.04LTS, using DigiKam 1.2.0

View 1 Replies View Related

Server :: Log The Output Of "date" To A Particular File On Local System And NTP

Apr 6, 2011

Let's suppose there are "n" number of servers in a Linux cluster / network environment. We want to make sure that "date" on all those servers are in sync. How can we log the output of "date" to a particular file (log file, let's name it /tmp/date.log on our local system from where we are executing our command or script) run on every server one by one so that we can have a log of all the servers and their corresponding date vales in the following format:

[Code]....

View 5 Replies View Related

Networking :: VLAN Tagged And Untagged Routing?

Sep 13, 2010

I'm using my linux system (Linux 2.6.31.12-1.0.2) as a IPTV media center (XBMC). My interface configuration is

Code: eth0 Link encap:Ethernet HWaddr 00:01:2e:2b:12:6e
inet addr:192.168.1.6 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::201:2eff:fe2b:126e/64 Scope:Link

[code]...

View 2 Replies View Related

CentOS 5 Server :: Configure ISO's For PXE Booting - Pick An Iso From The List It Says "Could Not Find Ramdisk Image"?

May 3, 2011

I have a fresh install of COS5.6 installed a test laptop. I have following instructions to set up the PXE server based on the following: http:[url]......The base PXE installation seems to work fine (The menu labeled CentOS 5.6 works fine ). The whole purpose of this was to be able to boot iso's like Hirens and Imaging software ISO's.The issue is that whenever i try to pick an iso from the list it just says "Could not find ramdisk image:" [path to iso][path to iso] being either of the two iso i had set up to test this.

I would like to think that i made a typo but i can find one. The files i used are from the source of syslinux v4.0.4.The following information should be pertinent
Contents of /tftpboot/pxelinux.0/default[code].....

I have a limited experice with linux in an enterprise environment and looking for any direction as to what to do about this.

View 3 Replies View Related

Programming :: How To Update Working Copy From Tagged Release?

Jan 8, 2010

I'm pretty new subversion, and have a basic question which I haven't found the answer to:Say that I on machine A modify the working copy of my code, create a tag "release-1.0", and commit it, how can I on machine B point the working copy to the tagged code? For example, say my "code" is actually config files for Apache, and I wan't apache running on machine B to update it's config files based on the files found in tag "release-1.0", how is this done?

I'm sure the solution is very easy, but I just can wrap my head around it.

View 2 Replies View Related

General :: How To Find Installation Date Of OS?

Oct 22, 2010

How would i find the installation date of my OS.

View 5 Replies View Related

General :: Set User Account Expire Date?

Mar 17, 2010

In SolarisQuote:#usermod -e 'September 18, 2010' usernameIs this correct format to set expire the user account after 180 days?Where is this information update?

View 4 Replies View Related

General :: Find Files In Date Range?

May 31, 2010

ls -l /tmp/empty_file*
-rw-r--r-- 1 root root 0 2010-05-30 08:00 /tmp/empty_file
-rw-r--r-- 1 root root 0 2010-05-30 12:00 /tmp/empty_file1

This looks good, the files expected to be seen are output: find /usr ( -newer /tmp/empty_file -a ! -newer /tmp/empty_file1 ) -print

But this shows me files that should not be output and likewise when I replace ls with tar it is tarring a whole bunch of stuff I do not want: find /usr ( -newer /tmp/empty_file -a ! -newer /tmp/empty_file1 ) -exec ls -l {} ;

In the end I would like to replace the "ls" with "tar cvvfp some.tar {} ;", but can't figure out what is going wrong here.

View 2 Replies View Related

General :: Find And Sort Results By Date Modified

Jun 7, 2011

so I was wondering how I could do a simple find which would order the results by most recently modified. Here is the current fine I am using. (I am doing a shell escape in php, so that is the reasoning for the variables. find '$dir' -name '$str'* -print | head -10

How could I have this order the search by most recently modified. (Note I do not want it to sort 'after' the search, but rather find the results based on what was most recently modified)

View 4 Replies View Related







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