Dream Scourge

Author



.

UR5 for Exchange 2010 SP1 is now released. It contains several bug fixes. Here is the description Exchange 2010 SP1 UR5 – 2582113.
Problem with PDF attachment from MAC clients should finally be resolved. Also the error message "There are no items to show in this view." in Outlook 2010 is resolved.

Here is the download link

The usual warning for consumer running forefront security for Exchange is to disable forefront with "fscutility /disable" before applying rollup and afterwards enabled forefront again with "fscutility /enable"
How to Apply Exchange Service Packs and Rollups to a Computer that is Running FSE

Check it out:a new message has arrived

Dream Scourge

Tagged with: 2010ExchangepackreleasedRollupServerserviceupdate 

.

All of my color cartridges are empty, but my black one is full. Do I have to have the colors? It seems rediculous that I would need to replace my color cartridges just to print in black and white.

Best answer:

Answer by Deanna
if you just want a black and white printer sell the one printer that you have take the money and buy a black and white print you would save a lot of money use Ebay or just refill color cartridge and leave it

What do you reflect? Answer not more than!

Dream Scourge

Tagged with: blackcartridges.colorexpendedprintPrinterreplacewhite... 

.
do not remember where I saved pdf and text files under Linux. I have downloaded files from the Internet a few months ago. How do I find my pdf or text files?

You need to use the find command. Each file has three time stamps, which record the last time that certain operations were performed on the file:

[a] access (read the file’s contents) – atime

[b] exchange the status (modify the file or its attributes) – ctime

[c] modify (exchange the file’s contents) – mtime

You can search for files whose time stamps are within a certain age range, or equate them to other time stamps.

You can use -mtime option. It income list of file if the file was last accessed N*24 hours ago. For example to find file in last 2 months (60 days) you need to use -mtime +60 option.

  • -mtime +60 means you are looking for a file modified 60 days ago.
  • -mtime -60 means less than 60 days.
  • -mtime 60 If you skip + or – it means exactly 60 days.

So to find text files that were last modified 60 days ago, use

$ find /home/you -iname "*.txt" -mtime -60 -print

Show make pleased of file on screen that were last modified 60 days ago, use

$ find /home/you -iname "*.txt" -mtime -60 -exec cat {} \;

Count whole number of files by wc command

$ find /home/you -iname "*.txt" -mtime -60 | wc -l

You can also use access time to find out pdf files. Following command will print the list of all pdf file that were accessed in last 60 days:

$ find /home/you -iname "*.pdf" -atime -60 -type -f

List all mp3s that were accessed exactly 10 days ago:

$ find /home/you -iname "*.mp3" -atime 10 -type -f

There is also an option called -daystart. It measure times from the commencement of now rather than from 24 hours ago. So, to list the all mp3s in your home directory that were accessed yesterday, type the command

$ find /home/you -iname "*.mp3" -daystart -type f -mtime 1

Where,

  • -type f – Only search for files and not directories

-daystart option

The -daystart option is used to measure time from the commencement of the current day instead of 24 hours ago. Find out all perl (*.pl) file modified yesterday, enter:

<span style="color: rgb(194, 12, 185); font-weight: bold;">find</span> /nas/projects/mgmt/scripts/<span style="color: rgb(194, 12, 185); font-weight: bold;">perl</span> -mtime <span style="color: rgb(0, 0, 0);">1</span> -daystart -iname <span style="color: rgb(255, 0, 0);">"*.pl"</span>

You can also list perl files that were modified 8-10 days ago, enter:

To list all of the files in your home directory tree that were modified from two to four days ago, type:

<span style="color: rgb(194, 12, 185); font-weight: bold;">find</span> /nas/projects/mgmt/scripts/<span style="color: rgb(194, 12, 185); font-weight: bold;">perl</span> -mtime <span style="color: rgb(0, 0, 0);">8</span> -mtime <span style="color: rgb(0, 0, 0);">-10</span> -daystart -iname <span style="color: rgb(255, 0, 0);">"*.pl"</span>

-newer option

To find files in the /nas/images directory tree that are newer than the file /tmp/foo file, enter:

<span style="color: rgb(194, 12, 185); font-weight: bold;">find</span> /etc -newer /tmp/foo

You can use the touch command to set date timestamp you want to search for, and then use -newer option as follows

<span style="color: rgb(194, 12, 185); font-weight: bold;">touch</span> --<span style="color: rgb(194, 12, 185); font-weight: bold;">date</span> <span style="color: rgb(255, 0, 0);">"2010-01-05"</span> /tmp/foo<br /><span style="color: rgb(128, 128, 128); font-style: italic;"># Find files newer than <span style="color: rgb(0, 0, 0);">2010</span>/Jan/<span style="color: rgb(0, 0, 0);">05</span>, <span style="color: rgb(0, 0, 0); font-weight: bold;">in</span> /data/images</span><br /><span style="color: rgb(194, 12, 185); font-weight: bold;">find</span> /data/images -newer /tmp/foo<br /> 

Read the man page of find command for more information:

man find

REFERENCES

http://www.cyberciti.biz/faq/howto-result-files-by-date/

Check it out:Command Center SkyHi

Dream Scourge

Tagged with: accessdatefilesfindLinuxModificationtimeUNIX 

How many megapixels would a good laptop webcam have?


.

I just want to know how many megapixels laptop webcams usually have. Is 1.3 megapixels excellent?

Dream Scourge

Tagged with: goodlaptopmanymegapixelswebcamwould 

Answers Rating

  • LowCostGamingLaptop: The XPS is my choice. Both should do what you want but i prefer the XPS. I love...  Thumb up 0
  • J: DELL XPS  Thumb up 0
  • Sean: I would deff say a dell xps because the manufacturer is better than lenovo. Although Lenovo is...  Thumb up 0
  • Nick: i would go with a lenovo. they are very powerful and you will have no problems with compiling...  Thumb up 0
  • mohin: Check connection configuration. If you want to learn – how to install Linux in easy...  Thumb up 0
© 2010 Computersplace.net