Linux - Laptop and NetbookHaving a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
My girlfriend has an iBook G4 which doesn't work; the problem is that when ever she tries to log in, Mac doesn't recognize her password (we've tried to solve this, but this isn't really the problem here).
What our sort of "mission objective" was, was to save all her data and install (or "upgrade") to Ubuntu. I tried inserting Knoppix and holding the 'c' button down (I'm new to Mac, but that seems to be how it's done there) but Knoppix wouldn't work. Then after a few minutes on Google I found out that Knoppix doesn't work with Mac and that I should try Yellow Dog or something (which costs money, so I don't think so). Then we tried to put the Ubuntu disk in, but it wouldn't start up.
I can't start it up from the computer because we can't login, so this has to be done by startup- but it seems that mac doesn't had a BIOS. Which is really confusing and a bother.
How should I go about doing this? I want to show my girlfriend how awesome Linux is.
Last edited by baldurpet; 12-20-2008 at 01:08 PM..
Get hold of an OS-X install disk and run it. I'm pretty sure that one of the options is to reset all passwords. You can do that without losing data etc. Warning - I'm remembering this from some time ago, and probably not the current OS-X version.
Last edited by Marcus Rowland; 12-21-2008 at 11:21 AM..
Get hold of an OS-X install disk and run it. I'm pretty sure that one of the options is to reset all passwords. You can do that without losing data etc. Warning - I'm remembering this from some time ago, and probably not the current OS-X version.
Like I said, we already tried to solve this problem, by doing exactly that actually, and it didn't work. She could get to the part where she could reset passwords for a specific user, she could enter the new password, but when she clicked the "Save" button- nothing happened. I.e. she clicked it, it went down (like buttons normally do when you click them) and then... nothing.
Distribution: Ubuntu, Slackware, Gentoo, Fedora, Red Hat, Puppy Linux
Posts: 370
Thanked: 10
What version of the Mac OS are you running? This will give some indication of what type of filesystem your PowerBook is using. Depending upon the filesystem there are several ways to recover the files.
Do you have an external USB or other hard disk? You will need some device to which to copy the files to be recovered or saved.
What version of the Mac OS are you running? This will give some indication of what type of filesystem your PowerBook is using. Depending upon the filesystem there are several ways to recover the files.
Do you have an external USB or other hard disk? You will need some device to which to copy the files to be recovered or saved.
She says she's using OS X, I don't know what file system that OS uses though.
She does have an external HDD with a lot of free space, I don't know what file system it uses but changing it shouldn't be any problem. I also have a couple of HDDs and memory sticks, so retrieving the data shouldn't be a problem either
Last edited by baldurpet; 12-23-2008 at 09:23 PM..
Distribution: Ubuntu, Slackware, Gentoo, Fedora, Red Hat, Puppy Linux
Posts: 370
Thanked: 10
If you are using OS X then the system probably is using HFS+. There is a program
You can also download Ubuntu 8.10 Desktop and write the ISO to a CD and boot the CD with your PowerBook. You can then mount the OS X HFS+ filesystem drive with the following commands:
If you want to mount a hfsplus formatted drive or partition, e.g. /dev/sda1
1. Make a mount point for it, that you can call as you like, e.g. 'hfsplus', where you like (usually on /mnt or /media).
You need to run this commands always with root privileges
Code:
sudo mkdir /mnt/hfsplus
2. Mount it, specifying file system, device and mount point
Code:
sudo mount -t hfsplus /dev/sda1 /mnt/hfsplus
An icon will appear on your desktop.
3. Create a mount point for your external drive as follows:
Code:
sudo mkdir /mnt/backup
4. Mount your external drive as follows:
Code:
sudo mount -t auto /dev/sdb1 /mnt/backup
If you know what file system is on your external drive you may replace the auto with the name of the file system (adfs, affs, autofs, cifs, coda, coherent, cramfs, debugfs, devpts, efs, ext, ext2, ext3, hfs, hpfs, iso9660, jfs, minix, msdos, ncpfs, nfs, nfs4, ntfs, proc, qnx4, ramfs, reiserfs, romfs, smbfs, sysv, tmpfs, udf, ufs, umsdos, usbfs, vfat, xenix, xfs, xiafs).
An icon will appear on your desktop.
You can now proceed to copy the drives from your internal PowerBook hard drive (/mnt/hfsplus) to your external hard drive (mnt/backup) using drag and drop on the desktop.
5. To unmount the hard drives
Code:
sudo umount /mnt/hfsplus
sudo umount /mnt/backup
Detach your external drive from the computer and you can proceed to install Ubuntu Desktop on your internal PowerBook drive.
Alternatively, you could look into using HFS+ Explorer to download the files.
Last edited by AuroraCA; 12-24-2008 at 12:52 AM..
Reason: Fix code tags
If you are using OS X then the system probably is using HFS+. There is a program
What program?
Quote:
Originally Posted by AuroraCA
You can also download Ubuntu 8.10 Desktop and write the ISO to a CD and boot the CD with your PowerBook. You can then mount the OS X HFS+ filesystem drive with the following commands:
If you want to mount a hfsplus formatted drive or partition, e.g. /dev/sda1
1. Make a mount point for it, that you can call as you like, e.g. 'hfsplus', where you like (usually on /mnt or /media).
You need to run this commands always with root privileges
Code:
sudo mkdir /mnt/hfsplus
[...]
So this is something I do on the iBook, using the Ubuntu PPC version? She comes back from the country in a couple of days, I guess I'll try it then.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.