On Sunday 04 January 2026 at 14:20:14, Stephan via Asterisk Community wrote:
sudo asterisk -r
Hang the session
I cannot ype the rest of it, I never have access to the cli
Surely you can use another console (Ctrl-Alt-F2 for example) to:
a) run other commands
b) kill the process which is stuck
Antony.
–
Never automate fully anything that does not have a manual override capability.
Never design anything that cannot work under degraded conditions in emergency.
On Sunday 04 January 2026 at 14:25:57, Stephan via Asterisk Community wrote:
how does this remove all traces ?
sudo find / -xdev |& grep --ignore-case asterisk
It doesn’t remove anything - it tells you where things need to be removed
from.
then how do I remove them ?
The traditional Linux command to delete things is “rm”.
It has (at least) two useful options: “-r” will delete a directory and all its
contents (files and further sub-directories); “-f” will delete without
prompting, depending on the permissions of what you are deleting.
Antony.
–
There are 10 types of people in the world:
those who understand binary notation,
and those who don’t.
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
Package asterisk is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package ‘asterisk’ has no installation candidate
What should I do ?
Is there a file somewhere where I should write where the package is ?
On Sunday 04 January 2026 at 15:11:59, Stephan via Asterisk Community wrote:
Package asterisk is not available, but is referred to by another package.
Assuming you are using a current version of Debian (Bullseye or Bookworm) you
will need to add the “sid” repository to your apt sources and then specify
this when installing asterisk from it.
I suggest you create a file called “sid.list” under /etc/apt/sources.list.d
with the following content, and then install asterisk using “aptitude install
-t sid asterisk” or “apt-get install -t sid asterisk” (depending on your
preferred command for installing packages).
I suggest you create a file called “sid.list” under /etc/apt/sources.list.d
with the following content, and then install asterisk using “aptitude install
-t sid asterisk” or “apt-get install -t sid asterisk” (depending on your
preferred command for installing packages).
what is the following content ? you forgot something or I misunderstood ?
On Sunday 04 January 2026 at 16:00:37, Stephan via Asterisk Community wrote:
I suggest you create a file called “sid.list” under /etc/apt/sources.list.d
with the following content, and then install asterisk using “aptitude
install -t sid asterisk” or “apt-get install -t sid asterisk” (depending
on your preferred command for installing packages).
what is the following content ? you forgot something or I misunderstood ?
The content you require is the following two lines
This is more than you actually need, although the only real harm would be if you operate a policy of only using open source code (because of the non-free setting, that allows closed source code). You shouldn’t be installing source packages except delibeartely.
b) it doesn’t affect which categories are available from the current standard
release (whichever one is in use), so a Pure Open Source system isn’t going to
get contaminated, and
c) nothing will get installed from sid without being explicitly requested by
the user, so it’s not going to result in anything surprising when you just
install further new packages as normal.