Unix & Linux Stack Exchange
Q&A for users of Linux, FreeBSD and other Unix-like operating systems
Latest Questions
0
votes
0
answers
25
views
Linux not reading /boot directory off of USB
I'm attempting to run 32 bit linux off of a usb for an old XP machine. There are important files on the computer's base drive, so formatting or partitioning isn't on the cards. So far I've tried AntiX and Debian, and in both cases I was sent straight to grub repair with the error "/boot/grub/i386-pc...
I'm attempting to run 32 bit linux off of a usb for an old XP machine. There are important files on the computer's base drive, so formatting or partitioning isn't on the cards. So far I've tried AntiX and Debian, and in both cases I was sent straight to grub repair with the error "/boot/grub/i386-pc/normal.mod cannot be found". Using grub rescue I identified the correct partition, and can use ls to see the list of folders to find the /boot folder, however any attempt to ls into the boot folder produces an empty line before returning the command prompt. Examining the usb with a different computer, the normal.mod file is there in its correct place, however the boot folder and a few other folders cannot be written to or modified due to permission issues which I can't figure out. My best guess is that grub simply isn't allowing itself to read the boot folder, but I'm not sure
user30001709
(1 rep)
Aug 6, 2025, 11:55 AM
2
votes
2
answers
2099
views
Installing 32-bit Linux distribution on 32-bit Architecture with 32-bit UEFI
There's a lot of information on installing 64-bit Linux on 32-bit UEFI. It's a mess even here, but I've seen ways (rEFInd, etc). But this laptop (HP Envy X2) has a 32-bit architecture and exclusively EFI (no CSM / legacy BIOS). So, how can I install a **32-bit** Linux distribution on a **32-bit** ar...
There's a lot of information on installing 64-bit Linux on 32-bit UEFI. It's a mess even here, but I've seen ways (rEFInd, etc).
But this laptop (HP Envy X2) has a 32-bit architecture and exclusively EFI (no CSM / legacy BIOS). So, how can I install a **32-bit** Linux distribution on a **32-bit** architecture, with **EFI** only?
At this point I'd be fine with pretty much any distribution. But if there's choice, I'd go with Arch-based, or Debian-based.
I have experience in GNU/Linux and installation / etc. I'm looking for EFI-specific help. The laptop currently runs Windows 10 with basically no drivers, but I have access to Debian and Windows on my desktop.
Thanks!
PS: [This](https://unix.stackexchange.com/questions/251705/32bit-or-64bit-linux-distro-with-32bit-uefi-support) is not a duplicate as the questioner is (I believe) wrong in believing that the X2's CPU supports 64-bit. The answer there is also merely a distribution name.
Cosine
(121 rep)
Mar 15, 2017, 09:46 PM
• Last activity: May 24, 2025, 07:01 PM
1
votes
1
answers
168
views
Adding 32-bit compatibility for old and very old binaries
I have a stats package 32-bit binary (P-Stat) which is no longer produced (this is the last version ever). I run this successfully by adding sudo dpkg --add-architecture i386 sudo apt update sudo apt install lib32stdc++6 lib32z1 lib32ncurses6 I did this after installing Linux Mint 22, and have also...
I have a stats package 32-bit binary (P-Stat) which is no longer produced (this is the last version ever). I run this successfully by adding
sudo dpkg --add-architecture i386
sudo apt update
sudo apt install lib32stdc++6 lib32z1 lib32ncurses6
I did this after installing Linux Mint 22, and have also done so successfully on older 64-bit systems. The
/lib/ld-linux.so.2
interpreter is present on the system, corresponding to the details from running the file
command on the p-stat
binary.
I have now been sent an even older version of the P-Stat binary to test on some very old data formats, and file
says it needs /lib/ld-linux.so.1
which I don't have [yet]. Two questions:
1. can I have both ld-linux.so.1and ld-linux.so.2 present on the same system?
2. what do I need to install to get ld-linux.so.1?
frisket
(13 rep)
Jan 20, 2025, 11:20 PM
• Last activity: Jan 21, 2025, 09:01 AM
1
votes
1
answers
1042
views
Lutris "i386 libGL.so.1 missing (needed by opengl)"
When starting Lutris this error is shown in the console. If i386 libGL.so.1 is needed or not a problem to install how to install it? Do I need to enable 32bit sources in sources.list? I already have libgl1 and libglu1-mesa-dev installed (on Debian 12).
When starting Lutris this error is shown in the console. If i386 libGL.so.1 is needed or not a problem to install how to install it? Do I need to enable 32bit sources in sources.list? I already have libgl1 and libglu1-mesa-dev installed (on Debian 12).
mYnDstrEAm
(4708 rep)
Nov 25, 2024, 05:41 PM
• Last activity: Nov 25, 2024, 07:48 PM
10
votes
3
answers
32027
views
How to run 32 bit programs on 64 bit Fedora 17?
Although the Android Development Tools (ADT) bundle is available as a zip package for 'Linux 64 Bit' it [states following requirements][1]: > 64-bit distributions must be capable of running 32-bit applications. And indeed, just running the packaged eclipse on a Fedora 17 64 bit system results in err...
Although the Android Development Tools (ADT) bundle is available as a zip package for 'Linux 64 Bit' it states following requirements :
> 64-bit distributions must be capable of running 32-bit applications.
And indeed, just running the packaged eclipse on a Fedora 17 64 bit system results in errors, because it can't 'find' several development tools, e.g.
adb
or aapt
:
> Error executing aapt: Cannot run program "/home/juser/local/adt-bundle-linux/sdk/platform-tools/aapt": error=2, No such file or directory: error=2, No such file or directory
The 'no such file' is misleading because it is there (under $HOME/local):
adt-bundle-linux/sdk/platform-tools/aapt
But I can't execute it on the shell:
~/local $ ./adt-bundle-linux/sdk/platform-tools/aapt
zsh: no such file or directory: ./adt-bundle-linux/sdk/platform-tools/aapt
Looking at the file
$ file adt-bundle-linux/sdk/platform-tools/aapt
adt-bundle-linux/sdk/platform-tools/aapt: ELF 32-bit LSB executable, Intel 80386,
version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8,
not stripped
we see that it is a 32 binary. And it seems that my system (currently) is not capable of running 32-bit applications.
How do I change that? How do I make a current Fedora 64 bit system capable of running 32 bit applications?
(Of course one could also ask why someone ends up putting 32 bit binaries into a binary package called 'Linux 64 bit' ...)
maxschlepzig
(59492 rep)
Dec 7, 2012, 10:43 AM
• Last activity: Jul 19, 2024, 02:39 PM
0
votes
0
answers
121
views
How do I fix my issue of having held broken packages and adding libGL.so.1?
I am trying to fix my held broken packages issue, I am missing `libGL.so.1` and am trying to download steam to get the sims 4. I cannot download EA app on my system because EA only runs on windows and mac, I obviously have Debian 10/linux 10. How do I fix my issue of having held broken packages and...
I am trying to fix my held broken packages issue, I am missing
libGL.so.1
and am trying to download steam to get the sims 4. I cannot download EA app on my system because EA only runs on windows and mac, I obviously have Debian 10/linux 10. How do I fix my issue of having held broken packages and adding libGL.so.1
? Below is what I am receiving
The following packages have unmet dependencies: libgl1-mesa-dri:i386 : Depends: libzstd1:i386 (>= 1.3.2) but it is not going to be installed E: unable to correct problems, you have held broken packages.
you are missing the following 32-bit libraries, and steam may not run: libGL.so.1
Fatal error: Failed to load steamui.so
Tiana Trammell
(1 rep)
Jun 7, 2024, 11:45 PM
• Last activity: Jun 8, 2024, 12:14 AM
0
votes
0
answers
68
views
Trouble installing NVIDIA 32 bit driver
I can run steam games through the application itself and certain games successfully launch and play like Doki Doki Literature club. However games like Destiny or Poe fail to run and I am met with the response createDXGIFactory1: call failed. So I did some research and games like that require a 32 bi...
I can run steam games through the application itself and certain games successfully launch and play like Doki Doki Literature club. However games like Destiny or Poe fail to run and I am met with the response createDXGIFactory1: call failed.
So I did some research and games like that require a 32 bit driver, while I have only the 64 bit driver, I've attempted to download the NVIDIA driver and my terminal presents the following message:
(1) Another program may be editing the same file. If this is the case,
be careful not to end up with two different instances of the same
file when making changes. Quit, or continue with caution.
(2) An edit session for this file crashed.
If this is the case, use ":recover" or
"vim -r /home/divinadivine/Downloads/NVIDIA-Linux-x86-384.111.run"
to recover the changes (see ":help recovery").
If you did this already, delete the swap file "/home/divinadivin
e/.cache/vim/swap/%home%divinadivine%Downloads%NVIDIA-Linux-x86-384.
111.run.swp"
to avoid this message.
Swap file "~/.cache/vim/swap/%home%divinadivine%Downloads%NVIDIA-Lin
ux-x86-384.111.run.swp" already exists!
MistyReaper Cake
(1 rep)
May 15, 2024, 03:50 PM
• Last activity: May 29, 2024, 11:51 AM
0
votes
1
answers
139
views
Why does the 64bit Linux Mint Live run on my 32bit machine?
Just made my Live-USB from 64bit Mint 21.3 (https://www.linuxmint.com/torrents/linuxmint-21.3-xfce-64bit.iso.torrent) and plugged into my old 32bit laptop, forgetting it still is such old. (Probably it's not relevant, but in any case: I created the USB stick basically following the answer at https:/...
Just made my Live-USB from 64bit Mint 21.3 (https://www.linuxmint.com/torrents/linuxmint-21.3-xfce-64bit.iso.torrent) and plugged into my old 32bit laptop, forgetting it still is such old. (Probably it's not relevant, but in any case: I created the USB stick basically following the answer at https://askubuntu.com/a/1227225/602021)
Everything boots and runs fine, new software comes from amd64 repository, is installable and runs also.
How can that be, given that it is software for another architecture?
**EDIT:**
Laptop chipset & model:
$ lscpu
Architecture: i686
CPU op-mode(s): 32-bit, 64-bit
Address sizes: 36 bits physical, 48 bits virtual
Byte Order: Little Endian
CPU(s): 2
On-line CPU(s) list: 0,1
Vendor ID: GenuineIntel
Model name: Intel(R) Core(TM)2 CPU T6600 @ 2.20GHz
CPU family: 6
Model: 23
Thread(s) per core: 1
Core(s) per socket: 2
Socket(s): 1
Stepping: 10
CPU(s) scaling MHz: 66%
CPU max MHz: 2200,0000
CPU min MHz: 1200,0000
BogoMIPS: 4388,93
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse
sse2 ht tm pbe nx lm constant_tsc arch_perfmon pebs bts cpuid aperfmperf pni dtes64 monitor ds_cpl est
$ sudo dmidecode | grep -A3 '^System Information'
System Information
Manufacturer: Acer
Product Name: Extensa 5220
Version: 0100
Jaleks
(2591 rep)
Apr 27, 2024, 02:34 PM
• Last activity: Apr 28, 2024, 10:52 AM
81
votes
4
answers
138606
views
How do I run 32-bit programs on a 64-bit Debian/Ubuntu?
I have a 64-bit (amd64 a.k.a. x86_64) Debian or Ubuntu installation. I need to run 32-bit (i386/i686) programs occasionally, or to compile programs for a 32-bit system. How can I do this with a minimum of fuss? Bonus: what if I want to run or test with an older or newer release of the distribution?
I have a 64-bit (amd64 a.k.a. x86_64) Debian or Ubuntu installation. I need to run 32-bit (i386/i686) programs occasionally, or to compile programs for a 32-bit system. How can I do this with a minimum of fuss?
Bonus: what if I want to run or test with an older or newer release of the distribution?
Gilles 'SO- stop being evil'
(862317 rep)
May 10, 2011, 06:00 PM
• Last activity: Apr 13, 2024, 11:29 PM
0
votes
0
answers
39
views
"Failed to set ISR" on Raspberry PI 4
I'm trying to execute a compiled software on a Raspberry PI 4. When I execute it, I see this error message: ```none Failed to set ISR : No such file or directory ``` Has anyone come across this message? I did not find the answer in google.
I'm trying to execute a compiled software on a Raspberry PI 4. When I execute it, I see this error message:
Failed to set ISR
: No such file or directory
Has anyone come across this message?
I did not find the answer in google.
Lee Changwoo
(1 rep)
Mar 14, 2024, 09:50 PM
• Last activity: Mar 15, 2024, 04:16 PM
0
votes
1
answers
54
views
Is it possible to handle 32-bit dependencies without adding foreign architecture to 64-bit Linux?
I want to install an old 64-bit Linux program that depends on some old 32-bit libraries. I don't want to install these old libraries system-wide because other programs won't use them. Also, my package manager can't handle them because some of them are not available in the repositories (even if I add...
I want to install an old 64-bit Linux program that depends on some old 32-bit libraries. I don't want to install these old libraries system-wide because other programs won't use them. Also, my package manager can't handle them because some of them are not available in the repositories (even if I add i386 architecture). How can I deal with odd libraries without messing my system? I don't want to add i386 architecture just for these libraries. Is there a workaround?
arham
(3 rep)
Feb 15, 2024, 12:44 PM
• Last activity: Feb 15, 2024, 01:28 PM
3
votes
0
answers
123
views
Why is my 32 bit programs load in 3GB address space mode?
I have noticed, that Manjaro Linux (kernel 6.6.8) loads 32 bit executable files with ADDR_LIMIT_3GB set. Or as: `setarch -B --3g`. But I have a clear memory, that earlier it was not the case and 32 bit programs started in --4G mode. Is it hardcoded in the kernel or is configurable behavior? How to c...
I have noticed, that Manjaro Linux (kernel 6.6.8) loads 32 bit executable files with ADDR_LIMIT_3GB set. Or as:
setarch -B --3g
.
But I have a clear memory, that earlier it was not the case and 32 bit programs started in --4G mode.
Is it hardcoded in the kernel or is configurable behavior? How to change it?
johnfound
(263 rep)
Jan 2, 2024, 12:28 PM
• Last activity: Jan 5, 2024, 10:37 PM
0
votes
1
answers
27
views
.NET written console app dependencies
I have written a freeware console app in VB.net, which I have fine-tuned and successfully tested in headless Raspberry Pi Bullseye. I have also written a installation script after checking its dependencies (https://bit.ly/multilarm-linux). However, on a fresh emulation (Raspberry Pi Bookworm emulati...
I have written a freeware console app in VB.net, which I have fine-tuned and successfully tested in headless Raspberry Pi Bullseye. I have also written a installation script after checking its dependencies (https://bit.ly/multilarm-linux) . However, on a fresh emulation (Raspberry Pi Bookworm emulation on VirtualBox), despite installing the dependencies (which to be fair, does not install new packages apart from Bass drivers), ldd outputs as follows:
admin@raspberry:~ $ ldd ./Multilarm
linux-vdso.so.1 (0x00007fff501f5000)
libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0 (0x00007f8fa34d1000)
libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f8fa34cb000)
libz.so.1 => not found
librt.so.1 => /lib/x86_64-linux-gnu/librt.so.1 (0x00007f8fa34c1000)
libgcc_s.so.1 => /lib/x86_64-linux-gnu/libgcc_s.so.1 (0x00007f8fa34a7000)
libstdc++.so.6 => not found
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f8fa3361000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f8fa318d000)
/lib64/ld-linux-x86-64.so.2 (0x00007f8fa3f87000)
I have tried installing lib64z1 and lib32stdc++6 with no avail. My app already contains the .net framework files as a single package. I am wondering whether this problem has to do anything with the fact that the RPi kernel is 64-bit (uname -m x86_64) running in a 32 bit namespace.
admin@raspberry:~ $ locate libz.so.1
/usr/lib/i386-linux-gnu/libz.so.1
/usr/lib/i386-linux-gnu/libz.so.1.2.11
admin@raspberry:~ $ locate libstdc++.so.6
/usr/lib/i386-linux-gnu/libstdc++.so.6
/usr/lib/i386-linux-gnu/libstdc++.so.6.0.28
/usr/lib32/libstdc++.so.6
/usr/lib32/libstdc++.so.6.0.28
/usr/share/gdb/auto-load/usr/lib/i386-linux-gnu/libstdc++.so.6.0.28-gdb.py
/usr/share/gdb/auto-load/usr/lib32/libstdc++.so.6.0.28-gdb.py
Please help.
Alex
(21 rep)
Dec 6, 2023, 06:57 AM
• Last activity: Dec 6, 2023, 08:50 PM
0
votes
1
answers
247
views
Should I remove i386 packages?
I am on Linux Mint 21.2 (Victoria) Cinnamon `amd64` on Intel 7700HQ, and since I now found out there are 293 (`dpkg -l | grep i386 | wc -l`) 32-bit (`i386`) packages left from previous years, I don't know if this question is clear, but anyway: Should I remove all `i386` packages? If so, or at least...
I am on Linux Mint 21.2 (Victoria) Cinnamon
amd64
on Intel 7700HQ, and since I now found out there are 293 (dpkg -l | grep i386 | wc -l
) 32-bit (i386
) packages left from previous years, I don't know if this question is clear, but anyway:
Should I remove all i386
packages? If so, or at least the majority of them, how should I proceed in several manageable steps?
Thank you.
Vlastimil Burián
(30505 rep)
Oct 27, 2023, 12:16 AM
• Last activity: Oct 27, 2023, 12:51 AM
0
votes
1
answers
1612
views
Where to get IPA files for 32-bit iPad Mini
I have an old iPad Mini (2013 model) that I thought to resurrect as a screen for a Raspberry Pi with VNC Viewer, but when I try to download the app (or any app) via App Store I get an error with "the app is not compatible with your iPad".  I dig a bit and I found that s...
I have an old iPad Mini (2013 model)
that I thought to resurrect as a screen for a Raspberry Pi with VNC Viewer,
but when I try to download the app (or any app) via App Store
I get an error with "the app is not compatible with your iPad".
I dig a bit and I found that such model has 32-bit architecture
and that most apps are no longer supporting those builds.
Is there any place, like an archive,
where I can get such 32-bit versions of the apps
(mainly VNC, but if I get the change of getting some others, then better)?
If so, how could I install them?
For reference,
>A **.ipa** file is an iOS and iPadOS application archive file
which stores an iOS/iPadOS app.
— Wikipedia
Xandor19
(21 rep)
Dec 27, 2022, 08:58 PM
• Last activity: Sep 25, 2023, 07:56 AM
0
votes
1
answers
117
views
installed package "is not installable" on Xenial i386
(Originally asked on [ask ubuntu](https://askubuntu.com/questions/1467968/installed-package-is-not-installable-on-xenial-i386) but it's off-topic there since Ubuntu 16.04 LTS has reached the end of it's standard support life; and is also off-topic on [SO](https://stackoverflow.com/questions/76252952...
(Originally asked on [ask ubuntu](https://askubuntu.com/questions/1467968/installed-package-is-not-installable-on-xenial-i386) but it's off-topic there since
Ubuntu 16.04 LTS has reached the end of it's standard support life; and is also off-topic on [SO](https://stackoverflow.com/questions/76252952/installed-package-is-not-installable-on-xenial-i386) . Third's the charm?)
Part of installing a package i'm maintaining is a
dist-upgrade
. I noticed that there have been recent changes in the repos, such as upgrading libmysqlclient18
to libmysqlclient20
, so i had to change my dependencies accordingly.
However, now i can't install my app because it depends on an installed package that is apparently not installable.
$ uname -a
Linux myvm 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:00 UTC 2021 i686 i686 i686 GNU/Linux
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.7 LTS
Release: 16.04
Codename: xenial
$ sudo apt install ./myapp-dep1.deb ./myapp-dep2.deb ./myapp-bin.deb
Reading package lists... Done
Building dependency tree
Reading state information... Done
Note, selecting 'myapp-dep1' instead of './myapp-dep1.deb'
Note, selecting 'myapp-dep2' instead of './myapp-dep2.deb'
Note, selecting 'myapp-bin' instead of './myapp-bin.deb'
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
myapp-bin : Depends: libhpdf (>= 2.2.1) but it is not installable
E: Unable to correct problems, you have held broken packages.
$ apt search libhpdf
Sorting... Done
Full Text Search... Done
libhpdf-2.2.1/xenial,now 2.2.1-1.1 i386 [installed]
C library for generating pdf files
libhpdf-dev/xenial,now 2.2.1-1.1 i386 [installed]
C library for generating pdf files (development files)
$ find /usr/lib/ -name "libhpdf*"
/usr/lib/libhpdf.so
/usr/lib/libhpdf-2.2.1.so
The Depends line in my DEBIAN/control
includes, among others, Depends: .., libhpdf (>=2.2.1), ..
so what am i doing wrong?
At first i assumed they dropped i386 altogether, but it's still listed, at least in [some repos](http://de.archive.ubuntu.com/ubuntu/pool/universe/libh/libharu/) . The [Xenial page](https://ubuntu.com/16-04) states that Xenial's now in ESM, and the [ESM page](https://ubuntu.com/security/esm) lists x86 as a supported architecture for Xenial. I do doubt my company has ESM support though, but can't get an official source on whether or not they dropped x86 for non-ESM.
I thought Xenial was the last version to support x86, following versions only supporting x86_64, but comments on the askubuntu thread say otherwise.
I tried to install using aptitude
as suggested on the SO thread but cannot get it to install a local .deb file. Also tried with dpkg
with similar results:
$ sudo dpkg -i ./myapp-dep1.deb ./myapp-dep2.deb ./myapp-bin.deb
Selecting previously unselected package myapp-dep1.
(Reading database ... 112300 files and directories currently installed.)
Preparing to unpack ./myapp-dep1.deb ...
Unpacking myapp-dep1 (2023.02.01.214-1) ...
Selecting previously unselected package myapp-dep2.
Preparing to unpack ./myapp-dep2.deb ...
Unpacking myapp-dep2 (1.0-1) ...
Selecting previously unselected package myapp-bin.
Preparing to unpack ./myapp-bin.deb ...
Unpacking myapp-bin (1.0-420) ...
Setting up myapp-dep2 (1.0-1) ...
dpkg: dependency problems prevent configuration of myapp-bin:
myapp-bin depends on libhpdf (>= 2.2.1); however:
Package libhpdf is not installed.
dpkg: error processing package myapp-bin (--install):
dependency problems - leaving unconfigured
Setting up myapp-dep1 (2023.02.01.214-1) ...
Processing triggers for mime-support (3.59ubuntu1) ...
Errors were encountered while processing:
myapp-bin
...only it is still installed.
vesperto
(152 rep)
May 16, 2023, 09:43 AM
• Last activity: May 16, 2023, 11:51 AM
4
votes
1
answers
2771
views
How to boot 32-bit Linux kernel on 64-bit UEFI system without CSM
I have a system on which I *have* to run a 32-bit Linux kernel, as it needs to interact with obsolete hardware which only have a 32-bit driver available. Changing the driver is not feasible. The Dell machine I am trying to accomplish this on does not have a CSM (legacy boot support) that works with...
I have a system on which I *have* to run a 32-bit Linux kernel, as it needs to interact with obsolete hardware which only have a 32-bit driver available. Changing the driver is not feasible.
The Dell machine I am trying to accomplish this on does not have a CSM (legacy boot support) that works with internal drives.
(It only has M.2 NVME internal drive slots)
I installed Grub 64-bit UEFI (from an Ubuntu live disk), and it detects my "legacy" Linux instance (on the same disk, if it's important. GPT-formatted.), however when I select that 32-bit kernel from the "legacy" Linux install, Grub gives me an error:
Kernel doesn't support 64-bit CPUs.
Can anyone shed some light on this or point me in the right direction?
I was under the impression that it was no problem for Grub to boot a different architecture kernel.
SpencerB
(41 rep)
Apr 20, 2020, 09:02 PM
• Last activity: Apr 11, 2023, 10:04 PM
0
votes
1
answers
952
views
Install Debian 32 or 64 bit, on weak hardware with a lightweight desktop environment
I'm planning to install a Debian 32-bit or 64-bit if possible. It is a Toshiba Netbook NB305-N410BL-bn The mfg specs list my Intel Atom® Processor N450 512K Cache, 1.66 GHz as a 64-bit processor https://ark.intel.com/content/www/us/en/ark/products/42503/intel-atom-processor-n450-512k-cache-1-66...
I'm planning to install a Debian 32-bit or 64-bit if possible.
It is a Toshiba Netbook NB305-N410BL-bn
The mfg specs list my Intel Atom® Processor N450
512K Cache, 1.66 GHz as a 64-bit processor
https://ark.intel.com/content/www/us/en/ark/products/42503/intel-atom-processor-n450-512k-cache-1-66-ghz.html#tab-blade-1-0
The computer specs show it as a 32-bit running windows 7 starter.
I don't know if this is the right distro, which installer, or if I should run 32 or 64-bit.
Doc
(1 rep)
Mar 15, 2023, 07:55 AM
• Last activity: Mar 23, 2023, 06:42 PM
0
votes
1
answers
628
views
When I try to install Linux on older PC 32bit I get black screen with blinking cursor. How to fix?
I have an old PC that used to run Windows XP (32bit). There are two hard drives. I tried to turn it on again, but Windows would not boot. I then decided to install Linux. I tried Ubuntu, Xubuntu, Debian, and Silaz (32-bit versions). They all do the same thing - they start booting, I get a menu, I se...
I have an old PC that used to run Windows XP (32bit). There are two hard drives. I tried to turn it on again, but Windows would not boot. I then decided to install Linux. I tried Ubuntu, Xubuntu, Debian, and Silaz (32-bit versions). They all do the same thing - they start booting, I get a menu, I select install... and then get a black screen with a blinking cursor.
I first assumed it was the somewhat rare graphic card. So I uninstalled it and put a standard PCI card in — same issue.
I then removed the slave drive and tried to install it with just the master. Same issue. I then removed the master, jumpered the slave as the new master, and tried again - the same result.
I then started the Debian CD (had the nicest boot menu), went into isolinux, and added nomodeset to the kernel prompt. No change.
What else could I do/try?
It is a Pentium 4 2.4 GHZ. The board states it is a "Medion MD5000 v1.0".
Jay Konrad
(1 rep)
Feb 24, 2023, 05:28 PM
• Last activity: Feb 27, 2023, 11:59 AM
0
votes
1
answers
503
views
How to install 32-bit version of package in PKGBUILD?
So I took over an orphaned AUR package that contains separate sources for 32-bit and 64-bit packages. I'm on a 64-bit machine, but I want to also test that the 32-bit installation works before I push the updated PKGBUILD. I've read through the [PKGBUILD](https://wiki.archlinux.org/title/PKGBUILD) se...
So I took over an orphaned AUR package that contains separate sources for 32-bit and 64-bit packages. I'm on a 64-bit machine, but I want to also test that the 32-bit installation works before I push the updated PKGBUILD. I've read through the [PKGBUILD](https://wiki.archlinux.org/title/PKGBUILD) section of the Arch Linux Wiki, but it doesn't mention anything about doing this.
Example of what PKGBUILD looks like (simplified):
pkgname=...
pkgver=...
pkgdesc=...
arch=('i686' 'x86_64')
depends_x86_64=(
'lib32-freetype2')
depends_i686=(
'freetype2')
source_x86_64=("https://site.com/download/{pkgver}_amd64.deb "
"https://archive.archlinux.org/packages/l/lib32-freetype2/lib32-freetype2-2.11.0-3-x86_64.pkg.tar.zst ")
source_i686=("https://site.com/download/{pkgver}_i386.deb "
"https://archive.archlinux.org/packages/f/freetype2/freetype2-2.11.0-4-x86_64.pkg.tar.zst ")
sha256sums_i686=('SKIP'
'SKIP')
sha256sums_x86_64=('SKIP'
'SKIP')
package() {
install -d -m0755 "${pkgdir}"/usr/{share/applications,share/pkgname}
}
How can I force makepkg to build the 32bit version?
Dr-Bracket
(437 rep)
Oct 20, 2021, 11:57 PM
• Last activity: Feb 25, 2023, 04:21 PM
Showing page 1 of 20 total questions