Placing file into a directory

I have the following issue :

Place config file (M0N0WALL_NET45XX) in /usr/src/sys/i386/conf/. Now build the kernel using below command:

Code:
cd /usr/src/sys/i386/conf; config M0N0WALL_NET45XX
cd /usr/src/sys/compile/M0N0WALL_NET45XX; make depend all          
strip kernel         
strip --remove-section=.note --remove-section=.comment
gzip -9v kernel

My question is how do I place the config file into directory /usr/src/sys/i386/conf/?

I don't know which command to use.

Please help .
 
# cp M0N0WALL_NET45XX /usr/src/sys/i386/conf
or
# mv M0N0WALL_NET45XX /usr/src/sys/i386/conf

You should become familiar with these if you want to achieve anything.
 
Back
Top