Click here to Skip to main content
15,882,113 members
Home / Discussions / Linux Programming
   

Linux Programming

 
AnswerRe: Booting Linux using UEFI - how various files interact Pin
steve525123456-Jun-21 20:43
steve525123456-Jun-21 20:43 
QuestionRecovering RAID5 md device from foreign OS Pin
Member 1497193821-Oct-20 15:56
Member 1497193821-Oct-20 15:56 
AnswerRe: Recovering RAID5 md device from foreign OS Pin
Peter_in_278021-Oct-20 16:39
professionalPeter_in_278021-Oct-20 16:39 
GeneralRe: Recovering RAID5 md device from foreign OS Pin
Member 1497193822-Oct-20 1:39
Member 1497193822-Oct-20 1:39 
QuestionMessage Closed Pin
19-Oct-20 5:44
Member 1496877119-Oct-20 5:44 
AnswerRe: Adding RAID mount info to fstab Pin
k505419-Oct-20 5:59
mvek505419-Oct-20 5:59 
GeneralMessage Closed Pin
19-Oct-20 9:33
Member 1496877119-Oct-20 9:33 
GeneralRe: Adding RAID mount info to fstab Pin
k505419-Oct-20 9:59
mvek505419-Oct-20 9:59 
You've got several options. Lets assume that you wan to mount the ext4 partition on /data

You can use the physical partition device path, the UUID, LABEL, PARTLABEL or PARTUUID in fstab
The following are all equivalent. Use only ONE.
 # by device path:
/dev/md42p1                                     /data    ext4   defaults 1 2
 # by UUID:
UUID=b4f937f3-8d8d-4d1b-a9e6-4eaffb72a077       /data    ext4   defaults 1 2
 # by LABEL
LABEL=MD42_RAID_LABEL                           /data    ext4   defaults 1 2
 # by PARTLABEL
PARTLABEL=MD42_RAID_NAME                        /data    ext4   defaults 1 2
 # by PARTUUID
PARTUUID=49fce049-084f-48e8-aa79-f6e22d809879   /data    ext4   defaults 1 2
depending on your requirements, you may want to change the defaults, to add perhaps noatime, for example.

Note that we mount the partition not the RAID drive.
Keep Calm and Carry On

PraiseHelp me! Pin
Member 1492738231-Aug-20 8:34
Member 1492738231-Aug-20 8:34 
AnswerRe: Help me! Pin
Dave Kreskowiak31-Aug-20 9:43
mveDave Kreskowiak31-Aug-20 9:43 
AnswerRe: Help me! Pin
Afzaal Ahmad Zeeshan31-Aug-20 17:52
professionalAfzaal Ahmad Zeeshan31-Aug-20 17:52 
QuestionDoes Crystal Report Asp.net work in Linux through Mono ? Pin
Chai WY26-Jul-20 23:00
Chai WY26-Jul-20 23:00 
AnswerRe: Does Crystal Report Asp.net work in Linux through Mono ? Pin
Afzaal Ahmad Zeeshan31-Aug-20 17:55
professionalAfzaal Ahmad Zeeshan31-Aug-20 17:55 
QuestionReading Files on network box Pin
#realJSOP7-Jul-20 0:58
mve#realJSOP7-Jul-20 0:58 
AnswerRe: Reading Files on network box Pin
k50547-Jul-20 4:28
mvek50547-Jul-20 4:28 
GeneralRe: Reading Files on network box Pin
#realJSOP7-Jul-20 4:47
mve#realJSOP7-Jul-20 4:47 
GeneralRe: Reading Files on network box Pin
Richard Deeming7-Jul-20 5:10
mveRichard Deeming7-Jul-20 5:10 
GeneralRe: Reading Files on network box Pin
markkuk7-Jul-20 21:47
markkuk7-Jul-20 21:47 
GeneralRe: Reading Files on network box Pin
#realJSOP8-Jul-20 8:45
mve#realJSOP8-Jul-20 8:45 
GeneralRe: Reading Files on network box Pin
pkfox31-Mar-21 23:47
professionalpkfox31-Mar-21 23:47 
AnswerRe: Reading Files on network box Pin
Gerry Schmitz7-Jul-20 21:04
mveGerry Schmitz7-Jul-20 21:04 
GeneralRe: Reading Files on network box Pin
markkuk7-Jul-20 21:32
markkuk7-Jul-20 21:32 
GeneralRe: Reading Files on network box Pin
kalberts7-Jul-20 22:02
kalberts7-Jul-20 22:02 
GeneralRe: Reading Files on network box Pin
markkuk7-Jul-20 22:23
markkuk7-Jul-20 22:23 
GeneralRe: Reading Files on network box Pin
Gerry Schmitz8-Jul-20 6:03
mveGerry Schmitz8-Jul-20 6:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.