NoLogic001
Well-Known Member
- Joined
- Aug 16, 2010
- Messages
- 385
- Reaction score
- 0
maybe try the following:
1. Open the executable file:
$ vim vrs
2. Locate the following line:
export WRKDIR=`mktemp -d /tmp/selfextract.XXXXXX`
move the arrow keys until the cursor flashes over the above line.
3. Press the 'I' key on your keyboard, or hit the 'Insert' key on your keyboard.
4. Being careful not to type anything else, make the necessary changes so that it looks as follows:
export WRKDIR=`mkdir /tmp/selfextract.XXX`
In other words, the "mktemp -d" part has simply become "mkdir"
5. Once the changes are made, press the 'Esc' key on your keyboard, and then type in the following:
:wq
The colon allows for the input of key commands, the 'w' specifies write, and the 'q' specifies quit.
6. Now try run the install command again, like before... as root, for example:
sudo ./vrs
edit:
Last edited: