on the command line in win, linux, mac when you enter a directory or file name that has spaces like Linux files
you must surround them with quotes like this cd "Linux files"
.
with ls -al
you show all contents of a folder. If there’s no Audio
folder shown it makes no sense to try to change to a directory subfolder named “Audio” with cd Audio
.
In your case. I would do cd ..
multiple times to go to an upper level of your file hierarchy. Then I’d search for files with the name “anki”. if you google find file in linux
you should get something like find . -type f -iname '*anki*'
. The point after find
means that find should work on your current working dir and in subfolders. So if you are in a subfolder parents will not be searched. That’s why some prior cd ..
should help. Though when you are too far up, you might get error messages about missing permissions.
Also most file systems in unix land (except for MacOS) are case sensitive. So searching for anki
won’t help you if the file is named Anki
. There are workarounds like telling the find
command to do an case-insensitive search with -iname
. Having case-sensitive file systems sounds dumb for an end-user but it makes sense to not break a 40 year history etc.
Did I mention that command line basics help? It’s not black magic, it you’re a bit older it’s just like using DOS (just much easier). it often helps to type something like find --help
or for extensive docs to type man find
.
Chromebooks are fundamentally locked down and not about user freedom. That’s good in many cases because it’s much harder to install a virus by accident and just use them as a non-technical user. But it means that it’s more complicated under the hood. If you want something bore than basic stuff or something unusual there’s a steep learning curve.
As far as I understand the linux part is isolated partially. So when you open a command line input window Crosh/chrome shell this might not have direct access to your linux files and linux programs might not have full access to your chrome files …
“dpkg” won’t help you. dpkg is a program to manage programs that you have or installed from a special file type (as far as I know you only use it to manage .deb files). You want a recent anki version and that is distributed in the tar format which won’t be handled by dpkg. You have the same problems in MS Windows: Software can come as .exe, .msi, .msix, … and there are different tools to manage them …
So if dpkg shows you an anki version you know that you have the wrong one - and indeed it shows you the very, very dated version 2.1.15 from the debian repo(“app store” equivalent).
many people don’t have a very precise use of the terms “shell” or “terminal” or “command line interface” and sometimes software creator’s (like google - the creator of chromeos) use a generic terms to refer to a specific program they make. That might sound complicated but it’s common: E.g. on your iphone you have an apple program called “calendar”. But there are also other programs that are calender apps …
btw: I assume your chromebook uses intel or amd cpus otherwise the version you donwloaded shouldn’t run because each cpu architecture needs their own binaries. It’s the same on MacOS: you can’t just install an ios app onto your intel-mac.