Here's a few:
---------------------------------
To make a program startup automaticly at boot time (before you even log in) edit this file:
/etc/rc.d/rd.local
Simply add what you want to run, for example:
/data/appz/f@h/main.exe >>/data/logs/f@h.log &
The >>/data/logs/f@h.log part simply makes it output to a file instead of the console, and the & makes it do it in the background and not in the console. If you omit that part the program will take over your console and you won't be able to do anything until you CTRL+C out of it.
--------------------------------
To change your hostname you need samba, edit the main samba configuration file which is /etc/samba/smb.conf.
Add this line:
netbios name = yourchoice where yourchoice is whatever you want to call it.
---------------------------------
To add a samba share (that works easily without rejecting any passwords) do the following:
- look for security = user and change it to security = share
then this is a typical share:
[shared]
path = /data/shared
comment = Main share
browseable = yes
writable = yes
create mode = 777
directory mode = 777
guest ok = yes
This is assuming you're the only person using the network, or that you are on a trusted network (ex: a home network). There are better and more secure ways to do shares that work, but it is harder and I did not figure it out yet.

---------------------------
These are a few commands with the DOS equivalent:
(Linux | DOS)
vim | edit
cd | cd
mkdir | md
mv | rename
rm | delete / deltree
dir | dir
I'm sure I missed lots but these are the ones I use the most often.
--------------------------
(more to come)
Archived topic from Iceteks, old topic ID:2126, old post ID:18117