1. fix the usb with gparted
[some info
https://www.perplexity.ai/search/how-format-a-usb-using-gparted-vGpoqcGRQmOeDy7q3_64AA ]
2. make the bootable usb with impression
[under linux mint 22 "wilma"]
1. fix the usb with gparted
[some info
https://www.perplexity.ai/search/how-format-a-usb-using-gparted-vGpoqcGRQmOeDy7q3_64AA ]
2. make the bootable usb with impression
[under linux mint 22 "wilma"]
I used Xfburn, a lightweight burning software designed for Xfce
which also works well across different environments.
Voila, after about 15 minutes (on a 17-year-old laptop)
the ISO image was burned
and the live DVD was ready to use!
The funny thing is that installing antiX 23.2 64-bit full
on another antediluvian laptop with the live DVD
didn't take more time than a live usb pen.
Είπα σήμερα να γιορτάσω τα γενέθλια του ιμπρεσιονισμού
μετατρέποντας μια φωτογραφία από το κινητό μου
σε ιμπρεσιονιστικό πίνακα α λα Edgar Degas
χρησιμοποιώνας το μοντέλο Imagen 3
στην τεχνητή νοημοσύνη Google gemini.
Τροφοδότησα την τ/ν με την παραπάνω φωτό.
Τα αποτελέσματα δεν είναι εντυπωσιακά,
αλλά φαντάζομαι πως η τ/ν θα βελτιώνεται...
όσο μαθαίνει.
Υ. Σ. 1
όπως εξάλλου με προειδοποίησε, η Τ/Ν κάνει συχνά λάθη,
στην παραπάνω απάντηση έκανε λάθος ακριβώς σε ό,τι την ρώτησα:
στην ημερομηνία,
η 1η έκθεση των ιμπρεσιονιστών διήρκησε
April 15 – May 15, 1874
Υ.Σ 2
τι μου είπε η τ/ν του μεγάλου αδεφού για τον εαυτό της:
Google Gemini is not currently open-source.
Google has primarily kept its large language models,
including Gemini, proprietary. This means they are not
publicly available for researchers or developers to modify or study.
However, Google has introduced
a smaller, lightweight version of Gemini
called Gemma that is open-source.
This move aligns with a growing trend among tech giants
to make their AI models more accessible and
foster collaboration within the research community.
It's possible that Google may eventually open-source
larger portions of Gemini or future models,
but as of now, the main version remains proprietary.
Imagen 3 is not open-source.
Like many other advanced AI models,
it's a proprietary technology developed by Google.
Google has chosen to keep Imagen 3 proprietary
for several reasons, including:
κατέβασε το λειτουργικό από
Download the current Hipster snapshot of OpenIndiana
https://www.openindiana.org/downloads/
οι δύο εντολές για να το γράψεις
[συνήθως το στικάκι στη δεξιά θύρα του φορητού είναι sdb]
cd Downloads
sudo dd bs=4M if=./OI-hipster-gui-20240426.usb of=/dev/sdb && sync
η διαδικασία του γραψίματος στο στικάκι διαρκεί 2-3 λεπτά
και εμφανίζεται μήνυμα, όταν ολοκληρωθεί
Αν κάποιο εξωτερικό αποθηκευτικό μέσο
(memory stick ή SSD)
δεν εμφανίζεται καν όταν ανοίγουμε το πρόγραμμα files
στον υπολογιστή μας με λίνουξ,
ίσως μπορούμε να το γιατρέψουμε ως εξής:
Αν η εντολή στο τερματικό
sudo fdisk -l
μας εμφανίσει το αποθηκευτικό μέσο
π.χ.
Disk /dev/sdb: 1.82 TiB, 2000398934016 bytes, 3907029168 sectors
Disk model: EXTERNAL_USB
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: 0xfdb3dc67
(εδώ πρόκειται για δίσκο στερεάς κατάστασης δύο τέρα)
υπάρχει γιατρειά!
Κατ' αρχάς, εκτελούμε την εντολή
sudo dd bs=4M if=/dev/urandom of=/dev/sdb status=progress oflag=sync
η οποία
ΠΡΟΣΟΧΗ! διαγράφει τα πάντα στο δίσκο και
"
γεμιζει το εξωτερικό αποθηκευτικό μέσο με τυχαια δεδομενα
με αποτελεσμα το gparted να το δει ως unformatted"
Λεπτομέρεις στο φόρουμ linux-user.gr
χαλασμένο στικάκι
Αν πρόκειται για στικάκι, η διαδικασία ολοκληρώνεται σε λίγα λεπτά,
αν όμως είναι δίσκος μεγέθους τερα,
η διαδικασία θα πάρει κάμποσες ώρες!
Οπότε υπομονή.
Μετά,
χρησιμοποιούμε το πρόγραμμα gparted και
1.
Partition table (MS DOS)
2. Format (fat 32)
Αυτές οι δύο διαδικασίες είναι ταχύτατες.
Να βγάζουμε το αποθηκευτικό μέσο από το μηχάνημά μας,
αφού κάνουμε eject ή unmount.
Πώς με διαφώτισε η τεχνητή νοημοσύνη του μεγάλου μας αδελφού:
The Linux command sudo dd bs=4M if=/dev/urandom of=/dev/sdb status=progress oflag=sync
is used to write random data to a specific block device, in this case, /dev/sdb
. Here's a breakdown of its components:
dd
command is a utility used for copying files, converting formats, and changing device parameters.dd
will read and write data in 4MB chunks./dev/urandom
. This is a special file that provides a pseudorandom number generator./dev/sdb
. This is a block device, typically a physical hard drive or SSD.In summary, this command generates random data and writes it to the block device /dev/sdb
in 4MB chunks, displaying progress and ensuring synchronous writes. This is often used for tasks such as securely wiping a hard drive or initializing a new disk.