How can I resize and lock a window?
I am writing a program which is to resize and lock the window. I used resize command, but it doesn't work in the Linux lab. I don't know why, and I also don't know how to lock the terminal window. Can you help me?

    Requires Free Membership to View

    When you register, my team of editors will also send you resources covering Linux administration and management; integration and interoperability between Linux, Windows and Unix; securing Linux and mixed-platform environments; and migrating to Linux.

    Margie Semilof, Editorial Director

    By submitting your registration information to SearchEnterpriseLinux.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchEnterpriseLinux.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

For the output to work, it needs to be evaluated as part of the command line, as resize prints a shell command for setting the Term/Termcap env variables. Try setting up an alias:

For example:

alias res 'set noglob; eval `resize`'
Then type in res.

Regarding you wanting to lock your window, take a look at this open source utility that might help you, aptly named lock: http://www.steve.org.uk/Software/lock/

This was first published in December 2003