You are not logged in.
Pages: 1
I ve been running my Arch home server succesfully for years on a very old motherboard with a Socket A Sempron 2800+ CPU, thats like a frankenstein of computing. Due to its dead ethernet and SATA ports I plugged an ethernet card, some SATA cards etc.
It works perfectly, but its not an elegant solution.
I got an unused full ATX Intel motherboard (not a server one) with a Pentium 4 2.8 cpu for free. The motherboard was probably really expensive at the time,it was sitting as a spare for years on a company a friend of mine works. Since it has SATA and Gigabit ethernet, and can use the same DDR1 memory Im using now, I was thinking of using it for my home server. Since my fstab has all the disks configured with UUID, I suppose I just have to plug the disks to the new system, and boot?
Is there anything else I should watch for?
Offline
Is there anything else I should watch for?
The order in which drives are enumerated.
If the UUIDs get hosed, you can temporarily change to drive/partition notation.
What about the video card? You will need the correct driver for X.
Have fun
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
In addition to the video diffs, read and follow this article to setup and rebuild the kernel image: https://wiki.archlinux.org/index.php/In … ting_Linux
UUIDs should be fine, but you can change them to labels if you wish (my personal preference).
$ cat /etc/fstab
tmpfs /tmp tmpfs nodev,nosuid 0 0
tmpfs /scratch tmpfs nodev,size=14G 0 0
LABEL=boot /boot ext4 defaults,discard,noatime 0 1
LABEL=arch64 / ext4 defaults,discard,noatime 0 1
LABEL=homes /home ext4 defaults,discard,noatime 0 1
LABEL=var /var ext4 defaults,noatime 0 1
LABEL=data /mnt/data ext4 defaults,relatime 0 1
tmpfs /home/facade/.cache tmpfs noatime,nodev,nosuid,size=1G 0 0Offline
There is no need for a video card driver. Since its a server only machine, I dont have X installed. I have a super old PCI card just for displaying bootup and error messages. I will do the chroot thing and move it then, this motherboard seems like a good upgrade. Thanks!
Offline
Just boot the fallback initramfs the first time, regenerate initramfs, and you should be fine.
Offline
Just boot the fallback initramfs the first time, regenerate initramfs, and you should be fine.
This worked perfectly. Thanks!
Offline
Pages: 1