Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Post History

50%
+1 −1
Q&A Is there possible way to change bit if my system is using 64 bit kernel?

Don't try to move to 64 bit if your system isn't using 64 bit kernel. The solution is pretty is for Debian-based linux. sudo dpkg --add-architecture amd64 sudo apt-get update sudo apt-get -f ins...

posted 2y ago by Anonymous‭

Answer
#1: Initial revision by user avatar Anonymous‭ · 2021-09-11T09:57:23Z (over 2 years ago)
**Don't try to move to 64 bit if your system isn't using 64 bit kernel.** The solution is pretty is for Debian-based linux.

```bash
sudo dpkg --add-architecture amd64
sudo apt-get update
sudo apt-get -f install
sudo apt-get install libexif12:amd64 libpulse0:amd64
```

[Cross-grading][1] an `i386` userspace to `amd64` is also possible, but it's far more complicated and risky.


  [1]: https://wiki.debian.org/CrossGrading

[Reference](https://unix.stackexchange.com/a/271505)