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
пт, 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
пт, 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
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
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
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,
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.
>
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
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
> 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
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
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
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 ~
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
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
>
>
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
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
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
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
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*
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
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
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
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 $>
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
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
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
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
>
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
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
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
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
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
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
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
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
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)
..
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.
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)
..
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
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
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
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
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.
>>>
&
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
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
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
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
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
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
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
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
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
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
⠈⠳⣄
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
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
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
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
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
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
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
* 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
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
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 ~
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 $?:
* 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
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
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 !
> >
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
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?
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
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
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
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
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
>
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
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
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.
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
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
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
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
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
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
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
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.
> >
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
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
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
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
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
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
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
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
>
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
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
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
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
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
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 - 100 of 1502 matches
Mail list logo