You are Here:
Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section



SSD only recognised as an HDD on an old Toshiba laptop

Author (Read 3350 times)

0 Members and 1 Guest are viewing this topic.

Re: SSD only recognised as an HDD on an old Toshiba laptop
« Reply #5 on: October 08, 2016, 06:38:53 AM »
 

m654321

  • Gold Level Poster
  • *******
  • 893
    Posts
  • Reputation: 86
  • Linux Lite Member, 'Advocate' & Donator
    • View Profile

  • CPU: Intel Pentium [email protected] (2cores) on an Asus X71Q

  • MEMORY: 4Gb

  • VIDEO CARD: Intel GM45 Express Chipset

  • Kernel: 4.x
I doubt that.  The program probably just refers to all storage as HDD.

Now that you have an SSD in that machine, you want to make sure TRIM is set up properly.  Go to the Help Manual (Menu > Favorites > Help Manual) and click on Install in the left panel.  Then in the right panel, select Enabling TRIM on your SSD.
You're right - the default is HDD.  I ran the inxi  command in the terminal of setups (1) to (3), listed in signature, and each time inxi showed the internal drive(s) of the PCs as an HDD, not SSD.
I did finally update the BIOS yesterday on my sister's Toshiba Satellite Pro A300 (from version 1.6 to 1.8 - the latest dating back to 2009!). However, in the absence of any advice for updating BIOS in LL, I had to resort to a basic fresh install of Windows OS to do this - didn't take long.  Even when the BIOS version 1.8 was installed, it still didn't recognise the SSD in the boot device list, the drive continuing to be listed as an HDD.  I guess that's not surprising since the most recent BIOS update is already 7 years old, which is before the time when SSD-use became widespread.

I'm therefore marking this, as solved as I seem to have confirmed the statement I put in the thread header, i.e. the reason for the Satellite Pro A300's failure to recognise the drive as an SSD is probably down to its age - that said, it works much better with an SSD than an HDD...

Thanks for your interest torreydale - do let me know if you hear of an LL-way to update BIOS in the future... ;)

Cheers
Mike
« Last Edit: October 12, 2016, 04:42:10 PM by m654321 »
64bit OS (32-bit on Samsung netbook) installed in Legacy mode on MBR-formatted SSDs (except pi which uses a micro SDHC card):
2017 - Raspberry pi 3B (4cores) ~ [email protected] - LibreElec, used for upgrading our Samsung TV (excellent for the task)  
2012 - Lenovo G580 2689 (2cores; 4threads] ~ [email protected] - LL3.8/Win8.1 dual-boot (LL working smoothly)
2011 - Samsung NP-N145 Plus (1core; 2threads) ~ Intel Atom [email protected] - LL 3.8 32-bit (64-bit too 'laggy')
2008 - Asus X71Q (2cores) ~ Intel [email protected] - LL4.6/Win8.1 dual-boot, LL works fine with kernel 4.15
2007 - Dell Latitude D630 (2cores) ~ Intel [email protected] - LL4.6, works well with kernel 4.4; 4.15 doesn't work
 

Re: SSD only recognised as an HDD on an old Toshiba laptop
« Reply #4 on: October 08, 2016, 06:26:51 AM »
 

m654321

  • Gold Level Poster
  • *******
  • 893
    Posts
  • Reputation: 86
  • Linux Lite Member, 'Advocate' & Donator
    • View Profile

  • CPU: Intel Pentium [email protected] (2cores) on an Asus X71Q

  • MEMORY: 4Gb

  • VIDEO CARD: Intel GM45 Express Chipset

  • Kernel: 4.x
Lastly. Anymore. I trim my ssd manually instead of on every boot.
Code: [Select]
harry@harry-Latitude-XT2:~$ sudo fstrim -v /
[sudo] password for harry:
/: 2872553472 bytes were trimmed
harry@harry-Latitude-XT2:~$ sudo fstrim -v /home
/home: 120884785152 bytes were trimmed
harry@harry-Latitude-XT2:~$
leaving my boot and cron jobs alone.

@rokytnji & torreydale - I've always used manual trim for root, home & data partitions for all SSD setups in sig - the auto-enabled TRIM looks like a lot of work to setup ... :-\

Mike
« Last Edit: October 08, 2016, 06:48:18 AM by m654321 »
64bit OS (32-bit on Samsung netbook) installed in Legacy mode on MBR-formatted SSDs (except pi which uses a micro SDHC card):
2017 - Raspberry pi 3B (4cores) ~ [email protected] - LibreElec, used for upgrading our Samsung TV (excellent for the task)  
2012 - Lenovo G580 2689 (2cores; 4threads] ~ [email protected] - LL3.8/Win8.1 dual-boot (LL working smoothly)
2011 - Samsung NP-N145 Plus (1core; 2threads) ~ Intel Atom [email protected] - LL 3.8 32-bit (64-bit too 'laggy')
2008 - Asus X71Q (2cores) ~ Intel [email protected] - LL4.6/Win8.1 dual-boot, LL works fine with kernel 4.15
2007 - Dell Latitude D630 (2cores) ~ Intel [email protected] - LL4.6, works well with kernel 4.4; 4.15 doesn't work
 

Re: SSD only recognised as an HDD on an old Toshiba laptop
« Reply #3 on: October 07, 2016, 11:13:47 AM »
 

rokytnji

  • Friganeer
  • Platinum Level Poster
  • **********
  • 1255
    Posts
  • Reputation: 139
    • View Profile

  • CPU: Intel Core2 Duo U9600

  • MEMORY: 4Gb

  • VIDEO CARD: Intel Mobile 4
Just info.

https://bugs.launchpad.net/ubuntu/+source/fstrim/+bug/1449005

https://github.com/torvalds/linux/blob/e64f638483a21105c7ce330d543fa1f1c35b5bc7/drivers/ata/libata-core.c#L4109-L4286

it behoves one to check and make sure trim is supported or not on ones ssd drive before enabling it.

Code: [Select]
harry@harry-Latitude-XT2:~$ sudo hdparm -I /dev/sda | grep "TRIM supported"
[sudo] password for harry:
       *    Data Set Management TRIM supported (limit 1 block)
harry@harry-Latitude-XT2:~$

I only mention this because my zif ssd drive on my atom netbook cannot support enabling trim on it.
Enabling trim makes that zif ssd drive unbootable. I have fixed it using live tools. Restore backup fstab and rc.local files. Move /fstrim back into /cron/weekly. Then my atom netbook would boot ok again then.

Lastly. Anymore. I trim my ssd manually instead of on every boot.

Code: [Select]
harry@harry-Latitude-XT2:~$ sudo fstrim -v /
[sudo] password for harry:
/: 2872553472 bytes were trimmed
harry@harry-Latitude-XT2:~$ sudo fstrim -v /home
/home: 120884785152 bytes were trimmed
harry@harry-Latitude-XT2:~$

leaving my boot and cron jobs alone.
« Last Edit: October 07, 2016, 12:32:18 PM by rokytnji »
LL 3.6,2.8
Dell XT2 > Touchscreen Laptop
Dell 755 > Desktop
Acer 150 > Desktop
I am who I am. Your approval is not needed.
 

Re: SSD only recognised as an HDD on an old Toshiba laptop
« Reply #2 on: October 07, 2016, 09:03:30 AM »
 

torreydale

  • PayPal Supporter
  • Platinum Level Poster
  • *****
  • 1588
    Posts
  • Reputation: 261
  • * Forum Moderator *
    • View Profile

  • CPU: Intel i5-3230M (4) @ 3.200GHz

  • MEMORY: 16Gb

  • VIDEO CARD: Intel 3rd Gen Core processor Graphics

  • Kernel: 5.x
I doubt that.  The program probably just refers to all storage as HDD.

Now that you have an SSD in that machine, you want to make sure TRIM is set up properly.  Go to the Help Manual (Menu > Favorites > Help Manual) and click on Install in the left panel.  Then in the right panel, select Enabling TRIM on your SSD.
Want to thank me?  Click my [Thank] link.
 

SSD only recognised as an HDD on an old Toshiba laptop
« Reply #1 on: October 07, 2016, 07:02:34 AM »
 

m654321

  • Gold Level Poster
  • *******
  • 893
    Posts
  • Reputation: 86
  • Linux Lite Member, 'Advocate' & Donator
    • View Profile

  • CPU: Intel Pentium [email protected] (2cores) on an Asus X71Q

  • MEMORY: 4Gb

  • VIDEO CARD: Intel GM45 Express Chipset

  • Kernel: 4.x
I'm setting up a Windows Vista laptop (Toshiba Satellite Pro A300) with LL3.0 (single boot) for my sister.
I've replaced the original HDD with an SDD (Kingston HyperX 3K SH103S3, 240GB).

However, both in the Computer Settings, under the heading 'boot' (F2 key press), and output from the inxi command in LL's terminal show the above SSD listed as an HDD... Is the PC failing to recognise the SSD, because the BIOS may be out-of-date? The BIOS version that came preinstalled is listed in Settings as version 1.6.

Here is the output from LL's terminal:
Code: [Select]
marie@marie-Satellite-Pro-A300:~$ inxi
CPU~Dual core Intel Pentium Dual T2390 (-MCP-) speed/max~1067/1867 MHz Kernel~4.4.0-38-generic x86_64 Up~6 min Mem~530.4/1990.7MB HDD~240.1GB (2.4% used) Procs~201 Client~Shell inxi~2.2.35
Is it possible to update the BIOS in LL, or can this only be done in Windows OS?  I have downloaded a BIOS update but this is in a *.zip file suggesting that I can only do the BIOS update in Windows OS...? I only have experience of updating BIOS in Windows 7 or 8.1, but not in Linux.

Mike
« Last Edit: October 08, 2016, 06:50:16 AM by m654321 »
64bit OS (32-bit on Samsung netbook) installed in Legacy mode on MBR-formatted SSDs (except pi which uses a micro SDHC card):
2017 - Raspberry pi 3B (4cores) ~ [email protected] - LibreElec, used for upgrading our Samsung TV (excellent for the task)  
2012 - Lenovo G580 2689 (2cores; 4threads] ~ [email protected] - LL3.8/Win8.1 dual-boot (LL working smoothly)
2011 - Samsung NP-N145 Plus (1core; 2threads) ~ Intel Atom [email protected] - LL 3.8 32-bit (64-bit too 'laggy')
2008 - Asus X71Q (2cores) ~ Intel [email protected] - LL4.6/Win8.1 dual-boot, LL works fine with kernel 4.15
2007 - Dell Latitude D630 (2cores) ~ Intel [email protected] - LL4.6, works well with kernel 4.4; 4.15 doesn't work
 

 

-->
X Close Ad

Linux Lite 6.6 FINAL Released - Support for 22 Languages Added - See Release Announcement Section