-
Posts
1376 -
Joined
-
Last visited
-
Days Won
17
Everything posted by ZeroCold
-
--------- on: iti fac eu, contra cost
-
are parola? :D:D am editat... scuze
-
CENTRE DE RECRUTARE: • Fort de Nogent (near Paris) 94120 Fontenay-sous-Bois TEL : 1-48-77-49-68 • La Citadelle 59000 Lille TEL : 3-20-55-40-13 • Quartier Lecourbe Rue D’Ostende 67000 Strasbourg TEL. 3-88-61-53-33 • Quartier Colbert 32BIS, Avenue de la Paix 51000 Reims TEL : 3-26-88-42-50 • Quartier Aboville 86000 Poitiers TEL. 5-49-41-31-36 • Quartier Desgrees-Du-Lou Rue Gambetta 44000 Nantes Armées TEL : 2-40-74-39-32 • Quartier De-Lattre-De-Tassigny 57000 Metz TEL. 3-87-66-57-12 • Caserne Mangin 8, RUE François-Rabelais 66020 Perpignan TEL : 4-68-35-05-38 • Rue du Colonel-Trupel 76038 Rouen Cedex TEL. 2-35-70-68-78 • Caserne Junot 66, Avenue du Drapeau 21000 Dijon TEL. 3-80-73-54-86 • La Malmousque Chemin du Génie 13007 Marseille TEL. 4-91-31-85-10 • Quartier Vienot 13400 Aubagne TEL. 4-42-18-82-57 • 18, Quai de Lesseps 64100 Bayonne TEL. 5-59-50-14-84 • 260, Rue Pelleport 33000 Bordeaux TEL. 5-56-92-99-64 • Quartier Général Frère 69007 LYON TEL. 4-78-58-40-21 • Caserne Filley Rue Sincaire 06300 Nice TEL. 4-93-80-59-06 • Caserne Perignon Avenue Camille Pujol 31000 Toulouse TEL. 5-61-54-21-95
-
N-au tupeu! on: buna ideea sympleboy doar ca mai trebuie retusata ps: Ar trebui facuta o categorie "Raiduri" ca sa nu se mai posteze pe ici pe colo
-
Si asta in negru ii misto: Flickr Photo Download: DSC_0091
-
Eu l-am cenzurat
-
Ceva de genu asta ^ doar ca are semalizari si pana pe spate si ii vopsita rosu + negru. Avea sistem audio sub sea da mi l-au furat (bulangii). ps: misto golf
-
Bomb Them! Description: Download: http://uploading.com/files/1GES5BS6/Bomb%20Them!.rar.html 1st Mass Mailer 4.2 Description: Download: http://uploading.com/files/6SU3NSUT/1st%20Mass%20Mailer%204.2.zip.html 72389 Email Bomber Description: Download: http://uploading.com/files/ZC2HM6E1/72389%20Email%20Bomber.rar.html Email List Description: Download: http://uploading.com/files/6m1faf4d/20.000.000_mail_list.rar/ #Sursa: hackforums.net
-
Alot of Good Toolz February 2010 Download aici. Password: HackerMan
-
Linux Terminal Introduction A beginners introduction to the very powerful linux terminal Welcome, I've noticed a lack of linux articles on this site, so I thought I would post one (although its rather basic, it should definitely help people new to linux). If you are in a windows environment, and still want to try this out for yourself, there is a program called cygwin (Cygwin Information and Installation) which provides a linux-like environment in windows. If you looking to try out linux, there is a very user friendly distribution called ubuntu (Ubuntu Home Page | Ubuntu), which you can run with no changes to your system. Linux is not *all* command line, if anyone who reads this happens to be that oblivious. In fact, the linux GUI's (there are multiple avaliable) can do alot of things the windows one cant. Now, enough introductions and windows ranting You can get to a terminal in linux by pressing ctrl+alt+F1 or by searching through your programs list for something such as "terminal" or "konsole" When you open your terminal, you might be wondering what the first thing you see is supposed to mean: Your's will be different, and its called a prompt. It tells you information about your computer and who and where you are in the system. This is the syntax: USERNAME@HOSTNAME:CURRENTDIR$ You might be thinking: "What kind of directory is ~??". Well, in linux "~" is a shortened way of saying "your home directory". For instance, mine *actually* is: /home/stealth/, but it becomes tiresome to print and read constantly, so they use a much shorter character. ls This is the most common command for me. It's a cut down form of the word LiSt and does exactly what it sounds like, it lists the contents of the current directory. You should see exactly whats in your home directory. Now, this is a command that takes "arguements". You can give it sub commands to get exactly what you want. ls -a The - means that i want to start an arguement, and the "a" is the specific arguement, in this program, "a" lists all the directories. By default, ls hides the hidden directories (ones that start with a "."). cd Change Directory. This command allows you to manuver through your filesystem. / is the root directory in linux. Linux does not use C:/ or D:/ *drives*, but instead it uses mountpoints. Each drive will be *mounted* under a position in the filesystem (most likely /media/). So, if a device, called "device", was plugged in and mounted, and you wanted to go to that directory via command line, you would "cd /media/device/". Then, your terminal might look something like this: Pretty cool, huh? This is not even the tip of the iceburg. The linux console controls *everything*. Lets say you wanted to run a program, you can run that program just by typing its name: However, what if you dont know the right program command? Okay, bummer. So what can we do? Bash (the terminal) comes with something called tab-completion. Basically, if you dont know the whole name of a file, command, program, etc (or are just to lazy to finish typing), pressing tab will let bash finish it for you. There was more than one possible outcome that bash could have entered for me, so rather than guessing one, it told me the possible outcomes. You might not have open movie editor installed on your system, so that particular scenerio might have gone differently for you. Another great command is "cat". Cat prints the output of a file. Now, if I opened /media/device/fire4.txt, I would see that the file contained "You idiot your spelled file4.txt wrong!". Another great command is "nano". nano is a text editor that allows you to edit files, or create them. Once in nano, it takes up your full screen, and you can get out by pressing ctrl+x, then pressing y or n to save or not save your file (if you made any changes). Also, you can delete files with the rm command. The -r will delete things recursively, meaning that it will delete things in sub-directories (useful for deleting directories which aren't empty), so be careful. Like I said, the terminal can be very powerful (which is why I wont explain the su or sudo command here). One last command I will teach you is "man". man stands for MANual. Typing "man commandhere" will bring up the manual page for that command. The manuals are extremely detailed and teach you everything you need to know about that command. Some commands I recommend looking into are: mount, sudo, su, umount, ssh, the program installer for your distro, touch, and mkdir.
-
Interesting UNIX Commands Ever since renting a UNIX handbook a while back ive discovered lots of the more complex operations and commands of UNIX, besides the mundane, and ordinary asks of running an maintaining an eggdrop. I therefore went through my UNIX Handbook picking out some of the less mentioned, useful comands, and here they are: mailx - This program will send an email to someone just like that. The syntax is 'mailx user@host' you then enter your message. mesg - This command is used to disable or enable the ability of users being able to 'write' to you. uname - This basically returns the version of UNIX the box is running. There are various switches for this command. wall - Sends a public message to ever user on the box, as if you had 'writen' to each and ever user. Good for admins. banner - This reutrns an ASCII banner for a word or letter you specify. So 'banner shell' would outpub shell in big ASCII uncompress - This decompresses .Z files. For example 'uncompress shell.Z' would output a file 'shell' tail - This shows the last 10 lines of a file. The -f option can also be used to 'follow' a file as additions are made. more - allows you to scroll a file. This is most often used when reading MOTDs, by 'more /etc/motd' ln - This is used to create links. For instance I could make shell-tests.txt link to a file called tests by 'ln -s shell-tests.txt tests' grep - This command is the equivilent of find. I use it a lot, when doing tasks and adding the pipe symbol. Like 'ps aux | grep -c eggdrop' This basically takes ps aux, and searches it for the amount of times eggdrop is mentioned (hence -c for count) crypt - This is used to encrypt text with a password. Simple encryption, but easy to use, if you need to encrypt somthin. chown - This changes ownership of files or directories to a group or user. Very useful for administration tasks. cat - This is the equivilent of type in DOS. All it does is prints out (on your screen) the contents of a file. su - This is usually associated with Super User'ing to root, however it can also be used to login with a different login name. Use su <username>. It will then prompt you for the pass of that user. sleep - This command is like pause, however you need to specify a time in seconds. This is usually used in scripts. ruptime - This neat command lists all the boxes on the LAN, their uptime, status, load averages and amount of users. nohup - This command is a simple equivilent of screen. It basically keeps a process alive even when you're logged out. man - This stands for manual, and covers most topics. To use it try 'man command.name' it should give you help groups - Returns with the groups that you're a member of. env - This command sets the environment of your shell. For instance you can change your home dir with 'env HOME=/home/blah' at - This can be used to schedule things. Use 'at 10am' <enter> and then enter the command you'd like it to perform at that time. stty - This has quite a few uses, however I use it for one thing. Ever had your backspace key produce ^H's? try "stty erase backspace" command;command - Do you want to put multiple commands in one line? Use ; to separate them and they'll be performed one after eachother. For instance ls;uptime;cp blah review;./eggdrop u -m
-
Da sefu! ------------------------------------- Inca doua in care puteti avea incredere: UpBux PalmBux la referral m-am pus pe mine, daca vreti ma lasati daca nu, ma stergeti
-
Da-mi pm cu siteu sau punel aici
-
tare siteu, unele lucruri sunt adevarate, spre exemplu:
-
ca sa o lasam dreq si sa plecam din ea cand facem 18
-
"Ti-am zis ma oaie sa scrii corect? Da tu nu, BATMAN, BATMAN"
-
Cat fac telefoanele astea ? (fiecare in parte)
ZeroCold replied to Krisler12's topic in Mobile security
Adevarul despre Nokia 1100 -
Nici un copy/paste nu stii sa il faci calumea
-
hahaha!!! :D:D funny Daca asa faci tu, cand ...asa....cred ca trebuie sa te duci cu Fitty, si urgent! ps: nus eo mare regizor da vezi ca acolo aia se excita la viteza 1 si tu ii dadeai cu 4
-
De pe cisco tutorialul? ^Vezi ca ai uitat sa deschizi bold si sa inchizi color Frumos tutorial.
-
Invatamantul romanesc e de cacat. Este normal ca la un profil matematica-informatica sa ai: -4 ore de mate -1 ora de informatica -1 tic -3 ore de fizica -2 ore biologie ???? Adica de ce 2 ore de biologie si nu 1 de biologie si 2 de informatica? Sau de ce 3 ore de fizica si nu 1 ora de fizica 2 de tic si 2 de info??? big Shit! edit: si ca sa fiu mai ontopic (sa nu iau warn ) sunt de parere ca problemele pe care le vom primi la bac (daca sunt asemanatopagina lalaare cu alea puse de Vic) sunt prea grele si prea multe (prea multa materie ). Profu cand vine la ora, atunci cand intra pe usa incepe: ex 2, pagina 200, La Tabla!!! Si nu inteleg nimic din ce explica el...plm, parca vorbeste pentru el .