Questions tagged [terminal]
Questions about the Terminal application or its terminal emulation should use this tag. Use **command-line** for questions about shells or command-line programs that do not specifically involve Terminal.
6,377 questions
0
votes
2
answers
130
views
How to disable clear-screen escape codes in Terminal?
printf "\033[2J\033[3J\033[H"
This command line clears the whole screen in Terminal.app and it clears the scrollback.
This sucks! Some poorly-written CLIs that I like to use (e.g. Claude ...
1
vote
1
answer
126
views
How to see which terminal programs are using the most energy?
Battery report shows that Terminal.app is using a lot of battery.
Of course it must actually be some programs that I've started in the Terminal.
How can I list which programs in particular are ...
0
votes
0
answers
111
views
Change numpad dot to comma on macOS 26 (US International layout)
I found this answer: https://apple.stackexchange.com/a/410809/675317 but it does the opposite of what I need — inverting the numbers doesn’t work.
For context: I use a US physical keyboard, so I ...
1
vote
2
answers
174
views
Clear output in macOS Terminal in Python script on Big Sur works, but not on Sequoia
In my .zshrc i have the alias
alias cls='printf "\033[H\033[3J"'. With this I can run
os.system(cls) in my Python script to clear the screen (and clear buffer, totally clean, just prompt and ...
2
votes
1
answer
347
views
Terminals prompting for login and not starting properly anymore
I've run into a frustrating issue with iTerm2 and Terminal on my work MacBook Pro (M3 Max Sequoia).
I had set up a few iTerm2 profiles for SSH logins that included passwords. After failing to properly ...
0
votes
1
answer
110
views
Option key repeats next key in some apps after OS update
I have a german keyboard. On this keyboard you can access the pipe ('|') by pressing Option-7.
I recently updated to Sequoia 15.5 (I don't know the old version). After the update I can't enter the ...
1
vote
2
answers
157
views
Changing profiles on Terminal (macOS Mojave 10.14)
I'm unable to change my Terminal app profile (color theme) even when I change it in the preferences. I selected Homebrew as my profile, closed Terminal and reopened it - but it won't actually change ...
0
votes
0
answers
227
views
Can't find SSH public key on iOS using a-Shell (Unix iOS terminal)
Basically, I want to sync my repo on iPad with git, but I can't find the public key, so I can't clone the repo. I found three different guides, but none of them has worked out for me so far. I first ...
4
votes
1
answer
803
views
Recover/Crack Password from Keychain in OS X 10.15 Catalina, via known items in keychain and potentially from logs?
I am racking my head for an [old login password] (pass1) that is gone from my keychain but still in a Time Machine backup. The password I seek [encrypts an external drive] (pass2), which used to ...
0
votes
0
answers
40
views
Make "screen" over ssh compatible with accessibility "zoom" feature
I tried to use the accessibility/zoom feature on a terminal window which is running a ssh session to a remote FreeBSD host and where after login to the remote system a "screen" session has ...
1
vote
1
answer
282
views
‘parameter not set’ error in each new Terminal window
Every time I open a new Terminal window or tab, it shows this error before the shell prompt:
/etc/zshrc_Apple_Terminal:14: INSIDE_EMACS: parameter not set
(I don't use emacs, and I've noticed no ...
0
votes
2
answers
751
views
How can I force Terminal to have a persistent history per window open?
It seems a recent macOS X upgrade changed previous behavior in Terminal. (I'm currently on Sequoia 15.4.1)
I'm used to having different windows opened with different settings (that can be defined in ...
0
votes
0
answers
69
views
Create bootable install thumb drive for Mac Mini M4 using 2009 Mac Pro open core boots Monterey
Mac Pro 2009 open core booting Monterey trying to create a bootable usb install disk 15.4.1 for mac mini m4. Not valid for age of mac so
Downloaded InstallAssistant.pkg. Not valid for 2009 mac so ...
2
votes
0
answers
30
views
How to change Terminal.app scrollback history search default settings
Whenever I search the scrollback history in Terminal.app, I nearly always want to do a case sensitive search, but Terminal defaults to case-insensitive every time I hit commandf (or commande - or even ...
1
vote
1
answer
155
views
Installing clang from LLVM website alongside clang from Xcode command line tools
I want to install clang from the LLVM website (18.1.8 at the time of writing), but I also use Xcode which comes with clang 17.0.0 in the command line tools (also at the time of writing). I'm wondering ...