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

Is there possible way to change bit if my system is using 64 bit kernel?

+0
−4

Is it possible to change bit of a system? My system is using 64 bit kernel. I was trying to install chrome in my system. But, I couldn't since chrome doesn't support 32 bit. Since my system is using 64 bit kernel. Is there possible way to change my bit?


The error why I couldn't install chrome in 32 bit system.

dpkg: error processing archive google-chrome-stable_current_amd64.deb (--install): package architecture (amd64) does not match system (i386) Errors were encountered while processing: google-chrome-stable_current_amd64.deb

Answer of it :

You can do nothing.

Google decided to stop supporting 32bit with Chrome. So, either you move to a 64bit system, or you stop using Google Chrome.

It is a company (Google) choice and the only thing that the community can help you with, is giving you alternatives (like the open source Chromium Browser, on which Google Chrome is based). ~ AskUbuntu

History
Why does this post require moderator attention?
You might want to add some details to your flag.
Why should this post be closed?

1 comment thread

Huh...? (1 comment)

1 answer

+1
−1

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 install
sudo apt-get install libexif12:amd64 libpulse0:amd64

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

Reference

History
Why does this post require moderator attention?
You might want to add some details to your flag.

1 comment thread

I don't think this will work. (1 comment)

Sign up to answer this question »