Re: software development environment from scratch

2025-03-28 Thread Jonathan Dowland
On Fri Mar 28, 2025 at 12:02 AM GMT, tim wade wrote: For setting up a software development environment from scratch, I’m facing the following three options: 1. Deploy directly on the server, for example, running Kafka and Redis on the server's operating system. 2. Use Docker containe

Re: software development environment from scratch

2025-03-27 Thread Stanislav Vlasov
пт, 28 мар. 2025 г. в 11:41, Stanislav Vlasov : > > For a medium-sized project (involving multiple programming languages and > > several team members), which environment do you recommend? Forgot to write. Docker/k8s is not _development_ environment. Its deploy target. -- Stanislav

Re: software development environment from scratch

2025-03-27 Thread Stanislav Vlasov
пт, 28 мар. 2025 г. в 05:03, tim wade : > For a medium-sized project (involving multiple programming languages and > several team members), which environment do you recommend? If it will be deployed to several servers and must work together — k8s. At a single server — docker or may be pod

software development environment from scratch

2025-03-27 Thread tim wade
For setting up a software development environment from scratch, I’m facing the following three options: 1. Deploy directly on the server, for example, running Kafka and Redis on the server's operating system. 2. Use Docker containers on the server to deploy, for example, running Kafk

Re: Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread Ralph Aichinger
On Wed, Dec 04, 2024 at 03:00:17PM +0100, poc...@homemail.com wrote: > I do an install to a hard drive and when I get it configured to what I > want i copy to an USB drive. > > Then any time I need to do a install I simply partition a drive, > create the filesystems mount the drive and the USB d

Re: Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread Ralph Aichinger
Hello Michael, thanks for your reply On Wed, Dec 04, 2024 at 02:38:29PM +, Michael Kjörling wrote: > Compare https://michael.kjorling.se/debian-12-bookworm-preseed/ under > the B.4.1 heading about half way down the page. Actually right after my mail to this list I found your site by googling,

Re: Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread Ralph Aichinger
On Wed, Dec 04, 2024 at 04:03:38PM +0100, john doe wrote: > > d-i debian-installer/locale string de_AT > > The "local" is less "flexible". > Look at [1], the first few lines > > > Similar with the menu where the desktop environment is selected. >

Re: Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread john doe
cultish): d-i debian-installer/locale string de_AT The "local" is less "flexible". Look at [1], the first few lines Similar with the menu where the desktop environment is selected. I want LXDE and "SSH Server". I always drop back into the menu. I have tried: Also

Re: Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread Michael Kjörling
ian-12-bookworm-preseed/ under the B.4.1 heading about half way down the page. > Similar with the menu where the desktop environment is selected. > I want LXDE and "SSH Server". I always drop back into the menu. > I have tried: > > d-i pkgsel/include string openssh-server &g

Re: Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread pocket
> Sent: Wednesday, December 04, 2024 at 7:35 AM > From: "Ralph Aichinger" > To: debian-user@lists.debian.org > Subject: Preseed install, Selection of Language/Country/Keyboard and Desktop > Environment > > Hi fellow Debian Users > > I am currently try

Preseed install, Selection of Language/Country/Keyboard and Desktop Environment

2024-12-04 Thread Ralph Aichinger
select German Some of this I grabbed from https://preseed.debian.net/debian-preseed/bookworm/ but this is a lot of information in these files. The above is not enough to get my three selections without being prompted. Similar with the menu where the desktop environment is selected. I want LXDE and

Re: qt5ct and environment variables (was: Re: password manager)

2024-10-08 Thread Greg Wooledge
For example, stick something like this at the top of ~/.profile: echo ".profile read at $(date)" >> ~/.cache/dotfiles.log and then this at the top of ~/.bashrc: echo ".bashrc read at $(date)" >> ~/.cache/dotfiles.log and so on, for each dot file you want

qt5ct and environment variables (was: Re: password manager)

2024-10-08 Thread Max Nikulin
On 09/10/2024 07:38, e...@gmx.us wrote: Huh.  If I run it from a terminal emulator it looks fine, but if XFCE launches it the text is tiny.  Looks like QT_QPA_PLATFORMTHEME isn't being set.  Which means something is running a not-login shell, something between startx and xfwm.  It's defined in ~

Re: How to update environment variable output

2024-07-30 Thread Keith Bainbridge
On 23/7/24 23:22, Keith Bainbridge wrote: Another is to fetch the epoch time value (%s) and then use that value in all future calls. With GNU date: now=$(date +%s) julian=$(date -d "@$now" +%j) dom=$(date -d "@$now" +%d) Good evening All - especially Greg This process has work

Re: How to update environment variable output

2024-07-24 Thread Greg Wooledge
On Wed, Jul 24, 2024 at 21:08:29 +1000, Keith Bainbridge wrote: > So when I opened my xterm this morning, I saw: >  keith@lenv0 > >  Tue 23Jul2024@19:19:30 205.2024 AEST >  :~   $> > > You have new mail in /var/spool/mail/keith > > > Pressed enter, and the day# updated: > >  keith@lenv0 > >  

Re: How to update environment variable output

2024-07-24 Thread Keith Bainbridge
based on the current day will need to perform its *own* request to fetch the current day from the system clock. It cannot rely on an environment variable set some unknown length of time in the past. Use the date command or bash's printf %()T inside your bash script to get the current date. Righ

Re: How to update environment variable output

2024-07-23 Thread David Wright
On Tue 23 Jul 2024 at 15:00:12 (-0400), Greg Wooledge wrote: > On Tue, Jul 23, 2024 at 13:38:48 -0500, David Wright wrote: > > On Tue 23 Jul 2024 at 09:31:36 (-0400), Greg Wooledge wrote: > > > On Tue, Jul 23, 2024 at 23:22:52 +1000, Keith Bainbridge wrote: > > > > The day# in my command prompt inc

Re: How to update environment variable output

2024-07-23 Thread Greg Wooledge
On Tue, Jul 23, 2024 at 13:38:48 -0500, David Wright wrote: > On Tue 23 Jul 2024 at 09:31:36 (-0400), Greg Wooledge wrote: > > On Tue, Jul 23, 2024 at 23:22:52 +1000, Keith Bainbridge wrote: > > > The day# in my command prompt increments when I start in the morning. > > > Maybe I need to press ent

Re: How to update environment variable output

2024-07-23 Thread David Wright
On Tue 23 Jul 2024 at 09:31:36 (-0400), Greg Wooledge wrote: > On Tue, Jul 23, 2024 at 23:22:52 +1000, Keith Bainbridge wrote: > > The day# in my command prompt increments when I start in the morning. Maybe > > I need to press enter. > > That makes it sound like you're setting the YEAR et al. var

Re: How to update environment variable output

2024-07-23 Thread Greg Wooledge
On Tue, Jul 23, 2024 at 23:22:52 +1000, Keith Bainbridge wrote: > The day# in my command prompt increments when I start in the morning. Maybe I > need to press enter. That makes it sound like you're setting the YEAR et al. variables in the PROMPT_COMMAND variable. If that's the case, it's *less*

Re: How to update environment variable output

2024-07-23 Thread Keith Bainbridge
to pick up. >Even if you verify that your .bashrc is "cron safe" right now, you >might add something to it a year from now, forgetting that you need >it to remain "cron safe", and accidentally break the script. > >Any command that's supposed to act based on t

Re: How to update environment variable output

2024-07-23 Thread Greg Wooledge
ight add something to it a year from now, forgetting that you need it to remain "cron safe", and accidentally break the script. Any command that's supposed to act based on the current day will need to perform its *own* request to fetch the current day from the system clock. It cannot

Re: How to update environment variable output

2024-07-23 Thread Greg Wooledge
On Tue, Jul 23, 2024 at 17:02:08 +1000, Keith Bainbridge wrote: > mkcd () > { > mkdir -p $1 > cd $1 > } You're missing quotes. Two sets. You probably also want && between the two commands, to check for the success of the mkdir before attempting a cd. > in the form :~ $> mkcd > /mn

How to update environment variable output

2024-07-23 Thread Keith Bainbridge
Addendum 2 adding the full path to .bashrc failed So I tried opening a new xterm tab and ran Tue 23Jul2024@17:07:43 205.2024 AEST :~ $> mkcd /tmp/$DOYR.$YEAR and landed in /tmp/205.2024 $> Looking good From the tab I had used earlier, ran source .bashrc then :/tmp/205.2024 $>

How to update environment variable output

2024-07-23 Thread Keith Bainbridge
Addendum So I tried opening a new xterm tab and ran Tue 23Jul2024@17:07:43 205.2024 AEST :~ $> mkcd /tmp/$DOYR.$YEAR and landed in /tmp/205.2024 $> Looking good From the tab I had used earlier, ran source .bashrc then :/tmp/205.2024 $>mkcd /tmp/day$DOYR.$YEAR and landed in

How to update environment variable output

2024-07-23 Thread Keith Bainbridge
Good afternoon All For reference, today is Tue 23Jul2024@15:41:47 205.2024 AEST This is part of my command prompt, generated by PS1='\n \u@\h \n\n $(date +"%a %d%b%Y@%H:%M:%S %j.%Y %Z") \n :\w $> ' My calculation is that today is day 205 When I run this function mkcd () { mkdir -p

Re: Desktop environment

2023-12-16 Thread Dan Ritter
William Torrez Corea wrote: > I have installed Debian 12 and use XFCE 4.18. The installation has a > problem, the windows do not adjust size and figure like the previous > version. In addition to the title, the fonts are very small. > > I don't know if it is a bug or configuration problem. I'm n

Re: Work environment

2023-11-27 Thread Loris Bennett
Anssi Saari writes: > Rolf Blum writes: > >> In order to expound on the contribution of Karl Vogel: >> It gives me two big monitors (I regret that there is no space for a >> third one) >> a ergonomic mouse and a trackball >> and my keyboard(G19) I think is roughly 10 years old, one of the best >

Re: Work environment

2023-11-27 Thread Anssi Saari
Rolf Blum writes: > In order to expound on the contribution of Karl Vogel: > It gives me two big monitors (I regret that there is no space for a > third one) > a ergonomic mouse and a trackball > and my keyboard(G19) I think is roughly 10 years old, one of the best > investments into computer gea

Re: Work environment

2023-11-27 Thread Eric S Fraga
To expand a little further on this: I also have a desktop with two large monitors and an excellent mechanical keyboard. Could not imagine doing real work on a laptop 100% of the time. A point not mentioned: I do have a large heavy duty 17" laptop I use for a number of specific tasks, primarily fo

Re: Work environment

2023-11-27 Thread Rolf Blum
In order to expound on the contribution of Karl Vogel: It gives me two big monitors (I regret that there is no space for a third one) a ergonomic mouse and a trackball and my keyboard(G19) I think is roughly 10 years old, one of the best investments into computer gear ever. A normal size note

Re: Work environment

2023-11-26 Thread Joe
es in the desktop) or > > they might use it for gaming (e.g. a large GPU in the desktop) > > > > * Typically a laptop is smaller, quieter and more energy efficient > > than a desktop. Someone might prefer to use the laptop for general > > office-type work (browsing the we

Re: Work environment

2023-11-26 Thread Darac Marjal
cient than a desktop. Someone might prefer to use the laptop for general office-type work (browsing the web, reading emails etc), while reserving the desktops for occasional use (e.g. a gaming night). * You mention a work environment, so there could be contractual reasons for mainta

Re: Work environment

2023-11-24 Thread Karl Vogel
On Fri, Nov 24, 2023 at 03:28:34AM -0500, Darac Marjal wrote: > On 23/11/2023 04:34, William Torrez Corea wrote: > > Why the people use two desktops and one laptop? > Without any context, it's hard to answer. But there are some possibilities: > > * Regardless of any other factor, desktops are bi

Re: Work environment

2023-11-24 Thread Darac Marjal
ional use (e.g. a gaming night). * You mention a work environment, so there could be contractual reasons for maintaining physically separate computers. The computers could be at different classification levels; some of the computers could belong to a customer; some of the computers could have a

External hard drive not detected in debian 12 live environment

2023-07-15 Thread Thomas Nyberg
Hello, I have a new external hard drive "Western Digital My Passport Ultra" that doesn't seem to detect in any way when I plug it into a live debian 12 environment. If I run `journalctl -f` or `lsusb` or `lssci` or really anything else I can think of I can't find any evid

Re: Gnome desktop environment

2023-04-23 Thread Bret Busby
On 4/22/23 14:52, William Torrez Corea wrote: I want to delete the Gnome desktop environment. *What command is used for an elimination complete?* format c: .. Bret Busby Armadale West Australia (UTC+0800) ..

Re: Gnome desktop environment

2023-04-23 Thread Peter Ehlert
On 4/22/23 17:12, Jeremy Ardley wrote: On 23/4/23 04:49, Peter Ehlert wrote: Be careful and don't include any Gnome/"Debian desktop". When you select a desktop install with standard Debian you don't have lot of control over what is installed. And that's even with an advanced install.

Re: Gnome desktop environment

2023-04-23 Thread Bret Busby
On 24/4/23 05:10, Bret Busby wrote: On 4/22/23 14:52, William Torrez Corea wrote: I want to delete the Gnome desktop environment. *What command is used for an elimination complete?* format c: as the superuser. .. Bret Busby Armadale West Australia (UTC+0800) ..

Re: Gnome desktop environment

2023-04-23 Thread Bret Busby
On 23/4/23 03:52, William Torrez Corea wrote: I want to delete the Gnome desktop environment. Why? What exactly do you want to achieve? Those two questions should be answered, before you seek a solution, which could otherwise do something that you do not want. " "So once you do

Re: Gnome desktop environment

2023-04-23 Thread Kent West
On 4/22/23 14:52, William Torrez Corea wrote: I want to delete the Gnome desktop environment. *What command is used for an elimination complete?* I use this command but don't get the effect desired. # apt-get install task-gnome-desktop "install" won't remove. You wan

Re: Gnome desktop environment

2023-04-22 Thread songbird
amd64 Various applets for the MATE panel ii mate-applets-common 1.26.1-1all Various applets for the MATE panel (common files) ii mate-backgrounds 1.26.0-1 all Set of b

Re: Gnome desktop environment

2023-04-22 Thread Jeremy Ardley
On 23/4/23 04:49, Peter Ehlert wrote: Be careful and don't include any Gnome/"Debian desktop". When you select a desktop install with standard Debian you don't have lot of control over what is installed. And that's even with an advanced install. Personally I use only Mate but it's riddl

Re: Gnome desktop environment

2023-04-22 Thread Jeffrey Walton
On Sat, Apr 22, 2023 at 4:49 PM Peter Ehlert wrote: > > On April 22, 2023 12:58:24 PM Mark Fletcher wrote: >> >> On Sat, 22 Apr 2023 at 20:53, William Torrez Corea >> wrote: >>> >>> I want to delete the Gnome desktop environment. >>> &

Re: Gnome desktop environment

2023-04-22 Thread Peter Ehlert
On April 22, 2023 12:58:24 PM Mark Fletcher wrote: On Sat, 22 Apr 2023 at 20:53, William Torrez Corea wrote: I want to delete the Gnome desktop environment. What command is used for an elimination complete? I use this command but don't get the effect desired. # apt-get in

Re: Gnome desktop environment

2023-04-22 Thread Mark Fletcher
On Sat, 22 Apr 2023 at 20:53, William Torrez Corea wrote: > I want to delete the Gnome desktop environment. > > *What command is used for an elimination complete?* > > I use this command but don't get the effect desired. > > # apt-get install task-gnome-desktop > &g

Gnome desktop environment

2023-04-22 Thread William Torrez Corea
I want to delete the Gnome desktop environment. *What command is used for an elimination complete?* I use this command but don't get the effect desired. # apt-get install task-gnome-desktop -- With kindest regards, William. ⢀⣴⠾⠻⢶⣦⠀ ⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating s

Re: Xfce destop environment

2023-02-12 Thread Roland Müller
Hello, On 2023-01-30  19:57, William Torrez Corea wrote: On Mon, Jan 30, 2023 at 12:43 AM David wrote: On Mon, 2023-01-30 at 00:07 -0600, William Torrez Corea wrote: What happened with my desktop environment? My desktop environment has problems, the title bar is hidden. You can try to

Re: Xfce destop environment

2023-01-30 Thread Mike Kupfer
William Torrez Corea wrote: > On Mon, 2023-01-30 at 00:07 -0600, William Torrez Corea wrote: > > What happened with my desktop environment? > > > > My desktop environment has problems, the title bar is hidden. [...] > The problem started 1 month ago. I don't kn

Re: Xfce destop environment

2023-01-30 Thread Martin Petersen
efault session and copy your files over :) Good luck :) Cheers, Martin On 2023-01-30 19:57, William Torrez Corea wrote: On Mon, Jan 30, 2023 at 12:43 AM David wrote: On Mon, 2023-01-30 at 00:07 -0600, William Torrez Corea wrote: What happened with my desktop environment? My desktop envi

Re: Xfce destop environment

2023-01-30 Thread David
On Mon, 2023-01-30 at 12:57 -0600, William Torrez Corea wrote: > On Mon, Jan 30, 2023 at 12:43 AM David > wrote: > > > On Mon, 2023-01-30 at 00:07 -0600, William Torrez Corea wrote: > > > What happened with my desktop environment? > > > > > > My deskt

Re: Xfce destop environment

2023-01-30 Thread William Torrez Corea
On Mon, Jan 30, 2023 at 12:43 AM David wrote: > On Mon, 2023-01-30 at 00:07 -0600, William Torrez Corea wrote: > > What happened with my desktop environment? > > > > My desktop environment has problems, the title bar is hidden. > > Well, William, from your extensive d

Re: Xfce destop environment

2023-01-29 Thread David
On Mon, 2023-01-30 at 00:07 -0600, William Torrez Corea wrote: > What happened with my desktop environment? > > My desktop environment has problems, the title bar is hidden. Well, William, from your extensive description of the situation, you may well have enabled full-screen

Xfce destop environment

2023-01-29 Thread William Torrez Corea
What happened with my desktop environment? My desktop environment has problems, the title bar is hidden. -- With kindest regards, William. ⢀⣴⠾⠻⢶⣦⠀ ⣾⠁⢠⠒⠀⣿⡁ Debian - The universal operating system ⢿⡄⠘⠷⠚⠋⠀ https://www.debian.org ⠈⠳⣄

Re: OT: apache in shared environment

2022-09-29 Thread hede
Am 29. September 2022 07:31:56 MESZ schrieb Sven Hartge : >basti wrote: > >> Is there a way to get http2 work with mod_itk? > >If mod_itk *needs* preforking, then nothing can be done. > At least not with a single instance of Apache. But why not run multiple Apaches? The one on port 80+443 with h

Re: OT: apache in shared environment

2022-09-28 Thread Sven Hartge
basti wrote: > my question is a bit OT but perhaps someone can help. > We use apache mpm_prefork and mod_itk in shared environment for > privilege separation. > Now we want to use http2. > As I understod: > - mod_itk need mpm_prefork > - mpm_prefork is not compatibe

OT: apache in shared environment

2022-09-28 Thread basti
Hello, my question is a bit OT but perhaps someone can help. We use apache mpm_prefork and mod_itk in shared environment for privilege separation. Now we want to use http2. As I understod: - mod_itk need mpm_prefork - mpm_prefork is not compatibe with mod_http2 We have try to use

Re: How to install debian-goodies in CLI environment?

2022-08-17 Thread Yvan Masson
Le 16/08/2022 à 18:37, Tim Woodall a écrit : On Tue, 16 Aug 2022, G?khan Bag wrote: I found that the installation of the package debian-goodies always prompts the popularity contest configuration, and that way, I can't install debian-goodies in a script. I also tried: echo "" | apt install d

Re: How to install debian-goodies in CLI environment?

2022-08-16 Thread Tim Woodall
On Tue, 16 Aug 2022, G?khan Bag wrote: I found that the installation of the package debian-goodies always prompts the popularity contest configuration, and that way, I can't install debian-goodies in a script. I also tried: echo "" | apt install debian-goodies -y And: yes | apt install debian-g

How to install debian-goodies in CLI environment?

2022-08-16 Thread Gökhan Bag
I found that the installation of the package debian-goodies always prompts the popularity contest configuration, and that way, I can't install debian-goodies in a script. I also tried: echo "" | apt install debian-goodies -y And: yes | apt install debian-goodies -y I tried both apt and apt-get. H

Re: Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread David Christensen
On 6/2/22 22:50, Will Mengarini wrote: * David Christensen [22-06/02=Th 19:18 -0700]: [...] Now I can almost match your prompt -- there is a dash before 'bash': 2022-06-02 19:05:10 dpchrist@laalaa ~ $ PS1="\\h/${TTY#/dev/} \\s$SHLVL \\w \\A \$?\\\$" laalaa/pts/8 -bash1 ~ 19:08 0$ The dash see

Re: Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread Will Mengarini
* David Christensen [22-06/02=Th 19:18 -0700]: > [...] > Now I can almost match your prompt -- there is a dash before 'bash': > > 2022-06-02 19:05:10 dpchrist@laalaa ~ > $ PS1="\\h/${TTY#/dev/} \\s$SHLVL \\w \\A \$?\\\$" > laalaa/pts/8 -bash1 ~ 19:08 0$ > > The dash seems to be coming from the '\s

Re: Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread David Christensen
On 6/2/22 19:25, Greg Wooledge wrote: On Thu, Jun 02, 2022 at 06:01:11PM -0700, David Christensen wrote: This is my PS1. '\u' does not work on all of Debian, FreeBSD, Cygwin, and macOS, so the expansion of ${USER} is inserted between two string literals when .profile runs and sets PS1: 2022-06

Re: Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread Greg Wooledge
On Thu, Jun 02, 2022 at 06:01:11PM -0700, David Christensen wrote: > This is my PS1. '\u' does not work on all of Debian, FreeBSD, Cygwin, and > macOS, so the expansion of ${USER} is inserted between two string literals > when .profile runs and sets PS1: > > 2022-06-02 17:39:09 dpchrist@laalaa ~

Re: Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread David Christensen
On 6/2/22 18:35, Will Mengarini wrote: * David Christensen [22-06/02=Th 18:01 -0700]: On 6/2/22 17:12, Will Mengarini wrote: * David Christensen [22-06/02=Th 15:50 -0700]: On 6/2/22 15:13, Will Mengarini wrote: In this transcript, the number before the prompt-ending '$' is $?:

Re: Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread Will Mengarini
* David Christensen [22-06/02=Th 18:01 -0700]: >On 6/2/22 17:12, Will Mengarini wrote: >> * David Christensen [22-06/02=Th 15:50 -0700]: >>> On 6/2/22 15:13, Will Mengarini wrote: > In this transcript, the number before the prompt-ending '$' is $?: d

Bash and the PS1 environment variable [was: grep: show matching line from pattern file]

2022-06-02 Thread David Christensen
On 6/2/22 17:12, Will Mengarini wrote: > * David Christensen [22-06/02=Thu 15:50 -0700]: >> On 6/2/22 15:13, Will Mengarini wrote: >>> In this transcript, the number before the prompt-ending '$' is $?: >>> >>> debian/pts/4 bash3 ~ 14:56 0$perl -e 'open "gweeblefle

Re: Debian desktop environment

2022-05-28 Thread Kenneth Parker
On Sat, May 28, 2022, 11:08 AM Cindy Sue Causey wrote: > On 5/28/22, Thomas Schmitt wrote: > > Hi, > > > > Brian wrote: > >> > Careful! If you go on like this you will end up installing bullseye > :). > > > > Keith Bainbridge wrote: > >> Bookworm? > >> SID? > > > > In any case: Not Testing ! > >

Re: Debian desktop environment

2022-05-28 Thread Cindy Sue Causey
On 5/28/22, Thomas Schmitt wrote: > Hi, > > Brian wrote: >> > Careful! If you go on like this you will end up installing bullseye :). > > Keith Bainbridge wrote: >> Bookworm? >> SID? > > In any case: Not Testing ! > > Currently a zillion of packages get marked for autoremovial from Testing > becau

Re: Debian desktop environment

2022-05-28 Thread Thomas Schmitt
Hi, Brian wrote: > > Careful! If you go on like this you will end up installing bullseye :). Keith Bainbridge wrote: > Bookworm? > SID? In any case: Not Testing ! Currently a zillion of packages get marked for autoremovial from Testing because of https://bugs.debian.org/cgi-bin/bugreport.cgi?

Re: Debian desktop environment

2022-05-28 Thread Keith Bainbridge
On 24/5/22 23:23, Brian wrote: Hi, After my surrender to Jessie I've thought of moving on with Stretch. Careful! If you go on like this you will end up installing bullseye :). Bookworm? SID? -- All the best Keith Bainbridge keithrbaugro...@gmail.com

Re: Debian desktop environment

2022-05-27 Thread 황병희
Hellow Махно , Махно writes: > Hello. Just use i3. It is a tiling window manager designed for X11, > inspired by wmii and written in C.[5] It supports tiling, stacking, > and tabbing layouts, which it handles dynamically. Configuration is > achieved via plain text file and extending i3 is possib

Re: Debian desktop environment

2022-05-25 Thread Махно
Hello. Just use i3. It is a tiling window manager designed for X11, inspired by wmii and written in C.[5] It supports tiling, stacking, and tabbing layouts, which it handles dynamically. Configuration is achieved via plain text file and extending i3 is possible using its Unix domain socket and JSON

Re: Debian desktop environment

2022-05-25 Thread 황병희
Hellow didier, didier gaumet writes: > (... thanks ...) > In fact you did not install Debian on your Chromebook but you enabled > Debian inside Chrome OS on your Chromebook(1), right? In this case > Debian runs in a Chrome OS container not on the hardware? Your > screenshot seems to show a Chro

Re: Debian desktop environment

2022-05-25 Thread didier gaumet
Le mercredi 25 mai 2022 à 08:50:05 UTC+2, 황병희 a écrit : > Antonino Saetta writes: > > > (... thanks ...) > > I thought that Debian is GNOME by default... > > > > Also, what's the lightest desktop? Default, XFCE or LXDE...? > Hellow, i am beginner with Debian. I install Debian 11 Bullseye on >

Re: Debian desktop environment

2022-05-24 Thread 황병희
Antonino Saetta writes: > (... thanks ...) > I thought that Debian is GNOME by default... > > Also, what's the lightest desktop? Default, XFCE or LXDE...? Hellow, i am beginner with Debian. I install Debian 11 Bullseye on Chromebook. But there is no Gnome desktop. I just launch each Linux app su

Re: Debian desktop environment

2022-05-24 Thread Patrick Bartek
On Tue, 24 May 2022 13:27:29 +0200 Antonino Saetta wrote: > Hi, > > After my surrender to Jessie I've thought of moving on with Stretch. > > Currently I've installed it through the net, no problems at all. > > So I was wondering, why am I asked to choose (or not

Re: Debian desktop environment

2022-05-24 Thread Greg Wooledge
On Tue, May 24, 2022 at 02:23:46PM +0100, Brian wrote: > apt install task-xfce-desktop > apt unstall take-gnome-desktop > apt unstall xfce4 > etc Freudian typos.

Re: Debian desktop environment

2022-05-24 Thread Brian
at all. > > So I was wondering, why am I asked to choose (or not) a GNOME desktop > environment, other than *Debian desktop environment*? > > I thought that Debian is GNOME by default... It needn't be GNOME, but it has been for quite some time. > Also, what's the lig

Re: Debian desktop environment

2022-05-24 Thread Peter Ehlert
On 5/24/22 05:20, Greg Wooledge wrote: On Tue, May 24, 2022 at 01:27:29PM +0200, Antonino Saetta wrote: So I was wondering, why am I asked to choose (or not) a GNOME desktop environment, other than *Debian desktop environment*? uncheck that box, select any other Desktop you want, or None

Re: Debian desktop environment

2022-05-24 Thread Peter Ehlert
On 5/24/22 04:53, Jeremy Ardley wrote: On 24/5/22 7:27 pm, Antonino Saetta wrote: Also, what's the lightest desktop? Default, XFCE or LXDE...? I use Mate.  It's closest to the old gnome so no fancy crap I am with you on that. BTW: the mate-desktop-environment-extras

Re: Debian desktop environment

2022-05-24 Thread Greg Wooledge
On Tue, May 24, 2022 at 01:27:29PM +0200, Antonino Saetta wrote: > So I was wondering, why am I asked to choose (or not) a GNOME desktop > environment, other than *Debian desktop environment*? > > I thought that Debian is GNOME by default... *sigh* It's complicated. See, ther

Re: Debian desktop environment

2022-05-24 Thread Jeremy Ardley
On 24/5/22 7:27 pm, Antonino Saetta wrote: Also, what's the lightest desktop? Default, XFCE or LXDE...? I use Mate.  It's closest to the old gnome so no fancy crap Jeremy OpenPGP_signature Description: OpenPGP digital signature

Re: Debian desktop environment

2022-05-24 Thread tomas
choose (or not) a GNOME desktop > environment, other than *Debian desktop environment*? > > I thought that Debian is GNOME by default... > > Also, what's the lightest desktop? Default, XFCE or LXDE...? The lightest desktop is no desktop :-) Cheers -- t signature.asc Description: PGP signature

Debian desktop environment

2022-05-24 Thread Antonino Saetta
Hi, After my surrender to Jessie I've thought of moving on with Stretch. Currently I've installed it through the net, no problems at all. So I was wondering, why am I asked to choose (or not) a GNOME desktop environment, other than *Debian desktop environment*? I thought that Debia

Re: Desktop environment and VNC

2022-04-24 Thread Celejar
On Fri, 22 Apr 2022 07:49:08 -0400 Greg Wooledge wrote: > On Fri, Apr 22, 2022 at 08:57:36AM +0200, Julius Hamilton wrote: > > There are many VNC servers that can be installed from apt, but you also > > need a desktop environment, which can be installed from tasksel. > >

Re: Desktop environment and VNC

2022-04-22 Thread Greg Wooledge
On Fri, Apr 22, 2022 at 08:57:36AM +0200, Julius Hamilton wrote: > There are many VNC servers that can be installed from apt, but you also > need a desktop environment, which can be installed from tasksel. > > I see in tasksel that I already have Debian Desktop Environment and GNOME

Desktop environment and VNC

2022-04-21 Thread Julius Hamilton
Hey, I am having some difficulty connecting to Debian 11 Bullseye via VNC. I am trying to understand the situation comprehensively. There are many VNC servers that can be installed from apt, but you also need a desktop environment, which can be installed from tasksel. I see in tasksel that I

Cutefish desktop environment

2022-03-03 Thread Christian Britz
Hi, I just installed the very promising new desktop environment from CutefishOS on my bullseye system. I learned that they offer an APT repository with pre-built binaries: deb [arch=amd64] http://packages.cutefishos.com bullseye main First impression: It looks really cute ;-). Very clean and

Re: LXQT desktop environment hangs?

2021-12-14 Thread Eric S Fraga
On Tuesday, 14 Dec 2021 at 09:14, Andrei POPESCU wrote: > If at all possible, that system would benefit greatly from moving the > system to an SSD. I do have one system with an SSD and these drives do have an incredible positive performance impact. With respect to the system I have been referrin

Re: LXQT desktop environment hangs?

2021-12-14 Thread Andrei POPESCU
On Lu, 13 dec 21, 11:40:15, Eric S Fraga wrote: > On Friday, 10 Dec 2021 at 12:23, Andrei POPESCU wrote: > > I've seen some hints on the web that slow storage can also have an > > impact, something to do with periodic flushing of some sqlite database > > to persistent storage. > > This is indeed

Re: Mate desktop environment: anything akin to update-notifier

2021-12-13 Thread tomas
On Mon, Dec 13, 2021 at 10:22:27AM +0100, didier gaumet wrote: [...] > Hello Tomas, Hello, Didier > > Both Peter & Lee have suggested more pertinent (GUI) options for an > ordinary user but for the record, either unattended-upgrades and cron- > apt can be configured to automatically update but

Re: LXQT desktop environment hangs?

2021-12-13 Thread Eric S Fraga
On Friday, 10 Dec 2021 at 12:23, Andrei POPESCU wrote: > I've seen some hints on the web that slow storage can also have an > impact, something to do with periodic flushing of some sqlite database > to persistent storage. This is indeed a very likely explanation. The disk drives on this system

Re: Mate desktop environment: anything akin to update-notifier

2021-12-13 Thread didier gaumet
Le dimanche 12 décembre 2021 à 18:01 +0100, to...@tuxteam.de a écrit : [...] > I'm not looking for something doing the updates automatically (in the > kind of unattended-upgrades, for example). The user in question would > like to manually trigger the upgrades, to be aware of possible issues >

Re: Mate desktop environment: anything akin to update-notifier

2021-12-13 Thread tomas
On Sun, Dec 12, 2021 at 04:53:56PM -0500, Lee wrote: > On 12/12/21, to...@tuxteam.de wrote: > > Hi, > > > > the user of pending APT updates? > I went looking a year or two ago & didn't find anything I liked. I > finally decided my crontab entry was good enuf: Thanks, Lee, nice idea. The user in

Re: Mate desktop environment: anything akin to update-notifier

2021-12-12 Thread Peter Ehlert
On 12/12/21 9:01 AM, to...@tuxteam.de wrote: Hi, is there anything in Debian's flavour of the Mate DE which notifies the user of pending APT updates? I use package-update-indicator I don't care for the default so I set the command for installing updates as synaptic-pkexec I'm not looki

Re: Mate desktop environment: anything akin to update-notifier

2021-12-12 Thread Lee
On 12/12/21, to...@tuxteam.de wrote: > Hi, > > is there anything in Debian's flavour of the Mate DE which notifies > the user of pending APT updates? I went looking a year or two ago & didn't find anything I liked. I finally decided my crontab entry was good enuf: $ sudo crontab -l [sudo] passwo

Mate desktop environment: anything akin to update-notifier

2021-12-12 Thread tomas
Hi, is there anything in Debian's flavour of the Mate DE which notifies the user of pending APT updates? I'm not looking for something doing the updates automatically (in the kind of unattended-upgrades, for example). The user in question would like to manually trigger the upgrades, to be aware o

Re: LXQT desktop environment hangs?

2021-12-10 Thread Andrei POPESCU
On Lu, 01 nov 21, 07:58:09, Eric S Fraga wrote: > On Sunday, 31 Oct 2021 at 09:17, piorunz wrote: > > Nah. Problem is your computer, not Firefox. > > Rather dismissive? > > Everything else on this "slow" computer (yes, it's old but has 4 > dual-core Intel(R) Xeon(R) CPU E5-1620 v2 @ 3.70GHz proc

Re: Is "Debian desktop environment" identical to "GNOME" upon installation?

2021-11-05 Thread Linux-Fan
t; > On Fri, Nov 5, 2021, 7:21 AM Greg Wooledge wrote: [...] > > > > > With the "Live" installers, the default is different. > > > > > > > > And if I may ask: Why is it different? If there is a reason or two. > > > > > >

  1   2   3   4   5   6   7   8   9   10   >