If you wnat to use UNIX commands in WIN XP/VISTA/WIN7 click HERE

To read this information you will need to fill one of the survey sites.
ATTENTION: You must use your real and correct data on this survey.


If you wnat to use UNIX commands in WIN XP/VISTA/WIN7 click HERE

miercuri, 17 februarie 2010

Ce este Windows 7?

Un PC simplificat.

Windows 7 este simplu, rapid și antrenant. Modalităţi mai bune de a găsi şi a gestiona fişierele, cum ar fi Listele rapide şi examinări îmbunătăţite ale barei de activităţi vă ajută să parcurgeţi mai repede activităţile zilnice. Windows 7 este proiectat pentru o performanţă mai rapidă şi mai fiabilă, astfel încât computerul dvs. funcţionează aşa cum doriţi. Cu ajutorul suportului pe 64 de biţi, este posibil să profitaţi la maximum de cele mai noi computere puternice. Caracteristici grozave, cum ar fi Grup de domiciliu, Windows Media Center şi Windows Touch fac posibile lucruri noi.

Faceți cunoștință cu Windows 7 și vedeți cum poate simplifica acesta cam tot ceea ce faceți pe computer.

Sursa: http://windows.microsoft.com

What is Ubuntu?

 Ubuntu is a community developed operating system that is perfect for laptops, desktops and servers. Whether you use it at home, at school or at work Ubuntu contains all the applications you'll ever need, from word processing and email applications, to web server software and programming tools.

Ubuntu is and always will be free of charge. You do not pay any licensing fees. You can download, use and share Ubuntu with your friends, family, school or business for absolutely nothing.

We issue a new desktop and server release every six months. That means you'll always have the latest and greatest applications that the open source world has to offer.

Ubuntu is designed with security in mind. You get free security updates for at least 18 months on the desktop and server. With the Long Term Support (LTS) version you get three years support on the desktop, and five years on the server. There is no extra fee for the LTS version, we make our very best work available to everyone on the same free terms. Upgrades to new versions of Ubuntu are and always will be free of charge.

Everything you need comes on one CD, providing a complete working environment. Additional software is available online.

The graphical installer enables you to get up and running quickly and easily. A standard installation should take less than 25 minutes.

Once installed your system is immediately ready-to-use. On the desktop you have a full set of productivity, internet, drawing and graphics applications, and games.

On the server you get just what you need to get up and running and nothing you don't.

More about Desktop Edition »

More about Server Edition »

Get Ubuntu now »

View certified hardware »

What does Ubuntu mean?

Ubuntu is an African word meaning 'Humanity to others', or 'I am what I am because of who we all are'. The Ubuntu distribution brings the spirit of Ubuntu to the software world.


Source: http://www.ubuntu.com/

duminică, 14 februarie 2010

Unix Style Tail Command

The tail command, on most Unix-style operating systems, lets you display the last 10 or so lines of a text file. Tail also supports a feature allowing you to display new lines as they appear in the file. This feature of tail is most commonly used for displaying the results of log or debug files, letting you see only the most recent activity of a particular process.

While Windows XP does not normally come with a 'tail' tool, it is available in the Windows 2003 Resource Kit. It is a large download, but besides the 'tail' command, the Windows 2003 Resource Kit also provides tools to remap keys, query the Active Directory, and more. To download and install the Resource Kit:

1. Go to the Microsoft Windows Server 2003 download section at http://www.microsoft.com/windowsserver2003/
downloads/tools/default.mspx
. Or, if that link does not work, visit http://www.microsoft.com/ and search for "Windows 2003". Once there, choose the "Downloads -> Tools" link.

2. Select the link "Windows Server 2003 Resource Kit Tools".

3. Click the "Download" link. Choose to register or not, depending on your choice, and follow the on-screen instructions to download and install the product. The default install directory is "C:\Program Files\Windows Resource Kits\Tools\".

Once the Windows 2003 Resource Kit is installed, you may need to reboot your machine for the directory "C:\Program Files\Windows Resource Kits\Tools\" to be added to your path.

Now that the tail command is available, to see the online help, enter the following DOS command:

tail /?

Here is a command summary:

C:\>tail FILENAME

Display the last ten lines from file FILENAME. For example, to see the last ten activities made by the Windows Update tool, issue these commands:

C:\>c:
C:\>cd \windows
C:\>tail "Windows Update.log"

Other options:

C:\>tail -n FILENAME

Display the last 'n' lines from file FILENAME. For example, view the last 20 lines in the Windows Setup log:

C:\>c:
C:\>cd \windows
C:\>tail -20 setuplog.txt

C:\>tail -f FILENAME

Forces tail to keep accesing FILENAME, displaying new lines as necessary.

To see this feature in action, open up a new file in Notepad, write the word 'hello, world', and save it as c:\test.log. Keep the file open in Notepad. Now, issue the following DOS commands:

C:\>c:
C:\>cd \
C:\>tail -f test.log

You should see the word 'hello, world' in your DOS prompt. Now, go back to Notepad and write the text "Process executed." Save the file. The DOS prompt should now say "Process executed." Thanks to tail -f, whatever you add to the file in Notepad should then appear in your DOS prompt until you terminate the command.


Source: http://malektips.com/xp_dos_0001.html