Challenge 1: A Quick Remote Config Edit in nano — Solution Walkthrough The steps: 1. nano filename.conf — open the file (typed at the shell, not a nano keybinding itself). 2. Ctrl+W — Where is (search), then type the text to find and press Enter to jump to that line. 3. Make the edit directly by typing — nano is non-modal, so typed characters insert immediately with no mode switch needed first. 4. Ctrl+O — Write Out (save), then press Enter to confirm the filename. 5. Ctrl+X — Exit. Why this sequence works: Per this chapter's own material, Ctrl+W (Where is) is nano's own search command, used here to locate the target line quickly rather than scrolling manually. Because nano has no separate insert mode, the fix itself requires no mode-switching step at all — typing simply edits the text directly. Ctrl+O then Ctrl+X is the standard save-then-exit sequence, matching the same two hints permanently displayed at the bottom of nano's own interface. WHY THIS WORKS AS AN ANSWER ------------------------------ This exercise is a direct, hands-on application of this chapter's own essential keybindings to a realistic remote-editing task, correctly sequencing search, edit, save, and exit using nano's own actual keybinding conventions.