linux:gparted

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
linux:gparted [2020/08/20 09:08] – [ダウンロード] ともやんlinux:gparted [2020/09/11 16:54] (現在) ともやん
行 5: 行 5:
       object-fit: cover;       object-fit: cover;
       object-position: bottom;       object-position: bottom;
-    } 
-    #result pre, #mincode pre { 
-      overflow: hidden; 
-      font-size: 10px; 
-    } 
-    #result_long pre { 
-      height: 250px; 
-      overflow: scroll; 
-      overflow-x: hidden; 
-      font-size: 10px; 
-    } 
-    #mintbl table { 
-      font-size: 12px; 
-    } 
-    .dokuwiki .plugin_wrap table { 
-      width: auto; 
-    } 
-    #logo { 
-      background-color: white; 
-      padding: 10px; 
-      width: fit-content; 
-    } 
-    #logo p { 
-      margin: 0; 
     }     }
   </style>   </style>
行 57: 行 33:
  
 ===== GParted Live での作業 ===== ===== GParted Live での作業 =====
 +
 +==== パーティション一覧を確認 ====
 +<WRAP prewrap 100% #result>
 +<code>
 +$ sudo parted -l
 +Model: ATA Hitachi HTS54505 (scsi)
 +Disk /dev/sda: 500GB
 +Sector size (logical/physical): 512B/512B
 +Partition Table: msdos
 +Disk Flags: 
 +
 +Number  Start   End    Size   Type     File system  Flags
 +      1049kB  577MB  576MB  primary  ntfs         boot
 +      577MB   499GB  499GB  primary  ntfs
 +      499GB   500GB  834MB  primary  ntfs         msftres
 +
 +
 +Model: JMicron  (scsi)
 +Disk /dev/sdb: 240GB
 +Sector size (logical/physical): 512B/4096B
 +Partition Table: msdos
 +Disk Flags: 
 +
 +Number  Start  End  Size  Type  File system  Flags
 +
 +
 +Model: JetFlash Transcend 8GB (scsi)
 +Disk /dev/sdc: 7902MB
 +Sector size (logical/physical): 512B/512B
 +Partition Table: msdos
 +Disk Flags: 
 +
 +Number  Start   End     Size    Type     File system  Flags
 +      1049kB  5755MB  5754MB  primary  fat32        boot, lba
 +      5755MB  7902MB  2147MB  primary  ext3
 +</code>
 +</WRAP>
  
 ==== デバイス間のコピー ==== ==== デバイス間のコピー ====
行 70: 行 83:
 </WRAP> </WRAP>
  
 +==== sshd を有効化する方法 ====
 +<code>
 +$ sudo passwd root
 +New password:
 +Retype new password:
 +passwd: password updated successfully
 +
 +$ sudo vi /etc/ssh/sshd_config
 +PermitRootLogin yes
 +PasswordAuthentication yes
 +
 +$ sudo systemctl start ssh
 +
 +$ systemctl status ssh
 +● ssh.service - OpenBSD Secure Shell server
 +     Loaded: loaded (/lib/systemd/system/ssh.service; disabled; vendor preset: enabled)
 +     Active: active (running) since Thu 2020-08-20 12:06:11 UTC; 18min ago
 +       Docs: man:sshd(8)
 +             man:sshd_config(5)
 +    Process: 1897 ExecStartPre=/usr/sbin/sshd -t (code=exited, status=0/SUCCESS)
 +   Main PID: 1898 (sshd)
 +      Tasks: 1 (limit: 4606)
 +     Memory: 6.2M
 +     CGroup: /system.slice/ssh.service
 +             └─1898 sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups
 +
 +$ sudo vi /etc/hosts.allow
 +ALL: ALL
 +sshd: ALL
 +</code>
 +
 +===== OS Info =====
 +<WRAP prewrap 100% #result>
 +<code>
 +$ cat /etc/issue
 +Debian GNU/Linux bullseye/sid \n \l
 +
 +$ uname -a
 +Linux debian 5.7.0-1-amd64 #1 SMP Debian 5.7.6-1 (2020-06-24) x86_64 GNU/Linux
 +
 +</code>
 +</WRAP>
 +bullseye はテスト版ディストリビューション\\
 + 
 ===== トラブルシューティング ===== ===== トラブルシューティング =====
  
  • linux/gparted.1597882105.txt.gz
  • 最終更新: 2020/08/20 09:08
  • by ともやん