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 evidence that the system

Re: How to increase hard NOFILE limit in debian 11?

2022-11-14 Thread Thomas Nyberg
Thanks for the help! That worked well with bash (i.e. if I set both /etc/security/limits.conf and /etc/sysctl.conf, then `ulimit -aH` returns what you'd expect). However, I have a server process and when I check its limits by looking at `/proc/$PID/limits`, the hard limit is not raised there.

How to increase hard NOFILE limit in debian 11?

2022-11-13 Thread Thomas Nyberg
Hello, I'm running stock debian 11: ``` $ lsb_release -a No LSB modules are available. Distributor ID: Debian Description:Debian GNU/Linux 11 (bullseye) Release:11 Codename: bullseye $ uname -r 5.10.0-19-cloud-amd64 ``` I have the following default hard limit on open files: `

How to build linux kernal package

2019-04-09 Thread Thomas Nyberg
Hello, Here is some system information: $ lsb_release -a No LSB modules are available. Distributor ID: Debian Description:Debian GNU/Linux 9.8 (stretch) Release:9.8 Codename: stretch I'm trying to rebuild the currently installed

Re: How to remove extra files created when building a package?

2017-06-29 Thread Thomas Nyberg
On 06/29/2017 09:34 PM, Greg Wooledge wrote: > On Thu, Jun 29, 2017 at 09:30:26PM +0200, Thomas Nyberg wrote: >> $ for file in $(find . -name '*.pyc'); do rm -v $file; done >> $ for file in $(find . -name '*.o'); do rm -v $file; done >> $ for

Re: How to remove extra files created when building a package?

2017-06-29 Thread Thomas Nyberg
Thanks for all the helpful info! On 06/29/2017 09:15 PM, Sven Joachim wrote: > On 2017-06-29 20:36 +0200, Thomas Nyberg wrote: > > In my experience, if you are serious about changing packages it's always > better to create a git repository, if only temporarily. Ideally clone &

Re: How to remove extra files created when building a package?

2017-06-29 Thread Thomas Nyberg
Okay it looks like I solved the problem myself, but figured that I should recored it in the list for posterity. The first problem I had (even before the current question), was that I got errors that all started with: "dpkg-source: error: cannot represent change to ..." This seemed to have

How to remove extra files created when building a package?

2017-06-29 Thread Thomas Nyberg
Hello, I am trying to build the thunderbird package with some modifications. I made the modifications and commited the changes to a local patch, but then during the build (using `debuild -uc -us`) I ran out of space. I ran `debuild clean` and then deleted different things on my computer and then t