0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PC-LL750LGにDebian 12.8をインストールしてみた

Last updated at Posted at 2024-12-21

はじめに

以下の記事

にて、Ubuntu Desktop 16.04をインストールしていた自宅のPC-LL750LGですが、筆者の不注意により、ddコマンドでOSの領域を別のデータで上書きしてしまいました…もう使っていないPCでよかった…

ということで、改めてUbuntu Desktop 16.04をインストールしようと思ったのですが、新しいOSを使いたいと思い、Debian 12.8をインストールしてみました。

root@debian12:/boot# cat /etc/debian_version 
12.8
root@debian12:/boot# cat /etc/os-release 
PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

インストール手順

インストール手順自体は割愛します。基本的には、インストールウィザードに従い、OSをインストールしました。

  • メモリを2 GiBしか搭載していないので、GUIはインストールしませんでした。
  • 液晶ディスプレイのバックライトが壊れており、外からSSHで接続して使うためにOpenSSH Serverをインストールしました。

また、インストール後の手順になりますが、以下の記事を参照し、サスペンドを無効化しました。

メモリおよびディスクの使用量

以下、メモリおよびディスクの使用量です。これだけのスペックでOSを動かせるとは、ありがとう、Debian!

root@debian12:~# free -h
               total        used        free      shared  buff/cache   available
Mem:           1.9Gi       854Mi       604Mi        44Mi       701Mi       1.1Gi
Swap:          975Mi          0B       975Mi
root@debian12:~# df -h
Filesystem      Size  Used Avail Use% Mounted on
udev            946M     0  946M   0% /dev
tmpfs           196M  1.4M  195M   1% /run
/dev/sda1       145G  5.3G  133G   4% /
tmpfs           979M     0  979M   0% /dev/shm
tmpfs           5.0M  8.0K  5.0M   1% /run/lock
tmpfs           196M   60K  196M   1% /run/user/114
tmpfs           196M   52K  196M   1% /run/user/1000

ディスク構成

149 GiBのハードディスクが1つだけです。

root@debian12:~# fdisk -l
Disk /dev/sda: 149.05 GiB, 160041885696 bytes, 312581808 sectors
Disk model: ST9160821AS
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xdc90855d

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sda1  *         2048 310579199 310577152 148.1G 83 Linux
/dev/sda2       310581246 312580095   1998850   976M  5 Extended
/dev/sda5       310581248 312580095   1998848   976M 82 Linux swap / Solaris

ディスクのS.M.A.R.T情報

root@debian12:~# smartctl -A /dev/sda 
smartctl 7.3 2022-02-28 r5338 [x86_64-linux-6.1.0-28-amd64] (local build)
Copyright (C) 2002-22, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF READ SMART DATA SECTION ===
SMART Attributes Data Structure revision number: 10
Vendor Specific SMART Attributes with Thresholds:
ID# ATTRIBUTE_NAME          FLAG     VALUE WORST THRESH TYPE      UPDATED  WHEN_FAILED RAW_VALUE
  1 Raw_Read_Error_Rate     0x000f   117   091   006    Pre-fail  Always       -       119435916
  3 Spin_Up_Time            0x0003   099   099   000    Pre-fail  Always       -       0
  4 Start_Stop_Count        0x0032   084   084   020    Old_age   Always       -       16482
  5 Reallocated_Sector_Ct   0x0033   100   100   036    Pre-fail  Always       -       1
  7 Seek_Error_Rate         0x000f   083   054   030    Pre-fail  Always       -       204296638
  9 Power_On_Hours          0x0032   070   070   000    Old_age   Always       -       27103
 10 Spin_Retry_Count        0x0013   100   100   034    Pre-fail  Always       -       0
 12 Power_Cycle_Count       0x0032   084   084   020    Old_age   Always       -       16495
187 Reported_Uncorrect      0x0032   100   100   000    Old_age   Always       -       0
189 High_Fly_Writes         0x003a   001   001   000    Old_age   Always       -       300
190 Airflow_Temperature_Cel 0x0022   068   036   045    Old_age   Always   In_the_past 32 (Min/Max 31/33)
192 Power-Off_Retract_Count 0x0032   099   099   000    Old_age   Always       -       2295
193 Load_Cycle_Count        0x0032   001   001   000    Old_age   Always       -       474253
194 Temperature_Celsius     0x0022   032   064   000    Old_age   Always       -       32 (0 13 0 0 0)
195 Hardware_ECC_Recovered  0x001a   083   055   000    Old_age   Always       -       235652618
197 Current_Pending_Sector  0x0012   001   001   000    Old_age   Always       -       4294967295
198 Offline_Uncorrectable   0x0010   001   001   000    Old_age   Offline      -       4294967295
199 UDMA_CRC_Error_Count    0x003e   200   200   000    Old_age   Always       -       0
200 Multi_Zone_Error_Rate   0x0000   100   253   000    Old_age   Offline      -       0
202 Data_Address_Mark_Errs  0x0032   100   253   000    Old_age   Always       -       0

さいごに

PCのスペックが低いため思い処理(例: 組込みLinuxのビルド)には使えそうにありませんが、プログラムなどの勉強に使おうと思います。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?