LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation
User Name
Password
Slackware - Installation This forum is for the discussion of installation issues with Slackware.

Notices


Reply
  Search this Thread
Old 11-15-2023, 09:46 PM   #1
oldFordguy
LQ Newbie
 
Registered: Jul 2021
Distribution: MX Linux
Posts: 28

Rep: Reputation: Disabled
View Slackware Readme and other txt files during install


Hello,

This may be a stupid question, so apologies in advance.

I am currently installing Slackware 15 from DVD, I would like to browse and read all the Readme and other txt files during the install. Where are these files located? I found 1 in the /root directory and another in /mnt, but that's about it. I was expecting to see a /extra directory that contained all of these txt files, but no such directory exists.

Thanks
 
Old 11-15-2023, 11:03 PM   #2
quickbreakfast
Member
 
Registered: Oct 2015
Location: northern territory
Distribution: slackware 15
Posts: 335

Rep: Reputation: Disabled
Quote:
Originally Posted by oldFordguy View Post
Hello,

This may be a stupid question, so apologies in advance.
I would much prefer that you asked a silly question, than made a silly mistake.

Quote:
I am currently installing Slackware 15 from DVD,
In my opinion installing Slackware is a smart move.

Welcome to Slackware. May you be a long time slacker!

Hope you have EVERYTHING you want to keep on an external drive.

Quote:
I would like to browse and read all the Readme and other txt files during the install. Where are these files located?
Once the install is finished, use the find command.

Code:
 find / -iname readme
The read me list could be quite long, even without being root.

edit to add.

When the install is finished, I suggest you work your way down this page.http://docs.slackware.com/slackware:beginners_guide

Last edited by quickbreakfast; 11-15-2023 at 11:08 PM.
 
1 members found this post helpful.
Old 11-15-2023, 11:06 PM   #3
quickbreakfast
Member
 
Registered: Oct 2015
Location: northern territory
Distribution: slackware 15
Posts: 335

Rep: Reputation: Disabled
duplicate post
 
Old 11-15-2023, 11:28 PM   #4
oldFordguy
LQ Newbie
 
Registered: Jul 2021
Distribution: MX Linux
Posts: 28

Original Poster
Rep: Reputation: Disabled
Hello Quick, thanks for the response.

I'm not entirely new to Slackware, but this is my first time with Slackware 15, and also my first time taking it serious enough to sit down and read through the documentation.

The Slackware documentation states that the Readme files are available on the DVD, so I thought they would be available during the install. But I can certainly wait until after the install, or just search for them online.

Thanks
 
Old 11-16-2023, 01:47 AM   #5
Petri Kaukasoina
Senior Member
 
Registered: Mar 2007
Posts: 1,791

Rep: Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470Reputation: 1470
ANNOUNCE.15.0, CHANGES_AND_HINTS.TXT, README.TXT, RELEASE_NOTES, Slackware-HOWTO, UPGRADE.TXT, and others are in the root of the DVD. The setup script mounts the DVD at /mnt, but I don't remember if it mounts the root of the DVD or subdirectory slackware64 (in which case you don't see them in /mnt). You can browse the same files in http://ftp.slackware.com/pub/slackwa...ckware64-15.0/
 
2 members found this post helpful.
Old 11-16-2023, 04:06 PM   #6
DryFalls
Member
 
Registered: Apr 2021
Posts: 43

Rep: Reputation: Disabled
The first read is already in your mail! Type mutt in the console/terminal after install. It should pop up.
 
2 members found this post helpful.
Old 11-16-2023, 07:26 PM   #7
colorpurple21859
LQ Veteran
 
Registered: Jan 2008
Location: florida panhandle
Distribution: Slackware Debian, Fedora, others
Posts: 7,353

Rep: Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590Reputation: 1590
The dvd will only get mounted if the dvd is selected as source during setup and will be mounted at /var/log/mount. /cdrom is a link to /var/log/mount. To view the files before running setup
Code:
mount /dev/sr0 /cdrom
or something similar will mount the dvd to /var/log/mount. Cd to /cdrom or /var/log/mount and view the README files.
 
1 members found this post helpful.
Old 11-16-2023, 07:34 PM   #8
oldFordguy
LQ Newbie
 
Registered: Jul 2021
Distribution: MX Linux
Posts: 28

Original Poster
Rep: Reputation: Disabled
@Petri They're not listed in /mnt but thanks for the ftp link

@Dryfalls That's a really interesting tidbit of information, I will try that out.

@Colorpurple That is exactly what I was looking for

Thanks all for the help, I am going to mark this thread as solved
 
Old 11-17-2023, 01:45 PM   #9
protozoaire
LQ Newbie
 
Registered: Nov 2023
Location: Quebec, Canada
Distribution: Slackware
Posts: 2

Rep: Reputation: 0
(this is my 1st post to LinuxQuestions, hope formatting (and info) is correct)

To add to colorpurple21859
Code:
mount /dev/sr0 /cdrom
in case booted by installation media on USB stick, USB written by
Code:
dd if=slackware64-current-install-dvd.iso of=/dev/(TheUSB)
Below tested for USB from
slackware.nl/slackware/slackware64-current-iso/slackware64-current-install-dvd.iso 2023-11-15T23:46UTC
which booted a Lenovo Thinkpad T520 (picky to boot), in MBR boot (legacy) or UEFI boot.

Below probably to modify if USB not in same booting scheme as by (dd the .iso),
example if using
Code:
usb-and-pxe-installers/usbimg2disk.sh
To access (top ISO) files, as README.TXT, booted by this USB,
prior to setup install slackawre
Code:
mkdir /isoUSB ; mount -o ro /dev/(BootUSB) /isoUSB # mount read-only, safer
with /dev/(BootUSB) for example /dev/sdh (NOT /dev/sdhN: NO partition number!).
This will mount the 'beginning' (not 1st partition) of the drive, as 'type iso9660'.
Then:
Code:
ls /isoUSB #> INSTALL.TXT ... README.TXT ...
A way to know the device of the booted by USB:
Code:
ls -l /dev/sd?
the USB will be the plugdev device; if more than one,
you must make sure which is the booting one!

As an aside:
'moderm' (i.e. slackware-15.0) fdisk command can list 'partitions' of an ISO image file,
example on above .iso (/sbin/fdisk -l Ok by non root)

Code:
/sbin/fdisk -l slackware64-current-install-dvd.iso # 2023-11-16 live@lv15p0a on (...).iso 2023-11-15T23:46Z
      Device                               Boot Start     End Sectors  Size Id Type
      slackware64-current-install-dvd.iso1 *        0 7772159 7772160  3.7G  0 Empty
      slackware64-current-install-dvd.iso2       3048    5927    2880  1.4M ef EFI (FAT-12/16/32)
I found it in an answer by Windu 2023-08-07 in this slackware forum
[SOLVED] Current ISO August 2nd not booting

Have fun!
--
Jean-Pierre de Protozoaire
 
Old 11-17-2023, 02:23 PM   #10
Windu
Member
 
Registered: Aug 2021
Distribution: Arch Linux, Debian, Slackware
Posts: 590

Rep: Reputation: Disabled
You could boot a liveslak ISO (burn it to DVD first) and then you have a working graphical X-Window session with Firefox and all. The ISO contains a Slackware installer, only now it is called "setup2hd" instead of just "setup". It needs to be started from a terminal (it's a ncurses script) but there's a shortcut placed directly on the desktop in the top left, to start the script if you prefer that.
You can read the New York Times for all you want, while waiting for the Slackware installation to finish.
 
Old 11-18-2023, 09:46 AM   #11
oldFordguy
LQ Newbie
 
Registered: Jul 2021
Distribution: MX Linux
Posts: 28

Original Poster
Rep: Reputation: Disabled
Thanks for the additional tips and advice, this is a great site

For future reference, here's what worked for me. I mounted the DVD as @colorpurple suggested and cd'd to that directory. I then used mkdir to create an empty directory under "/" (not sure if that was necessary) and used cp to copy the txt files that I needed from the DVD to that new directory. Then I unmounted the DVD and continued with the setup process (on hold for the moment). While working on the setup process I can use alt F2 to switch to a different virtual terminal and view any of the text files that I previously copied over without interrupting the setup process.

Thanks again

Last edited by oldFordguy; 11-18-2023 at 09:48 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[Request] README.TXT needed for the /EFI Directory (Ping Volkerdi, Ruario) ottavio Slackware - Installation 1 08-18-2013 08:01 AM
Suggested addendum for /usr/doc/systemd/README.keymap.txt hpfeil Fedora 1 03-26-2013 03:49 AM
LFTP - ls can see files but "get: Access failed: 404 filenotfound (.\ReadMe.txt)" occ MatthewSmith Linux - Laptop and Netbook 2 08-02-2012 02:32 PM
Copy the contents of a txt file to other txt files (with similar names) by cp command Aquarius_Girl Linux - Newbie 7 07-03-2010 12:54 AM
cat onelinefile.txt >> newfile.txt; cat twofile.txt >> newfile.txt keep newline? tmcguinness Programming 4 02-12-2009 06:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware > Slackware - Installation

All times are GMT -5. The time now is 08:53 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration