A few ways to do it.
This is one.
Computer boots to desktop and X lock locks the screen,
Need to enter password to unlock.
1. To configure screen locking, right-click the lock icon on the desktop; configure, if you want
2. click Lock the screen now
3. enter Key (password)
4. REMEMBER PASSWORD
5. enter Key again
screen is locked
6. to unlock, hit Enter and, when asked (it may take a minute or so), enter password
.....To set locking on boot-up......
You make a script file to run at startup, that will activate screen lock.
1. click file icon on desktop
2. click Startup
3. right-click a blank space on the (~/Startup) window
4. choose New > Script
5. name new script xlock and click Create
6. right-click xlock file, and choose Open As Text
the new window (named xlock) which opens will already have the first line - #!/bin/sh
7. on the second line, type xlock& and hit enter
8. save and close file
9. close ~/Startup window
Note:
You may need to add a sleep command to allow more time to get boot up completed.
sleep 10 or higher number should help.
Add sleep before the xlock&
Example:
#!/bin/sh
sleep 10
xlock&
.............
Here is the script file already made.
Place it in /root/Startup/
- xlock.gz
- Had to add .gz to name so it would attach to post.
Remove .gz from name to make it a workable file.
Check to make sure it has exec permissions. - (16 Bytes) Downloaded 45 times
.
now, whenever you start this puppy ('booting' a puppy just sounds mean!), the screen will lock after a few seconds
to unlock it, hit Enter, wait for the message, type in the password, and hit Enter