如何将文件系统或所有目录/ etc /从RO-ReadOnly更改为RW?

时间:2019-04-30 10:12:57

标签: linux

我有一个问题,我有一个只读的RO文件系统。我需要在文件fstab中进行更改,以便能够编辑系统文件或所有/ etc /目录编辑。我只能编辑fstab。  fstab文件:

private void deleteMarkers() {
        IAnnotationModel anmod = getSourceViewer().getAnnotationModel();
        Iterator<Annotation> it = anmod.getAnnotationIterator();

        while (it.hasNext()) {
            SimpleMarkerAnnotation a = (SimpleMarkerAnnotation) it.next();
            anmod.removeAnnotation(a);

            try {
                a.getMarker().delete();
            } catch (CoreException e) {
                e.printStackTrace();
            }

        }
    }

我对Linux不太了解,因此感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

尝试以下版本,它应独立于/ etc / fstab的内容而工作:

mount -o remount,rw /dev/xxxx /

使用适用于您的驱动器的任何设备代替/ dev / xxxx。