Quote:
Originally Posted by Silent Phantom so my Q's are :
1- how the HELL i can enter a file ?!!! (( i type cd and it says -bash: /cd: No such file or directory .. )) |
If you are trying to enter a directory (you can't enter files) from the command line, simply use this command:
Code:
cd nameofyourdirectory
The error message you gave leads me to believe you put a slash "/" in front of your command, which wouldn't work.
Quote:
|
2- how i can install winrar + how i can unrar a file ?
|
First of all, you will not be able to install any Microsoft Windows programs in Linux without some sort of special third-party software. Linux is not the same thing as Microsoft Windows and it will not natively run Windows programs.
However there is a Linux utility called
unrar that will do just as its name suggests. You can usually find it in your distribution's repository. If you're using Debian (I assume since you posted in this section) you should be able to get it with this command:
Code:
su <enter key>
Password: <enter your root password>
apt-get install unrar
Quote:
|
3- can i modify a TXT file in linux ?
|
You modify text files in Linux the same way you do anywhere else: with a text editing program. Note that Linux does not use file extensions, so pretty much any file could potentially be a text file (it doesn't need .TXT after it).
Some relatively simple text editors are nano and pico. If you're interested in learning some more complicated (but more feature-rich) ones, you can look into emacs and vi as suggested above.