Current Page:
NeXtMidas Training
Installing NeXtMidas
Installing on Linux
Create User Home Directories
|
- Start Here
+ Background
+ Common Midas Concepts
+ Getting Started
+ Working with Files
+ Option Trees
+ Macros - Part 1 (Basics)
+ Macros - Part 2 (Graphics)
+ Primitives
- Installing NeXtMidas
+ Installing on Windows
- Installing on Linux
- Create Data Directories
- Create User Home Directories
- Set the NeXtMidas Environment
- Build the NeXtMidas Baseline
+ Running the Confidence Tests
+ Applets & WebStart
- Mapping (NeXtEarth)
+ Remote Midas InterFace (RMIF)
+ Using NetBeans
+ X-Midas Interoperability
+ Remoting an X-Midas App.
|
- Create Data Directories:
- User Data Directories
- NeXtMidas expects to read and write data files for each user in the
AUX.1 directory (AUX.1 is the NeXtMidas identifier for the first auxiliary, or user, directory). Therefore, you need a directory for each user under the AUX.1 directory.
- This example creates user directories for John Smith (
smithj ) and Sarah Kim (kims ) using the default system directory /midas/data1/ .
mkdir -p /midas/data1/smithj
mkdir -p /midas/data1/kims
- NOTE: Set the ownership so the user owns their own directory.
chown smithj:smithj /midas/data1/smithj
chown kims:kims /midas/data1/kims
|