Archive

Archive for July, 2010

Mobile Device User Agent List Ready for Download

July 28th, 2010 No comments

I am not sure where you can use this list, I just would like to share it with you. I think you might need it developing WAP sites. Here is the link: Mobile User Agent List

Categories: Uncategorized Tags:

How to Delete Files Older Than a Week in a Folder in Linux

July 28th, 2010 No comments

Sometimes you need to delete some archive files, that are older than the specified date. It’s simple enough in Linux. Here is the command that allows you to do this:

find /path/to/folder/* -mtime +7 -exec rm {} \;

Please, note, that you need to keep spaces between command arguments.

This command is suitable for folders that contain a large number of files. In order to force file deletion you need to add -f key.

find /path/to/folder/* -mtime +7 -exec rm -f {} \;

If you need to move these files instead of deletion, here is the solution:

find /path/to/folder/* -mtime +7 -exec mv {} /path/test-mv-to/ \;

Hope this helps you to deal with archive files and big folders.

Categories: Linux Tricks Tags:

How to Install Operating System on Asus EEE 901

July 6th, 2010 No comments

As I have told about before, my second laptop is Asus EEE 901. It came with Windows pre-installed and it was very slow when I have unpacked it. There was almost no free space on C, and there were some program installed, and finally my decision to get rid of this stuff made me to try reinstalling operating system on this netbook.

Let me mention that I don’t have a USB DVD-ROM drive, that’s why I had to deal with flash disks. I have tried to create some bootable flash drives, and let me share the software that has a simple and user-friendly interface, and, of course, it’s free. It is called WinSetupFromUSB and you can download it using the link above. It allows you to create a bootable installation flash drive to install almost any version of Windows you like.

I have tries some flash drives, but none of them allowed me to boot. I have tried all possible BIOS settings, but result was the same each time: error message telling me “Reboot and select proper boot device”.

The solution was very simple, yet not documented. If you need to boot your EEE 901 netbook from a flash drive, you have to try hitting and holding-down the [Esc] key when the ASUS splash screen appears during the boot-up process. It will then show you the boot menu. I can’t understand the reason, and there are no official docs from ASUS (I haven’t found any of them).

I would like to say a special thank you to guy from Eeeuser forum, their solution really helped me to find out the simplest way to boot from my flash drive.

Categories: Microsoft Windows Tags: