Search found 358 matches

by NorthEast
2025-02-18 04:42
Forum: Beginners Questions
Topic: [Solved] Sound Only Comes Out Of Left Speaker
Replies: 8
Views: 353

Re: Sound Only Comes Out Of Left Speaker

Assuming all the hardware is good, like cables properly connected, then the following may be a start to look at the issue.

To check whether alsa can actually play through the speakers, one can run the command:

speaker-test -c 0

Or:

speaker-test -t wav -c 2

If alsa can play through the speakers, a white noise should be heard through one and then the other speaker. To stop the test before it runs it's full course in case it's not needed, use cnrl+c.

If sound can be heard at the level of ...
by NorthEast
2025-02-18 04:14
Forum: Installation
Topic: Gnome system monitor vs htop on RAM usage
Replies: 1
Views: 193

Re: Gnome system monitor vs htop on RAM usage

An initial look at the files which each application opens might be of interest. For that one can run, for example:

Code: Select all

lsof -c htop
and compare the number and nature of the files against the output of the command which opens the gnome system monitor. I'm not familiar with the gnome app but I guess it has a command to open it. If one can determine the PID of the gnome app, then the results of the lsof command can also be obtained from:

Code: Select all

lsof -p <PID-of-gnome-app>
by NorthEast
2024-11-13 22:39
Forum: General Questions
Topic: [Software] CUPS Printer Configuration
Replies: 8
Views: 692

Re: [Software] CUPS Printer Configuration

Perhaps consider the lpr command from the cups-bsd package. It's used here without printing extra pages. YMMV
by NorthEast
2024-05-16 07:22
Forum: System and Network configuration
Topic: D-Bus socket-activation dependency problems?
Replies: 8
Views: 1074

Re: D-Bus socket-activation dependency problems?

dbus appears to be activated here: /etc/X11/Xsession.d/20dbus_xdg-runtime
by NorthEast
2024-05-14 10:16
Forum: Hardware
Topic: invert colors results in extremely bright, white unreadable screen #20
Replies: 7
Views: 644

Re: invert colors results in extremely bright, white unreadable screen #20

Alternative to inversion is creating any number of colour calibrations, or a number of them that are preferred, and using them at will.
Here's one used here:

Code: Select all

xcalib -red 0.5  0 100 -green 0.5  0 100 -blue 1.0  0   1 -a
Adjust to preference. To revert to default: xcalib -c
by NorthEast
2024-05-14 09:46
Forum: Installation
Topic: Debian fails to boot on NVMe M.2 disk after UEFI install
Replies: 27
Views: 3048

Re: Debian fails to boot on NVMe M.2 disk after UEFI install

This works on the log file:

Code: Select all

cat log2.txt | more
and makes it quite readable.
by NorthEast
2024-04-29 08:20
Forum: Beginners Questions
Topic: ALSA config questions
Replies: 2
Views: 405

Re: ALSA config questions

Are you able to select the default card in alsamixer? I start alsamixer in the terminal, hit F6, and then can select the default card.
by NorthEast
2024-04-16 11:47
Forum: General Questions
Topic: [Software] What 'video' device is linux kernel using during initial boot?
Replies: 1
Views: 332

Re: [Software] What 'video' device is linux kernel using during initial boot?

Some info here: https://www.kernel.org/doc/Documentation/fb/modedb.rst
Perhaps run:

Code: Select all

dmesg | fb
to see which drivers, if any, have been loaded that support modedb.
by NorthEast
2024-04-12 03:24
Forum: Installation
Topic: (Solved) Latest Debian Stable won't install on Asus Prime B450M-A2
Replies: 17
Views: 1271

Re: Latest Debian Stable won't install on Asus Prime B450M-A2

Couple of ideas: 1. change the sata cables; 2. try kernel option: libata.force=3.0Gbps
These were successful for some users online in the case of the error: "failed command: READ FPDMA QUEUED"
No guarantees, just reversible suggestions.
by NorthEast
2024-03-25 03:22
Forum: Beginners Questions
Topic: [O/S] Unwanted folder in every new user's home directory
Replies: 5
Views: 736

Re: [O/S] Unwanted folder in every new user's home directory

A file with the relevant contents in post #1 can be written, as root, to /etc/xdg/user-dirs.defaults as a configuration for new users.
The commented text in the current /etc/xdg/user-dirs.defaults is:

# Default settings for user directories
#
# The values are relative pathnames from the home directory and
# will be translated on a per-path-element basis into the users locale

which is followed by a listing such the one in post #1. If you want that listing, write the file. You can reboot to ...
by NorthEast
2024-03-15 07:20
Forum: General Questions
Topic: Troubleshooting Issues with Debian 12
Replies: 2
Views: 868

Re: Troubleshooting Issues with Debian 12

On the .bashrc file, you most likely can copy the .bashrc file from here: /etc/skel/.bashrc, into your /home/$USER/ and you will then have the default .bashrc which you can have applied to a terminal by sourcing it:

Code: Select all

source .bashrc
or logout and login in again.

On office packages and browsers not opening, perhaps try opening them from a terminal to see if error messages appear in the terminal output.
by NorthEast
2024-02-23 04:59
Forum: System and Network configuration
Topic: SAR (System Activity Report)
Replies: 1
Views: 563

Re: SAR (System Activity Report)

If /var/log/sysstat/sa21 is created, and sysstat is enabled in /etc/default/sysstat, and systemctl has enabled and started it, then a command like:
sar -u
would normally show output of the current CPU usage for the current day. If it's not working, the output will say that sysstat can't open the relevant file.
by NorthEast
2024-02-21 07:34
Forum: Beginners Questions
Topic: [Hardware] ACPI Error message
Replies: 1
Views: 2122

Re: [Hardware] ACPI Error message

ACPI error messages are common in linux. The reason is that the linux kernel
follows the industry's open specification for the implementation of ACPI standards,
but the manufacturers of BIOS/UEFI don't always do that, rather they often issue
their wares with "stuff" that works. There's quite a bit of info on this issue online, e.g.
https://unix.stackexchange.com/questions/476600/acpi-errors-how-why-and-whats-the-deal
In the kernel docs, one finds comments such as:
"Complain to your platform/BIOS ...
by NorthEast
2024-01-28 06:44
Forum: Hardware
Topic: [Solved] No HDMI output
Replies: 19
Views: 8569

Re: No HDMI output

You could try the same act of plugging in the cable after the machine has booted and see what dmesg says, e.g. what is the output of:

Code: Select all

dmesg -w
Maybe something there.
by NorthEast
2024-01-28 06:17
Forum: Installation
Topic: Debian 12 installation without any DE: blank screen with linking cursor at boot
Replies: 17
Views: 3356

Re: Debian 12 installation without any DE

Is the video card supplied with a proper driver and the updated firmware?
Perhaps run to check the driver and the module:

Code: Select all

lspci -nnkd ::300
Then, you can check if the latest firmware for that card is installed.
by NorthEast
2024-01-20 07:07
Forum: General Questions
Topic: [Solved] Disk space usage
Replies: 11
Views: 1061

Re: [Hardware] Memory usage

To see where the largest files in your home directory you could run:

Code: Select all

du -hx ~ | sort -hr | head
by NorthEast
2024-01-03 00:16
Forum: Beginners Questions
Topic: [Hardware] Issue with Trusted Platform Module (TPM)
Replies: 3
Views: 2880

Re: [Hardware] Issue with Trusted Platform Module (TPM)

Vangi wrote: 2024-01-02 21:33
lindi wrote: 2024-01-02 14:24 You Debian setup most likely does not use TPM for anything.
Thank you for the reply. Does that mean I can click reset? Or enter the BIOS and disable it entirely?
Yes to the second question.
by NorthEast
2024-01-02 00:39
Forum: Beginners Questions
Topic: ACPI Warning: Time parameter 255 us > 100 us violating ACPI spec
Replies: 1
Views: 3683

Re: ACPI Warning: Time parameter 255 us > 100 us violating ACPI spec

ACPI error messages are common in linux. The reason is that the linux kernel follows the industry's open specification for the implementation of ACPI standards, but the manufacturers of BIOS/UEFI don't always do that, rather they often issue their wares with "stuff" that works. There's quite a bit of info on this issue online, e.g. https://unix.stackexchange.com/questions/476600/acpi-errors-how-why-and-whats-the-deal.
In the kernel docs, one finds comments such as:

Complain to your platform ...
by NorthEast
2024-01-01 02:36
Forum: General Questions
Topic: Debian 12 Pipewire: Volume keeps resetting to 40%?
Replies: 16
Views: 23852

Re: Debian 12 Pipewire: Volume keeps resetting to 40%?

You could try and have the volume set to 100%, or any percentage, using the amixer command in a start up file like .xsession, or failing that, create a systemd unit to run the amixer command at start up or write a simple /etc/rc.local file. A command like the following can be used:

Code: Select all

amixer set Master 100%
by NorthEast
2023-12-17 05:13
Forum: Beginners Questions
Topic: Can not run configure command: "No such file or directory"
Replies: 7
Views: 8433

Re: Can not run configure command: "No such file or directory"

Presumably the configure script is in the directory where you are trying to run it. Perhaps show bash the command by running:

Code: Select all

bash ./configure