Linux User Consoles How-Tos

Last modified by loktevda on 2025/10/08 17:24

Current Operating System: Ubuntu 24.04 LTS 

This guide provides essential how-to instructions for Ubuntu 24.04 LTS users working with the Linux console FSFL.

Access Information

Need login credentials functional accounts or support?

Shared Desktop Environment

The Desktop will be shared - please use Desktop shared folders for file storage and collaboration. 

Application Access Changes

Application access has changed: Applications are no longer accessed via Desktop icons. Instead, applications are now accessed through Dashboard pins.
Look for the Dashboard left (Activities overview) to find and launch your applications.
Screenshot from 2025-05-06 13-10-38.png

Paths of the mounts

Since the path's are not in the fstab anymore, one have to know the paths which are:

FLASH Core-FS:

/asap3/flash/gpfs

FLASH-O Core-FS:

/asap3/fs-flash-o/gpfs

pnfs:

/pnfs/desy.de/flash1

How to take screenshots

Ubuntu 24 provides several convenient keyboard shortcuts for capturing screenshots:

Keyboard Shortcuts

 
ShortcutAction
PrtScnCapture entire desktop
Alt + PrtScnCapture active window only
Shift + PrtScnCapture selected area
Ctrl + PrtScnCopy screenshot to clipboard

How to Use Area Selection

  1. Press Shift + PrtScn
  2. Your cursor changes to a crosshair
  3. Click and drag to select the area you want to capture
  4. Release to take the screenshot

Screenshot from 2020-01-22 10-16-28.png

Easy to take screenshots of the full Desktop, only the active window or just an area. In area mode your cursor turns into a crosshair and you have to mark the area you want to take a screen of.

In the above picture i used alt+print, for the following i used shift+print, so you see its just an area:

Screenshot from 2020-01-22 10-16-02.png

How to change colors in terminal

In the Terminal click on "Edit" → "Preferences". A new window opens and there you click on the tab "Profiles". After this click on "Edit" to change the used profile:

Screenshot from 2020-01-22 10-18-49.png

In the tab "Colors" you can change the colors from system themed to your own favorite:

Screenshot from 2020-01-22 10-19-13.png

In my case on my computer i use green text and black background with a much more colored stuff http://confluence.desy.de/s/en_US/7901/4635873c8e185dc5df37b4e2487dfbef570b5e2c/_/images/icons/emoticons/smile.svg

Screenshot from 2020-01-24 09-06-40.png

(One can edit some coloring-the-terminal stuff in the .bashrc, too! But this isn't the topic in here http://confluence.desy.de/s/en_US/7901/4635873c8e185dc5df37b4e2487dfbef570b5e2c/_/images/icons/emoticons/smile.svg)

How to run the Shell as a login shell

In the editing Profile Windows (see picture above) click on the Tab "Command" and check the "Run command as a login shell":

Screenshot from 2020-01-22 10-19-44.png

To see if you are running with or without login you can use the command "echo $0":

Screenshot from 2020-01-22 10-20-29.png

The "-" implicates that it is a login shell. At example you need the login shell to use all your own variables. If you just change user etc. without it, it may happen that - at example - you don't have permissions to geht dconf work because of some variables still got owned by the previous user.

Additional Tips

Terminal Best Practices

  • Use Ctrl + C to cancel running commands
  • Use Ctrl + Z to suspend processes (resume with fg)
  • Use history to view command history
  • Use Tab for auto-completion

File System Navigation

  • Use pwd to show current directory
  • Use ls -la for detailed file listings
  • Use cd - to return to previous directory

Getting Help

  • Use man <command> for manual pages
  • Use <command> --help for quick help
  • Use apropos <keyword> to find related commands