Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Search found 449 matches

by peer
2024-04-16 10:04
Forum: System and Network configuration
Topic: [Solved] wifi adapter found but password failure
Replies: 0
Views: 35

[Solved] wifi adapter found but password failure

I have an old toshiba laptop with debian 11 (lxde). It has a build in wifi adapter (Intel Pro Wireless 2200BG, firmware-ipw2x00) This adapter has always worked without problems. Yesterday I replaced the hdd with an ssd. Now the wifi tries to connect but keeps asking for the password. But the connect...
by peer
2024-04-16 07:37
Forum: Beginners Questions
Topic: [Networking] Bluetooth always disabled when starting Debian 12
Replies: 4
Views: 135

Re: [Networking] Bluetooth always disabled when starting Debian 12

Check if power is on: /usr/bin/bluetoothctl show Controller 4C:44:5B:86:16:49 (public) Name: debian Alias: debian Class: 0x00000000 Powered: no Discoverable: no DiscoverableTimeout: 0x000000b4 Pairable: yes .................... In the output there is a line: ¨Powered: no" or "Powered: yes&...
by peer
2024-04-05 08:41
Forum: System and Network configuration
Topic: System not automatically mounting NFS volumes at startup
Replies: 7
Views: 332

Re: System not automatically mounting NFS volumes at startup

The mount rule in fstab works ok. The synology maps are automatically mounted at boot..

Before I used fstab I used a script to mount the synology maps. I started that script automatically at boot (in debian kde) but I had to write a rule for the sudoers file to prevent asking for a password.
by peer
2024-04-05 07:52
Forum: System and Network configuration
Topic: System not automatically mounting NFS volumes at startup
Replies: 7
Views: 332

Re: System not mounting NFS volumes at startup

I have this line in my fstab: 192.168.2.5:/volume1/data /mnt/synology/data nfs auto,nofail,noatime,nolock,intr,tcp,actimeo=1800 0 0 It mounts a directory on my synology nas to my main pc. Works ok. mount line in terminal: sudo mount -t nfs 192.168.2.5:/volume1/data /mnt/synology/data umount line in ...
by peer
2024-03-30 15:22
Forum: General Questions
Topic: Backup from Ubuntu to Debian, system-, dot-, data files, partition
Replies: 25
Views: 878

Re: Backup from Ubuntu to Debian

Hi. Thanks for all the replies! As I can see there are many different ways to do this. But I think I found a solution for me with your help. I think I will go with a normal copy process of all the files I want to save on the external drive and take with me to Debian. Afterall I don't want to save a...
by peer
2024-03-30 09:02
Forum: General Questions
Topic: Backup from Ubuntu to Debian, system-, dot-, data files, partition
Replies: 25
Views: 878

Re: Backup from Ubuntu to Debian

I would just copy my complete home directory to the external disk (if it is big enough) including the hidden files. After installing you can select the files and directories you want to copy back.
by peer
2024-03-25 08:20
Forum: Graphical Environments & Desktops
Topic: [Solved] Is there an DE that will show root in the file manager?
Replies: 26
Views: 1092

Re: Is there an DE that will show root in the file manager?

Krusader is a very nice file manager. You can easily run Krusader as root from within Krusader itself. (in topmenu: select 'Tools' and then 'Start root mode Krusader'). I I use dolphin as my regular file manager because it is standard installed in kde. I use doublecommander as root exclusively for r...
by peer
2024-03-21 11:07
Forum: Beginners Questions
Topic: [Software] Cannot log into root account
Replies: 9
Views: 561

Re: [Software] Cannot log into root account

When I install debian I enable root so sudo is not installed
After installation I do:

Code: Select all

su -
apt update
apt install sudo
usermod -a -G sudo <username>
Then reboot
by peer
2024-03-11 12:28
Forum: Hardware
Topic: Reboot and select proper boot device
Replies: 4
Views: 439

Re: Reboot and select proper boot device

I don´t know if this is a grub problem.
I would install supergrub2 on a usb disk (download the usb-image from https://www.supergrubdisk.org/super-grub2-disk/)
With the ssd installed start supergrub2 and then select the installation on the ssd.
Then install grub again.
by peer
2024-03-03 08:59
Forum: General Questions
Topic: Cannot write to flash drive because of permission 'b'
Replies: 6
Views: 267

Re: Cannot write to flash drive because of permission 'b'

You can try the following in gparted with your usb device: 1. choose 'Devices'- "Create a new partitiontable" 2. Select new partition table type ''msdos" - "Apply" 3. Create a new partition Sometimes it helps to create another partition table type first: - Select new partiti...
by peer
2024-02-28 08:40
Forum: Off-Topic
Topic: [Discussion] Psychoanalysing proponents of two wheels
Replies: 33
Views: 1923

Re: [Discussion] Psychoanalyzing Windows adherents

I own a moto guzzi v7 (1976)
by peer
2024-02-25 14:56
Forum: Graphical Environments & Desktops
Topic: Make bootable external hard drive system work on most machines
Replies: 13
Views: 834

Re: Make bootable external hard drive system work on most machines

You can install extra firmware.
I did this a log time ago for a linux installation on a usb stick. I opened synaptic and selected all firmware that I could find and installed it. I think "sudo apt install firmware*" would work also.
by peer
2024-02-23 08:07
Forum: Off-Topic
Topic: [Discussion] How do you name your devices?
Replies: 19
Views: 1267

Re: [Discussion] How do you name your devices?

I use the brand name. Fortunately all my pc 's and laptop are different brands.
There is one exception: my main pc is just called 'debian'
by peer
2024-02-17 15:24
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

Re: unmount unreachable nfs-server

I think I found a solution. I added the line 'Forceunmount=true' to the unit file: [Unit] Description=Asus PC After=network.target [Mount] What=192.168.2.22:/home/peer Where=/mnt/Asus Type=nfs Options=_netdev,auto Forceunmount=true [Install] WantedBy=multi-user.target Now I can unmount the server ev...
by peer
2024-02-17 14:54
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

Re: unmount unreachable nfs-server

I have created a unit file /etc/systemd/system/mnt-Asus.mount: [Unit] Description=Asus PC After=network.target [Mount] What=192.168.2.22:/home/peer Where=/mnt/Asus Type=nfs Options=_netdev,auto [Install] WantedBy=multi-user.target I can mount the nfs server with 'systemctl start mnt-Asus.mnt' and um...
by peer
2024-02-17 13:34
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

Re: unmount unreachable nfs-server

The connection is made when both pc's are running (of coarse) When I shutdown the server-pc the mount-point on the client-pc is still there. And Dolphin (the file-manager) on the client-pc becomes inresponsive because it cannot read the directory on the server-pc . The mount point will always be th...
by peer
2024-02-17 09:02
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

Re: unmount unreachable nfs-server

How can I umount the unreachable server properly? You don't. I would look into changing the method. Systemd-mount accepts the same options and gives some easier options. You could eliminate the sudo requirement. --discover and/or automount timeouts should eliminate the issue. I think systemd-mount ...
by peer
2024-02-17 08:52
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

Re: unmount unreachable nfs-server

How is that possible? I mean if the server is physically switched off, what makes you think the client is connected? Both server and client are normal pc's (server-pc and cllient-pc). The connection is made when both pc's are running (of coarse) When I shutdown the server-pc the mount-point on the ...
by peer
2024-02-16 10:07
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

Re: unmount unreachable nfs-server

Sometimes the server is switched off while it is mounted on the client.
by peer
2024-02-16 09:21
Forum: Graphical Environments & Desktops
Topic: unmount unreachable nfs-server
Replies: 11
Views: 797

unmount unreachable nfs-server

I use nfs to connect to pc's client: 192.168.2.20 server: 192.168.2.22 I establish the connection with the mount command on the client: sudo mount -t nfs 192.168.2.22:/home/peer /mnt/asus/home Unmounting goes with: sudo umount 192.168.2.22:/home/peer or sudo umount /mnt/asus/home This works great wh...